@font-face {
  font-family: "Noto Sans SC Local";
  src: url("fonts/NotoSansSC-Regular.woff2") format("woff2"),
       url("fonts/NotoSansSC-Regular.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0a2b7a;
  --blue-rgb: 10, 43, 122;
  --blue-deep: #061947;
  --blue-ink: #10224a;
  --ink: #07111f;
  --muted: #687386;
  --line: #e2e7ef;
  --gold: #d4af37;
  --gold-soft: #f3e0a3;
  --white: #ffffff;
  --wash: #f7f9fc;
  --panel: #eef3f8;
  --max: 1180px;
  --header: 68px;
  /* Spacing */
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
  --section-y: 64px;
  --radius-control: 6px;
  --radius-card: 8px;
  --shadow-card: 0 4px 20px rgba(16, 34, 74, 0.025);
  --shadow-card-hover: 0 12px 30px rgba(16, 34, 74, 0.055);
  --transition-control: background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-elevate: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.48s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  /* Typography */
  --font-base: 16px;
  --font-h1: 72px;
  --font-h2: 40px;
  --font-h3: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans SC Local", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.68;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  word-break: break-word;
}

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

picture {
  display: block;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 234, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 152px;
}

.logo img {
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #26364f;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--gold);
}

/* --- Hamburger Menu Button --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

a:focus-visible,
summary:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.72);
  outline-offset: 4px;
}

.hero,
.product-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero {
  isolation: isolate;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 80px) 24px calc(var(--section-y) + 8px);
  background: var(--blue-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 18, 50, 0.64) 0%, rgba(4, 18, 50, 0.3) 46%, rgba(4, 18, 50, 0.08) 100%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.03) 0%, transparent 34%, rgba(97, 212, 255, 0.06) 62%, transparent 100%),
    url("images/company-hero-dna-diagonal-elements.png");
  background-image:
    linear-gradient(90deg, rgba(4, 18, 50, 0.64) 0%, rgba(4, 18, 50, 0.3) 46%, rgba(4, 18, 50, 0.08) 100%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.03) 0%, transparent 34%, rgba(97, 212, 255, 0.06) 62%, transparent 100%),
    -webkit-image-set(
      url("images/company-hero-dna-diagonal-elements.webp") 1x,
      url("images/company-hero-dna-diagonal-elements.png") 1x
    );
  background-image:
    linear-gradient(90deg, rgba(4, 18, 50, 0.64) 0%, rgba(4, 18, 50, 0.3) 46%, rgba(4, 18, 50, 0.08) 100%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.03) 0%, transparent 34%, rgba(97, 212, 255, 0.06) 62%, transparent 100%),
    image-set(
      url("images/company-hero-dna-diagonal-elements.webp") type("image/webp"),
      url("images/company-hero-dna-diagonal-elements.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.025);
  transform-origin: 52% 50%;
  animation: heroBackgroundDrift 32s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -22% -18%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 15%, rgba(111, 218, 255, 0) 36%, rgba(111, 218, 255, 0.2) 47%, rgba(255, 255, 255, 0.26) 52%, rgba(111, 218, 255, 0.1) 59%, transparent 78%),
    radial-gradient(ellipse at 74% 34%, rgba(87, 219, 255, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(6, 25, 71, 0.18) 100%);
  mix-blend-mode: screen;
  opacity: 0.32;
  transform: translate3d(-24%, 7%, 0) rotate(-3deg);
  filter: blur(1px);
  animation: heroLightSweep 13s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: transform, opacity;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.motion-line {
  position: absolute;
  left: -18%;
  width: 116vw;
  height: 210px;
  background: linear-gradient(105deg, transparent 12%, rgba(107, 214, 255, 0) 34%, rgba(107, 214, 255, 0.17) 47%, rgba(255, 255, 255, 0.3) 52%, rgba(107, 214, 255, 0.08) 62%, transparent 80%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: rotate(-20deg) translate3d(-22%, 4%, 0) scaleX(0.88);
  animation: heroSignalFlow 12s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: transform, opacity;
}

.motion-line-one {
  top: 21%;
}

.motion-line-two {
  top: 52%;
  left: -10%;
  width: 104vw;
  height: 170px;
  animation-delay: 5.2s;
}

.motion-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(218, 250, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 10px rgba(97, 218, 255, 0.68), 0 0 30px rgba(97, 218, 255, 0.3);
  opacity: 0.28;
  animation: heroNodePulse 6.2s ease-in-out infinite;
  will-change: transform, opacity;
}

.motion-node-one {
  top: 34%;
  right: 33%;
}

.motion-node-two {
  top: 52%;
  right: 21%;
  animation-delay: 1.8s;
}

.motion-node-three {
  top: 69%;
  right: 43%;
  animation-delay: 3.2s;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero-copy {
  width: min(100%, 760px);
  min-width: 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.hero-product-carousel {
  justify-self: end;
  width: min(100%, 420px);
  max-width: 100%;
  color: var(--white);
  pointer-events: none;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(3, 20, 58, 0.22));
  box-shadow: 0 28px 60px rgba(0, 10, 38, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-product-stage {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 300px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-product-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroProductFade 8s ease-in-out infinite;
}

.hero-product-slide-two {
  animation-delay: 4s;
}

.hero-product-slide img {
  width: min(112%, 410px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
}

.hero-product-caption {
  display: grid;
  align-items: center;
  margin-top: 0;
  padding: 12px 0 0;
  min-height: 56px;
  border-top: 1px solid rgba(243, 224, 163, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-product-caption-item {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  opacity: 0;
  animation: heroProductFade 8s ease-in-out infinite;
}

.hero-product-caption-two {
  animation-delay: 4s;
}

.hero-product-caption strong {
  color: var(--gold-soft);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-product-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
}

h1 {
  max-width: 820px;
  margin-bottom: 32px;
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-line {
  max-width: 820px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.38;
}

.hero-support {
  max-width: 780px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.78;
}

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

.product-hero-actions {
  margin-top: 32px;
}

.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  align-items: center;
}

.product-showcase-card .product-action-row {
  justify-content: flex-start;
  margin-top: 0;
}

.product-showcase-card .button.primary {
  color: var(--blue-deep);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 10px 28px rgba(243, 224, 163, 0.16);
}

.product-showcase-card .button.primary:hover {
  color: var(--blue-deep);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.2);
}

.product-showcase-card .button.ghost.dark {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.36);
}

@media (min-width: 641px) {
  .hero .hero-actions {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max);
    padding: 0 24px;
    z-index: 3;
  }
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 860px);
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(4, 18, 50, 0.28);
  font-size: 14px;
  line-height: 1.42;
}

.hero-proof strong {
  display: block;
  margin-right: 10px;
  color: var(--gold-soft);
  font-size: 20px;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.button.primary {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.ghost.dark {
  color: var(--blue-deep);
  background: rgba(var(--blue-rgb), 0.04);
  border-color: rgba(var(--blue-rgb), 0.28);
}

section {
  padding: var(--section-y) 24px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: var(--font-h2);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-lead,
.product-intro {
  max-width: 820px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-lead.align-left {
  max-width: 720px;
}

.product-section-lead {
  max-width: 720px;
  text-wrap: pretty;
}

.card-copy,
.panel-copy,
.sku-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-character;
}

.panel-copy {
  color: rgba(255, 255, 255, 0.76);
}

.sku-note {
  margin-top: 12px;
}

.bg-wash {
  background: var(--wash);
}

.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.about-facts div {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  background: var(--wash);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-facts div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 34, 74, 0.05);
}

.about-facts strong,
.formula-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 700;
}

.about-facts strong {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
}

.about-facts span,
.formula-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: transparent;
  border: none;
}

.about-facts div {
  min-height: 96px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formula-note {
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid #dce5f2;
}


.scenario-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.scenario-showcase-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 74, 0.07);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 34, 74, 0.04);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.scenario-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 34, 74, 0.14);
  box-shadow: 0 18px 42px rgba(16, 34, 74, 0.1);
}

.scenario-showcase-card picture,
.image-card picture,
.showcase-img-wrap picture {
  display: block;
}

.scenario-showcase-card picture {
  aspect-ratio: 1000 / 660;
  overflow: hidden;
  background: var(--panel);
}

.scenario-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.scenario-showcase-card:hover img {
  transform: scale(1.035);
}

.scenario-showcase-body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.scenario-showcase-body .capability-index {
  margin-bottom: 10px;
  font-size: 22px;
}

.scenario-showcase-body h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.36;
}

.scenario-showcase-body .card-copy {
  flex: 0 0 auto;
}

.scenario-showcase-body .tag-row {
  margin-top: 8px;
}

.capability-index {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.image-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--blue-ink);
  background: var(--panel);
  border: 1px solid #dce5f2;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

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

.image-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  background: var(--white);
  border: 1px solid rgba(16, 34, 74, 0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 34, 74, 0.08);
  border-color: rgba(16, 34, 74, 0.12);
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  background: var(--panel);
}

.image-card img.focus-right {
  object-position: 78% center;
}

.image-card-body {
  flex: 1;
  min-height: 224px;
  padding: 20px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: start;
}

.product-showcase-card .tag-row span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-section {
  padding-bottom: var(--section-y);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr) 150px;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.contact-copy .section-title {
  margin-bottom: 14px;
}

.contact-copy .section-lead {
  margin-bottom: 0;
}

address,
.contact-address {
  display: grid;
  gap: 10px;
  padding: 26px;
  color: #26364f;
  font-style: normal;
  background: var(--white);
  border-left: 3px solid var(--blue);
}

.contact-address {
  padding: 0;
  background: transparent;
  border-left: 0;
}

.contact-address span,
.contact-address a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-address strong {
  color: var(--blue);
  font-weight: 700;
}

.bg-wash address {
  background: var(--white);
}

.contact-qrcode {
  display: grid;
  align-self: center;
  justify-self: center;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.qrcode {
  width: 124px;
  height: 124px;
  margin-top: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

footer {
  padding: 26px 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
}

.product-hero {
  padding: calc(var(--header) + 76px) 24px calc(var(--section-y) + 8px);
  color: var(--ink);
  background:
    linear-gradient(90deg, #f7f9fd 0%, #eef3fb 48%, #ffffff 100%);
}

.product-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.product-hero .eyebrow {
  color: var(--blue);
}

.product-hero h1 {
  color: var(--blue);
  margin-bottom: 12px;
}

.product-logo-title {
  max-width: 430px;
  margin-bottom: 18px;
  line-height: 1;
}

.product-logo-title img {
  width: min(100%, 320px);
  height: auto;
}

.product-hero h2 {
  margin: 0 0 24px;
  color: var(--blue-ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.product-hero .product-intro {
  max-width: 560px;
  margin-bottom: 26px;
}

.product-hero-card {
  padding: 36px;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.product-hero-inline-card {
  display: none;
}

.product-hero-card:hover {
  transform: translateY(-4px);
}

.product-hero-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.facts {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
}

.facts.light {
  background: transparent;
  border: none;
}

.facts div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid rgba(16, 34, 74, 0.08);
}

.facts.light div {
  background: transparent;
}

.facts dt {
  color: var(--blue);
  font-weight: 700;
}

.facts dd {
  margin: 0;
  color: var(--blue-ink);
}

.name-meaning-grid,
.cert-grid,
.ingredient-stack {
  display: grid;
  gap: 20px;
  background: transparent;
  border: none;
}

.golden-triangle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 44px;
}

.golden-triangle-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 34, 74, 0.08);
  background: var(--dark);
}

.golden-triangle-image img {
  width: 100%;
  height: auto;
  display: block;
}

.golden-triangle-content h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--blue);
}

.ingredient-stack {
  display: grid;
  gap: 16px;
}

.ingredient-stack .ingredient-card {
  min-height: 0;
  padding: 22px;
}

/* Vertical variant: image on top, 3 ingredient cards below */
.golden-triangle-vertical {
  grid-template-columns: 1fr;
  text-align: center;
}

.golden-triangle-vertical .golden-triangle-image {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(0, 60, 219, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  padding: 12px;
  box-shadow: 0 20px 52px rgba(16, 34, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.golden-triangle-vertical .golden-triangle-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--blue-rgb), 0.08);
}

.golden-triangle-vertical .golden-triangle-image img {
  border-radius: 16px;
}

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

.ingredient-grid .ingredient-card {
  min-height: 0;
  padding: 22px;
}

.name-meaning-grid {
  grid-template-columns: repeat(3, 1fr);
}

.name-meaning-grid article,
.ingredient-card,
.cert-grid article,
.formula-card {
  min-height: 200px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(16, 34, 74, 0.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* White background sections -> Wash cards */
.name-meaning-grid article,
.ingredient-card,
.cert-grid article {
  background: var(--wash);
}

.name-meaning-grid article:hover,
.ingredient-card:hover,
.cert-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 34, 74, 0.08);
  border-color: rgba(16, 34, 74, 0.12);
}

.name-meaning-grid article {
  min-height: 216px;
}

.name-meaning-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.name-meaning-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.name-meaning-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.name-note {
  margin-top: 24px;
}

.faq-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
}

.faq-wrap details {
  min-height: 0;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(16, 34, 74, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-wrap details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 34, 74, 0.04);
}

.faq-wrap summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-icon {
  flex: 0 0 auto;
  min-width: 1em;
  color: var(--gold);
  text-align: center;
}

.faq-icon::before {
  content: "+";
}

.faq-wrap details[open] .faq-icon::before {
  content: "-";
}

.faq-wrap details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.clean-panel h3,
.nutrition-notes strong,
.cert-grid strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.formula-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.formula-note.note-plain {
  display: block;
  max-width: 960px;
  margin: 18px auto 0;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.formula-note.note-plain span {
  display: block;
  width: 100%;
}

.scenario-note {
  max-width: 100%;
}

.formula-note strong {
  margin-bottom: 0;
}

.clean-formula-layout {
  align-items: stretch;
}

.clean-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.clean-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
}

.clean-list strong {
  color: var(--blue);
}

.clean-list span {
  color: var(--muted);
}

.clean-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 28px 24px;
  color: var(--white);
  background: var(--blue-deep);
}

.clean-panel h3 {
  color: var(--white);
  font-size: 28px;
}

.ingredient-card h3,
.formula-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.ingredient-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.sku-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.sku {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(16, 34, 74, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sku-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: #F3E0A3; /* Biotech Gold */
  color: #003399; /* Kefresh Blue */
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(243, 224, 163, 0.4);
  z-index: 2;
}

.sku:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 34, 74, 0.06);
}

.sku picture {
  width: 220px;
}

.sku img {
  width: 220px;
  height: 170px;
  object-fit: contain;
  background: transparent;
  transition: transform 0.3s ease;
}

.sku:hover img {
  transform: scale(1.04);
}

.sku strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 20px;
}

.sku-channel {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: rgba(16, 34, 74, 0.05);
  border: 1px solid rgba(16, 34, 74, 0.08);
  border-radius: 999px;
}

.sku span {
  color: var(--muted);
}

.sku .sku-price {
  display: block;
  margin-top: 10px;
  color: var(--blue-ink);
  font-size: clamp(16px, 4.2vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.nutrition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.product-nutrition-layout {
  margin-top: 28px;
}

.nutrition-notes span,
.cert-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.nutrition-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: none;
}

.nutrition-notes article {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  padding: 24px;
  background: var(--wash);
  border-radius: 20px;
  border: 1px solid rgba(16, 34, 74, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nutrition-notes article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 34, 74, 0.05);
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
}

.nutrition-notes strong,
.cert-grid strong {
  display: block;
  color: var(--blue-ink);
  font-size: 16px;
  margin-bottom: 6px;
}

.report-preview-section {
  margin-top: 36px;
}

.report-preview-head {
  max-width: 860px;
  margin-bottom: 18px;
}

.report-preview-head h3 {
  margin-top: 10px;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
}

.report-preview-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.report-disclaimer {
  display: block;
  max-width: 960px;
  margin: 18px auto 0;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

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

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.8fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.report-card-copy span {
  display: block;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.report-card-copy strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.25;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
}

.report-card-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.report-card a {
  display: block;
}

.report-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(16, 34, 74, 0.08);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: transparent;
  border: none;
}

.cert-grid article {
  min-height: 160px;
  padding: 24px;
  background: var(--wash);
  border-radius: 20px;
  border: 1px solid rgba(16, 34, 74, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 34, 74, 0.06);
}

@keyframes heroBackgroundDrift {
  0% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  48% {
    transform: scale(1.038) translate3d(-0.45%, -0.35%, 0);
  }

  100% {
    transform: scale(1.03) translate3d(0.28%, -0.72%, 0);
  }
}

@keyframes heroLightSweep {
  0% {
    transform: translate3d(-28%, 8%, 0) rotate(-3deg);
    opacity: 0.12;
  }

  34% {
    opacity: 0.52;
  }

  58% {
    opacity: 0.32;
  }

  100% {
    transform: translate3d(18%, -8%, 0) rotate(-3deg);
    opacity: 0.12;
  }
}

@keyframes heroSignalFlow {
  0% {
    opacity: 0;
    transform: rotate(-20deg) translate3d(-26%, 4%, 0) scaleX(0.84);
  }

  22% {
    opacity: 0.24;
  }

  48% {
    opacity: 0.48;
  }

  72% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: rotate(-20deg) translate3d(28%, -4%, 0) scaleX(1.04);
  }
}

@keyframes heroNodePulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.9);
  }

  45% {
    opacity: 0.62;
    transform: scale(1.16);
  }

  62% {
    opacity: 0.34;
    transform: scale(0.98);
  }
}

@keyframes heroProductFade {
  0%,
  44% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50%,
  94% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.965);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

/* --- Certifications Grid & Icons --- */
.cert-grid {
  position: relative;
  overflow: hidden;
}

.cert-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 220px;
  padding: 32px 20px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-icon {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(var(--blue-rgb), 0.05));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-item:hover {
  background: #fcfdfe;
  box-shadow: inset 0 0 0 1px var(--blue), 0 12px 28px rgba(var(--blue-rgb), 0.05);
  z-index: 2;
}

.cert-item:hover .cert-icon {
  transform: translateY(-4px) scale(1.05);
}

/* --- Liver Dot-Matrix Watermark --- */
.hero-company,
.product-hero {
  position: relative;
  isolation: isolate;
}

.hero-watermark,
.product-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-image: url("images/KYG_图形_肝脏点阵水印.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.055;
}

.hero-watermark {
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  right: 7%;
  top: 12%;
}

.product-hero::before {
  width: min(42vw, 500px);
  height: min(42vw, 500px);
  left: 5%;
  bottom: 8%;
}

/* --- Product Highlight Box (Bento Style) --- */
.product-highlight-box {
  margin: 12px 0 18px;
  padding: 18px 20px;
  background: rgba(var(--blue-rgb), 0.03);
  border-radius: 16px;
  border: 1px dashed rgba(var(--blue-rgb), 0.15);
}

.product-showcase-card .product-highlight-box {
  margin-bottom: 18px;
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(243, 224, 163, 0.34);
  border-left: 4px solid var(--gold-soft);
  border-radius: 18px;
}

.product-slogan-title {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.12;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.product-slogan-title span {
  display: inline;
  white-space: nowrap;
}

.product-showcase-card .product-slogan-title {
  color: var(--white);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1;
  margin: 0;
}

.product-ingredients-formula {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-showcase-card .product-ingredients-formula {
  color: #F3E0A3; /* Biotech Gold */
  margin: 0;
  line-height: 1.3;
}

.product-target-desc {
  font-size: 13px;
  color: var(--muted);
}

.product-showcase-card .product-target-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.35;
}

/* --- Showcase Section (Apple-style Double Poster) --- */
.showcase-section {
  padding: var(--section-y) 24px;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-card-right {
  margin-top: 80px;
}

.showcase-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  background: var(--wash);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
  width: 90%;
  margin: 0 auto;
}

.showcase-card:hover .showcase-img-wrap {
  transform: scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.showcase-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.showcase-caption {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  width: 90%;
  margin: 0 auto;
}

.showcase-caption strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 700;
}

/* --- Formula Section (3D Golden Triangle) --- */
.formula-section {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 60, 219, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 48%, #ffffff 100%);
}

.formula-triangle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.formula-triangle-image {
  position: relative;
  max-width: 940px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(16, 34, 74, 0.08);
  border: 1px solid rgba(0, 60, 219, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  padding: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formula-triangle-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--blue-rgb), 0.08);
}

.formula-triangle-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 32px;
}

.formula-card {
  min-height: 200px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(16, 34, 74, 0.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.formula-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 34, 74, 0.08);
  border-color: rgba(16, 34, 74, 0.12);
}

.formula-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.formula-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.formula-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* --- Visual Refinement Layer --- */
.card-copy,
.panel-copy,
.sku-note,
.section-lead,
.product-intro,
.about-copy p,
.formula-card p,
.faq-wrap details p,
.report-card-copy p {
  line-height: 1.78;
}

.section-lead,
.product-intro {
  margin-bottom: 32px;
}

.bg-wash {
  background: var(--wash);
}

.button {
  border-radius: var(--radius-control);
  transition: var(--transition-control);
}

.button.primary:hover {
  background: var(--blue-ink);
  border-color: var(--blue-ink);
  box-shadow: 0 8px 22px rgba(6, 25, 71, 0.12);
}

.button.ghost.dark {
  color: var(--blue-deep);
  background: rgba(6, 25, 71, 0.03);
  border-color: rgba(6, 25, 71, 0.18);
}

.about-facts div,
.scenario-showcase-card,
.image-card,
.product-hero-card,
.name-meaning-grid article,
.ingredient-card,
.formula-card,
.cert-grid article,
.nutrition-notes article,
.report-card,
.sku,
.faq-wrap details,
.showcase-card,
.formula-triangle-image,
.golden-triangle-image,
.clean-panel {
  border-radius: var(--radius-card);
  border-color: rgba(16, 34, 74, 0.06);
  box-shadow: var(--shadow-card);
  transition: var(--transition-elevate);
}

.contact-card,
.qrcode,
.formula-note,
.report-disclaimer {
  border-radius: var(--radius-card);
}

.about-facts div:hover,
.scenario-showcase-card:hover,
.image-card:hover,
.product-hero-card:hover,
.name-meaning-grid article:hover,
.ingredient-card:hover,
.formula-card:hover,
.cert-grid article:hover,
.faq-wrap details:hover,
.sku:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 34, 74, 0.1);
  box-shadow: var(--shadow-card-hover);
}

.scenario-showcase-card:hover img,
.image-card:hover img,
.sku:hover img {
  transform: scale(1.02);
}

.ingredient-stack {
  gap: 20px;
}

.ingredient-stack .ingredient-card {
  padding: 26px;
}

.stat-number,
.report-card-copy strong,
.section-kicker,
.product-hero h1 {
  color: var(--blue-deep);
}

.ingredient-kicker,
.report-card-copy span,
.formula-index,
.capability-index {
  color: var(--gold);
}

/* --- Product Page Rhythm --- */
#specs,
#formula,
#clean-formula,
#development,
#support-path,
#versions,
#faq {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

#formula .section-lead {
  max-width: 980px;
}

.product-nutrition-layout {
  margin-top: 32px;
  gap: 36px;
}

.facts div {
  padding: 26px 0;
}

.nutrition-notes {
  gap: 20px;
}

.nutrition-notes article {
  padding: 28px;
}

.golden-triangle-layout {
  gap: 40px;
  margin-bottom: 40px;
}

.report-preview-section {
  margin-top: 44px;
}

.report-card-grid,
.scenario-showcase-grid,
.sku-grid,
.faq-wrap {
  gap: 24px;
}

.report-card {
  gap: 24px;
  padding: 28px;
}

.scenario-showcase-body {
  padding: 24px;
}

.sku {
  gap: 24px;
  padding: 30px;
}

/* --- Footer Disclaimer --- */
.footer-inner.flex-column {
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer-inner .disclaimer {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.62;
}

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

  .hero::before,
  .hero::after,
  .motion-line,
  .motion-node,
  .hero-product-slide,
  .hero-product-caption-item {
    animation: none;
  }

  .hero-product-slide-one,
  .hero-product-caption-one {
    opacity: 1;
  }

  .hero-product-slide-two,
  .hero-product-caption-two {
    opacity: 0;
  }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
  }

  .hero-product-carousel {
    width: min(32vw, 360px);
  }

  .hero-product-stage {
    min-height: 250px;
  }

  .hero-product-slide img {
    width: min(108%, 340px);
    max-height: 330px;
  }

  h1 {
    font-size: clamp(56px, 6vw, 68px);
  }

  .hero-line {
    max-width: 620px;
    font-size: clamp(24px, 2.4vw, 27px);
  }
}

@media (max-width: 980px) {
  :root {
    --section-y: 56px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: var(--header);
    padding: 12px 20px;
  }

  .site-header {
    height: auto;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  dd {
    word-break: break-all;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero-product-carousel {
    justify-self: start;
    width: min(100%, 360px);
    padding: 12px;
    border-radius: 24px;
  }

  .hero-product-stage {
    min-height: 210px;
    padding: 0;
    border-radius: 0;
  }

  .hero-product-slide img {
    width: min(116%, 300px);
    max-height: 290px;
  }

  .hero-product-caption {
    min-height: 60px;
    padding-top: 10px;
    border-radius: 0;
  }

  .hero-product-caption-item {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .hero-product-caption span {
    text-align: left;
  }

  .hero,
  .product-hero {
    padding-top: 138px;
  }

  #specs,
  #formula,
  #clean-formula,
  #development,
  #support-path,
  #versions,
  #faq {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .hero .hero-actions {
    position: static;
    transform: none;
    max-width: var(--max);
    margin: 24px auto 0;
    padding: 0 24px;
  }

  h1 {
    font-size: clamp(42px, 10vw, 58px);
  }

  .hero-line {
    font-size: 22px;
  }

  .hero-support {
    font-size: 17px;
  }

  .section-title {
    font-size: 36px;
  }

  .image-grid,
  .about-layout,
  .split-layout,
  .contact-card,
  .product-hero-layout,
  .golden-triangle-layout,
  .name-meaning-grid,
  .ingredient-grid,
  .formula-note,
  .nutrition-layout,
  .report-card-grid,
  .report-card,
  .faq-wrap,
  .sku-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-grid {
    gap: 32px;
  }

  .showcase-card-right {
    margin-top: 0;
  }

  .golden-triangle-layout {
    gap: 32px;
    margin-bottom: 48px;
  }

  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-facts div {
    min-height: 104px;
    padding: 16px;
  }

  .about-facts strong {
    font-size: 36px;
  }

  .image-card {
    min-height: 0;
  }

  .image-card img {
    height: 300px;
  }

  .contact-card {
    gap: 24px;
  }

  .formula-grid {
    grid-template-columns: 1fr;
  }

  .hero-watermark {
    right: -96px;
    top: 96px;
  }

  .product-hero::before {
    left: -112px;
    bottom: 180px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 44px;
    --header: 60px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: var(--header);
    min-height: var(--header);
    padding: 0 64px 0 16px;
  }

  .site-header {
    height: var(--header);
  }

  .logo img {
    width: 120px;
  }

  .logo {
    min-width: 0;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    width: 100%;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    z-index: 55;
    overflow: visible;
    font-size: 14px;
  }

  .formula-triangle-image {
    padding: 10px;
  }

  .formula-triangle-image img {
    aspect-ratio: 1024 / 683;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links a[aria-current="page"] {
    color: var(--blue);
    border-color: rgba(212, 175, 55, 0.72);
    background: var(--gold-soft);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 10px;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-right: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav-links a:nth-child(3n) {
    border-right: none;
  }

  .nav-links a:nth-child(n+4) {
    border-bottom: none;
  }

  .showcase-sku-grid {
    grid-template-columns: 1fr;
  }

  .showcase-sku-card {
    grid-template-columns: minmax(96px, 38%) 1fr;
    text-align: left;
  }

  .scenario-showcase-grid {
    grid-template-columns: 1fr;
  }

  .scenario-showcase-body {
    padding: 22px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 118px 20px calc(var(--section-y) + 8px);
  }

  .hero-inner {
    display: contents;
  }

  .hero-copy,
  .hero-product-carousel,
  .hero .hero-actions {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-product-carousel {
    order: 2;
    margin-top: 24px;
  }

  .hero .hero-actions {
    order: 3;
    margin-top: 22px;
    padding: 0;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-product-carousel {
    justify-self: stretch;
    width: min(100%, 330px);
    padding: 12px;
    border-radius: 24px;
  }

  .hero-product-stage {
    min-height: 210px;
    padding: 0;
    border-radius: 0;
  }

  .hero-product-slide img {
    width: min(116%, 280px);
    max-height: 270px;
  }

  .hero-product-caption {
    align-items: center;
    min-height: 56px;
    padding-top: 10px;
    border-radius: 0;
  }

  .hero-product-caption-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-product-caption span {
    text-align: right;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(4, 18, 50, 0.52) 0%, rgba(4, 18, 50, 0.48) 58%, rgba(4, 18, 50, 0.56) 100%),
      url("images/company-hero-dna-diagonal-elements.png");
    background-image:
      linear-gradient(180deg, rgba(4, 18, 50, 0.52) 0%, rgba(4, 18, 50, 0.48) 58%, rgba(4, 18, 50, 0.56) 100%),
      -webkit-image-set(
        url("images/company-hero-dna-diagonal-elements.webp") 1x,
        url("images/company-hero-dna-diagonal-elements.png") 1x
      );
    background-image:
      linear-gradient(180deg, rgba(4, 18, 50, 0.52) 0%, rgba(4, 18, 50, 0.48) 58%, rgba(4, 18, 50, 0.56) 100%),
      image-set(
        url("images/company-hero-dna-diagonal-elements.webp") type("image/webp"),
        url("images/company-hero-dna-diagonal-elements.png") type("image/png")
      );
    background-position: 52% center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-motion {
    opacity: 0.55;
  }

  h1 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-line {
    font-size: 19px;
  }

  .hero-support {
    font-size: 16px;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-proof span {
    min-height: 42px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
  }

  section {
    padding: var(--section-y) 20px;
  }

  #specs,
  #formula,
  #clean-formula,
  #development,
  #support-path,
  #versions,
  #faq {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .section-title {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.24;
  }

  .section-lead,
  .product-intro {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .contact-card,
  .about-facts div,
  .name-meaning-grid article,
  .ingredient-card,
  .nutrition-notes article,
  .report-card,
  .cert-grid article,
  .faq-wrap summary {
    min-height: 0;
    padding: 20px;
  }

  .about-facts {
    gap: 10px;
  }

  .about-facts div {
    min-height: 96px;
    padding: 14px;
  }

  .about-facts strong {
    margin-bottom: 6px;
    font-size: 32px;
  }

  .about-facts span {
    font-size: 12px;
    line-height: 1.45;
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cert-grid article {
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
  }

  .cert-icon {
    width: 44px;
    height: 44px;
  }

  .cert-grid strong {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.25;
  }

  .cert-grid span {
    font-size: 12px;
    line-height: 1.45;
  }

  .contact-address span,
  .contact-address a {
    grid-template-columns: 44px 1fr;
  }


  .capability-index {
    margin-bottom: 28px;
  }

  .clean-list div,
  .report-card,
  .facts div,
  .sku {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sku img {
    width: 100%;
  }

  .sku picture {
    width: 100%;
  }

  .product-hero {
    padding: 148px 20px calc(var(--section-y) + 8px);
  }

  .product-hero-layout {
    gap: 28px;
  }

  .product-hero-layout > .product-hero-card {
    display: none;
  }

  .product-hero-inline-card {
    display: block;
    width: min(100%, 360px);
    margin: 18px auto 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  }

  .product-hero-inline-card img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
  }

  .product-hero h2 {
    font-size: 22px;
  }

  .product-logo-title img {
    width: min(100%, 240px);
  }

  .image-card img {
    height: 220px;
  }

  .image-card-body {
    min-height: 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .cert-item {
    min-height: 185px;
    padding: 24px 16px;
  }
}

/* --- Horizontal Product Metrics & Steps Grid --- */
.development-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(16, 34, 74, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(16, 34, 74, 0.04);
}

.step-card .step-num {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  padding: 5px 13px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.product-horizontal-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(var(--blue-rgb), 0.08);
  box-shadow: 0 10px 30px rgba(16, 34, 74, 0.04);
  padding: 42px 24px;
  margin: 24px 0 0 0;
  width: 100%;
}

.product-horizontal-metrics .metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.product-horizontal-metrics .metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(16, 34, 74, 0.1);
}

.product-horizontal-metrics .metric-value {
  font-size: 44px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 12px;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
  letter-spacing: -0.5px;
}

.product-horizontal-metrics .metric-label {
  font-size: 15px;
  color: #4a5568;
  font-weight: 400;
  line-height: 1.4;
}

/* --- Responsive Adaptations --- */
@media (max-width: 980px) {
  .development-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .product-horizontal-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
    padding: 32px 16px;
  }
  
  .product-horizontal-metrics .metric-item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .development-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .product-horizontal-metrics {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px;
  }
  
  .product-horizontal-metrics .metric-item::after {
    display: none;
  }
  
  .product-horizontal-metrics .metric-item:not(:last-child) {
    border-bottom: 1px solid rgba(16, 34, 74, 0.06);
    padding-bottom: 20px;
  }
  
  .product-horizontal-metrics .metric-value {
    font-size: 36px;
    margin-bottom: 8px;
  }
}

/* --- Bento-style Product Showcase Card --- */
.product-showcase-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-areas:
    "copy visual"
    "actions visual";
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 34, 74, 0.15);
  margin-bottom: 40px;
  align-items: stretch;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(16, 34, 74, 0.22);
}

.product-showcase-card .showcase-content {
  grid-area: copy;
  padding: 50px 44px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-showcase-card .showcase-kicker {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.product-showcase-card h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}

.product-showcase-card .showcase-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-showcase-card .showcase-visual {
  grid-area: visual;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
}

.product-showcase-actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: start;
  gap: 14px;
  width: 100%;
  padding: 22px 44px 50px;
  margin-top: 0;
  box-sizing: border-box;
}

.product-showcase-actions .button {
  width: 100%;
}

.product-showcase-card .showcase-visual img {
  width: 100%;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.18));
}

.product-showcase-card:hover .showcase-sku-card img {
  transform: scale(1.04);
}

.showcase-sku-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}

.showcase-sku-card {
  display: grid;
  grid-template-columns: minmax(118px, 42%) 1fr;
  align-items: center;
  gap: 14px;
  min-height: 166px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.showcase-sku-card > div {
  min-width: 0;
}

.showcase-sku-card picture {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 146px;
}

.showcase-sku-card img {
  max-height: 170px;
  object-fit: contain;
}

.showcase-sku-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.3;
}

.showcase-sku-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(243, 224, 163, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.2;
  font-family: "Noto Sans SC Local", system-ui, -apple-system, sans-serif;
  white-space: nowrap;
}

.showcase-sku-feature {
  max-width: 12em;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .product-showcase-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "actions";
  }
  
  .product-showcase-card .showcase-content {
    padding: 36px 28px 26px;
  }
  
  .product-showcase-card .showcase-visual {
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.02);
  }

  .product-showcase-card .product-highlight-box {
    gap: 4px;
    padding: 10px 18px;
  }

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

  .showcase-sku-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-sku-size {
    margin: 0 auto;
  }

  .showcase-sku-feature {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }

  .product-showcase-actions {
    justify-content: center;
    padding: 0 28px 36px;
  }
}

@media (max-width: 640px) {
  .product-showcase-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-showcase-actions .button {
    width: 100%;
  }
}
