:root {
  --ink: #090706;
  --paper: #fffdf7;
  --warm: #f7f3ea;
  --line: #1c1714;
  --muted: #6a625b;
  --red: #f3141c;
  --yellow: #ffd800;
  --blue: #2fa8df;
  --mint: #70d6b8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(9, 7, 6, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 72px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2d2925;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

.language-picker select {
  max-width: 116px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-transform: none;
  cursor: pointer;
  outline: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  background: var(--yellow);
}

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

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

.button.ghost {
  background: transparent;
  box-shadow: none;
}

.section-more {
  flex: 0 0 auto;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(9, 7, 6, .72), rgba(9, 7, 6, .24)),
    linear-gradient(135deg, #ffefe9 0 20%, #fff7c9 20% 40%, #e4f6ff 40% 62%, #dcf7ed 62% 82%, #fffdf7 82%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 7, 6, .78) 0%, rgba(9, 7, 6, .62) 38%, rgba(9, 7, 6, .26) 68%, rgba(9, 7, 6, .08) 100%),
    linear-gradient(180deg, rgba(9, 7, 6, .18) 0%, rgba(9, 7, 6, 0) 34%, rgba(9, 7, 6, .36) 100%);
}

.hero.managed-hero {
  background:
    linear-gradient(90deg, rgba(9, 7, 6, var(--hero-overlay, .52)), rgba(9, 7, 6, .06) 72%),
    var(--hero-image),
    linear-gradient(135deg, #ffefe9 0 20%, #fff7c9 20% 40%, #e4f6ff 40% 62%, #dcf7ed 62% 82%, #fffdf7 82%);
  background-size: cover, cover, cover;
  background-position: center, var(--hero-position, center right), center;
}

.hero.managed-hero .hero-arcade {
  opacity: .18;
  mix-blend-mode: multiply;
}

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

.hero-motion-layer::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .36), transparent 68%);
  opacity: .45;
  animation: heroGridDrift 18s linear infinite;
}

.hero-light-beam {
  position: absolute;
  top: -18%;
  bottom: -24%;
  width: clamp(88px, 10vw, 156px);
  border-left: 2px solid rgba(255, 255, 255, .4);
  border-right: 2px solid rgba(255, 255, 255, .12);
  background: linear-gradient(90deg, transparent, rgba(255, 216, 0, .34), transparent);
  filter: blur(.2px);
  transform: rotate(16deg);
  opacity: .76;
  animation: heroBeamSweep 8.4s ease-in-out infinite;
}

.beam-one {
  left: 44%;
}

.beam-two {
  left: 72%;
  width: clamp(62px, 7vw, 112px);
  background: linear-gradient(90deg, transparent, rgba(47, 168, 223, .28), transparent);
  animation-delay: -4.2s;
}

.hero-prize-token {
  position: absolute;
  width: clamp(52px, 7vw, 96px);
  aspect-ratio: 1;
  border: 3px solid rgba(9, 7, 6, .86);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .32)),
    var(--mint);
  box-shadow: 8px 8px 0 rgba(9, 7, 6, .2);
  animation: heroTokenFloat 7.6s ease-in-out infinite;
}

.hero-prize-token::before,
.hero-prize-token::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 3px solid rgba(9, 7, 6, .78);
  border-radius: 999px;
}

.hero-prize-token::after {
  inset: 39% 18%;
  border-radius: 999px;
  background: rgba(9, 7, 6, .72);
}

.token-one {
  right: clamp(24px, 10vw, 160px);
  top: clamp(120px, 22vh, 240px);
}

.token-two {
  right: clamp(140px, 28vw, 410px);
  bottom: clamp(94px, 18vh, 180px);
  width: clamp(44px, 5vw, 72px);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .22)),
    var(--yellow);
  animation-delay: -2.8s;
}

.token-three {
  left: clamp(22px, 7vw, 110px);
  bottom: clamp(168px, 27vh, 320px);
  width: clamp(38px, 4.6vw, 66px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .22)),
    var(--red);
  animation-delay: -5.1s;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 46%, rgba(255, 255, 255, .18) 50%, transparent 54%);
  transform: translateY(-100%);
  opacity: .42;
  animation: heroScan 9.5s linear infinite;
}

.hero-arcade {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 22px;
  padding: 100px max(28px, 8vw) 48px;
  opacity: .92;
}

.cabinet {
  width: clamp(120px, 16vw, 220px);
  height: clamp(320px, 48vw, 560px);
  border: 14px solid var(--ink);
  border-radius: 24px 24px 8px 8px;
  background: var(--red);
  box-shadow: 18px 18px 0 rgba(9, 7, 6, .22);
  position: relative;
  animation: cabinetLift 7.2s ease-in-out infinite;
}

.cabinet:nth-child(2) {
  background: var(--yellow);
  height: clamp(360px, 54vw, 620px);
  animation-delay: -2.2s;
}

.cabinet:nth-child(3) {
  background: var(--blue);
  animation-delay: -4.1s;
}

.cabinet::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 10%;
  height: 44%;
  border: 10px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
}

.cabinet::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 12%;
  height: 12%;
  border-radius: 8px;
  background: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 84px 0 64px;
  color: var(--white);
  width: min(820px, 100%);
}

.hero-content > * {
  animation: heroCopyRise .78s ease both;
}

.hero-content h1 {
  animation-delay: .08s;
}

.hero-content p {
  animation-delay: .16s;
}

.hero-actions {
  animation-delay: .24s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1,
.page-hero h1 {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: .94;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  text-shadow: 0 5px 28px rgba(9, 7, 6, .42);
}

:lang(zh) .hero h1,
:lang(ja) .hero h1,
:lang(ko) .hero h1,
:lang(th) .hero h1 {
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1.08;
}

.hero p,
.page-hero p {
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.45;
  max-width: 720px;
  font-weight: 700;
}

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

@keyframes heroGridDrift {
  to {
    background-position: 84px 84px;
  }
}

@keyframes heroBeamSweep {
  0%, 100% {
    transform: translateX(-24px) rotate(16deg);
    opacity: .22;
  }
  42%, 58% {
    transform: translateX(32px) rotate(16deg);
    opacity: .86;
  }
}

@keyframes heroTokenFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(-14px, -18px, 0) rotate(8deg);
  }
}

@keyframes heroScan {
  0% {
    transform: translateY(-100%);
  }
  68%, 100% {
    transform: translateY(100%);
  }
}

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

@keyframes heroCopyRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metric-strip {
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-height: 124px;
  padding: 24px;
  border-left: 2px solid rgba(255, 255, 255, .25);
}

.metric:last-child {
  border-right: 2px solid rgba(255, 255, 255, .25);
}

.metric strong {
  display: block;
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--yellow);
}

.metric span {
  color: #f1ebe2;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section.alt {
  background: var(--warm);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-title {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

:lang(zh) .section-title,
:lang(ja) .section-title,
:lang(ko) .section-title,
:lang(th) .section-title {
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.08;
}

.section-copy {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.product-card,
.showcase-card,
.case-card,
.info-card,
.admin-card {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}

.product-card img,
.showcase-card img,
.case-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  background: var(--warm);
}

.card-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-body h3 {
  margin: 14px 0 10px;
  font-size: 24px;
}

.card-body p,
.case-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--red);
  border: 2px solid var(--ink);
  flex: 0 0 auto;
}

.showcase-section {
  background:
    linear-gradient(135deg, rgba(255, 207, 52, .18), transparent 42%),
    linear-gradient(315deg, rgba(69, 169, 255, .14), transparent 40%);
}

.showcase-lane {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.showcase-lane + .showcase-lane {
  margin-top: 38px;
}

.showcase-lane-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
}

.showcase-lane-head h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
}

.showcase-lane-head .section-more {
  align-self: center;
}

.showcase-card {
  min-height: 100%;
}

.showcase-card .card-body h3 {
  font-size: 22px;
}

.showcase-card .feature-list {
  margin-top: 16px;
}

.showcase-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: start;
}

.split > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--warm);
}

.trust-section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.trust-copy .section-copy {
  max-width: 560px;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 22px;
}

.trust-proof-grid div {
  min-height: 106px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.trust-proof-grid strong {
  display: block;
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: .9;
  color: var(--red);
}

.trust-proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.35;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

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

.process-row {
  counter-increment: step;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: stretch;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.process-row::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-right: 2px solid var(--ink);
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 28px;
}

.process-row div {
  padding: 18px 18px 18px 0;
}

.process-row h3 {
  margin: 0 0 6px;
}

.process-compact .process-row {
  grid-template-columns: 58px 1fr;
  min-height: 158px;
}

.process-compact .process-row::before {
  font-size: 24px;
}

.process-compact .process-row h3 {
  font-size: 20px;
  line-height: 1.18;
}

.process-compact .process-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.case-visual {
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: .96;
  text-align: center;
}

.case-card:nth-child(1) .case-visual {
  background: var(--yellow);
}

.case-card:nth-child(2) .case-visual {
  background: var(--blue);
  color: var(--white);
}

.case-card:nth-child(3) .case-visual {
  background: var(--red);
  color: var(--white);
}

.quote-band {
  background: var(--ink);
  color: var(--white);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
  padding: 64px 0;
}

.quote-inner h2 {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
  margin: 0;
}

:lang(zh) .quote-inner h2,
:lang(ja) .quote-inner h2,
:lang(ko) .quote-inner h2,
:lang(th) .quote-inner h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.08;
}

.form-panel {
  border: 2px solid var(--white);
  border-radius: 8px;
  padding: 22px;
  background: #15110f;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.page-hero {
  background: var(--warm);
  border-bottom: 2px solid var(--ink);
  padding: 68px 0 54px;
}

.product-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 74px) 0;
  background:
    linear-gradient(135deg, rgba(255, 216, 0, .34), transparent 34%),
    linear-gradient(315deg, rgba(47, 168, 223, .22), transparent 42%),
    var(--warm);
}

.product-page-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -180px;
  width: clamp(320px, 42vw, 580px);
  aspect-ratio: 1;
  border: 2px solid rgba(9, 7, 6, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .64), transparent 28%),
    rgba(112, 214, 184, .2);
}

.custom-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(9, 7, 6, .82) 0%, rgba(9, 7, 6, .54) 42%, rgba(9, 7, 6, .1) 100%),
    var(--custom-hero-image),
    linear-gradient(135deg, #fff4df, #dff6ff 52%, #fff);
  background-size: cover, cover, cover;
  background-position: center, center right, center;
}

.custom-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(9, 7, 6, .3)),
    linear-gradient(90deg, rgba(255, 207, 52, .16), transparent 48%);
}

.custom-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding-top: clamp(72px, 10vw, 130px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.custom-hero-copy {
  max-width: 760px;
  color: var(--white);
}

.custom-hero-copy .eyebrow {
  color: var(--yellow);
}

.custom-hero-copy h1 {
  margin: 14px 0 18px;
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: .92;
}

.custom-hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  font-weight: 800;
}

.custom-hero-visual {
  margin: 0;
  transform: translateY(18px) rotate(1.5deg);
}

.custom-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--warm);
  box-shadow: 12px 12px 0 var(--ink);
}

.custom-option-grid,
.custom-case-grid {
  align-items: stretch;
}

.custom-option-card,
.custom-case-card {
  height: 100%;
}

.custom-option-card .button,
.custom-case-card .button {
  margin-top: 18px;
}

.custom-process .tag {
  margin-bottom: 10px;
}

.custom-case-section {
  background:
    linear-gradient(135deg, rgba(255, 74, 94, .08), transparent 40%),
    linear-gradient(315deg, rgba(71, 222, 168, .12), transparent 44%);
}

.product-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.product-hero-copy {
  max-width: 760px;
}

.product-hero-copy h1 {
  max-width: 820px;
}

.buyer-fit-panel {
  display: grid;
  gap: 12px;
}

.buyer-fit-panel div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 6px 6px 0 var(--ink);
}

.buyer-fit-panel span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 20px;
}

.buyer-fit-panel strong {
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.buyer-fit-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
}

.catalog-section {
  padding-top: clamp(46px, 6vw, 78px);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-toolbar .section-title {
  margin-top: 14px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.catalog-toolbar .filter-bar {
  justify-content: flex-end;
  margin-bottom: 0;
}

.product-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.product-grid .product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.product-grid .product-card img {
  aspect-ratio: 16 / 11;
}

.product-grid .card-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.product-grid .card-body h3 {
  font-size: 21px;
  line-height: 1.15;
}

.product-grid .feature-list {
  margin: 18px 0 22px;
  gap: 10px;
}

.product-grid .button {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
}

.detail-page {
  background:
    linear-gradient(135deg, rgba(255, 216, 0, .18), transparent 30%),
    linear-gradient(315deg, rgba(112, 214, 184, .18), transparent 36%),
    var(--paper);
}

.detail-hero {
  padding: clamp(44px, 6vw, 82px) 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.detail-gallery {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--warm);
  box-shadow: 10px 10px 0 var(--ink);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
}

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--warm);
}

.detail-copy {
  min-width: 0;
}

.detail-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: .98;
  text-transform: uppercase;
}

:lang(zh) .detail-copy h1,
:lang(ja) .detail-copy h1,
:lang(ko) .detail-copy h1,
:lang(th) .detail-copy h1 {
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.08;
}

.detail-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  font-weight: 800;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 14px;
  margin: 0;
}

.detail-spec-grid div,
.detail-panel {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.detail-spec-grid div {
  padding: 16px;
  min-width: 0;
}

.detail-spec-grid dt {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-spec-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.detail-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-panel {
  padding: clamp(20px, 3vw, 28px);
}

.detail-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
}

.detail-list {
  margin: 0;
}

.detail-quote .quote-inner {
  align-items: center;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer a,
.footer p {
  color: #f1ebe2;
  font-weight: 700;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  background: var(--mint);
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 258px 1fr;
  background: #f5f6f8;
}

.admin-side {
  background: var(--ink);
  color: var(--white);
  padding: 22px;
}

.admin-side .brand {
  margin-bottom: 28px;
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu a {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  font-weight: 800;
}

.admin-menu a.active,
.admin-menu a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.admin-main {
  padding: 24px;
}

.admin-section {
  padding-top: 34px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 18px;
}

.admin-top-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-card {
  box-shadow: none;
  padding: 18px;
}

.admin-card strong {
  display: block;
  font-size: 34px;
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 2px solid var(--ink);
  background: var(--white);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table th,
.data-table td {
  padding: 14px;
  border-bottom: 2px solid #e4e1dc;
  text-align: left;
}

.data-table th {
  background: var(--yellow);
  border-bottom-color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.table-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.table-actions form {
  margin: 0;
}

.admin-thumb {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--warm);
}

.muted-cell {
  color: var(--muted);
  font-weight: 800;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 216, 0, .28), rgba(47, 168, 223, .2)),
    var(--paper);
}

.admin-login .form-panel {
  width: min(480px, 100%);
  color: var(--white);
}

.admin-login h1 {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(38px, 7vw, 64px);
  line-height: .9;
  margin: 14px 0;
}

.admin-error {
  padding: 10px 12px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #ffe7e8;
  color: var(--ink);
  font-weight: 900;
}

.admin-edit-form {
  max-width: 760px;
}

.admin-edit-form .button {
  justify-self: start;
}

.field small {
  color: #8a8179;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.image-size-guide {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff2a6;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.product-editor {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

.home-hero-manager {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

.home-hero-preview {
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: grid;
  align-items: end;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 7, 6, .05), rgba(9, 7, 6, .62)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero-preview span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.home-hero-preview.empty {
  place-items: center;
  background: var(--warm);
}

.product-editor-aside {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 12px;
}

.product-editor-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.product-editor-preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--warm);
}

.product-editor-preview.empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.admin-form-sections {
  display: grid;
  gap: 14px;
}

.admin-form-section {
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 16px;
  background: #fbfaf5;
}

.admin-form-section h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.admin-form-advanced summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.admin-form-advanced .admin-field-grid {
  margin-top: 14px;
}

.admin-form-sections-full {
  grid-column: 1 / -1;
}

.lead-editor {
  grid-template-columns: 1fr;
}

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

.upload-field {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 2px dashed var(--ink);
  border-radius: 8px;
  background: #fff7c7;
}

.upload-field label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.upload-field input[type="file"] {
  min-height: 44px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.upload-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.admin-error-panel {
  border-color: var(--red);
  background: #ffe7e8;
}

.admin-field-grid .field:has(textarea),
.admin-field-grid .field:has([name="short_description"]),
.admin-field-grid .field:has([name="gallery_urls"]),
.admin-field-grid .field:has([name="seo_description"]),
.admin-field-grid .field:has([name="warranty"]),
.admin-field-grid .upload-field {
  grid-column: 1 / -1;
}

.button:disabled {
  opacity: .62;
  cursor: progress;
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #e8f8f1;
  color: #0d6b50;
}

.status.hot {
  background: #ffe7e8;
  color: #a90008;
}

.admin-help-panel,
.admin-link-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fbfaf5;
}

.admin-help-panel {
  margin-bottom: 16px;
}

.admin-help-panel p,
.admin-link-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.admin-url-box,
.admin-link-panel code {
  display: block;
  max-width: 320px;
  padding: 7px 8px;
  border: 1px solid #ded8cf;
  border-radius: 6px;
  background: var(--warm);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  white-space: normal;
  word-break: break-all;
}

.landing-table {
  min-width: 1040px;
}

.landing-editor {
  grid-template-columns: 320px 1fr;
}

.landing-page {
  background: #fffdf7;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 216, 0, .32), rgba(255, 253, 247, .88) 38%, rgba(112, 214, 184, .22)),
    var(--paper);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: auto -6vw -18vw auto;
  width: min(56vw, 680px);
  aspect-ratio: 1;
  border: 2px solid rgba(9, 7, 6, .14);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0)),
    var(--landing-hero-image);
  background-size: cover;
  background-position: center;
  opacity: .24;
}

.landing-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.landing-hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 16px;
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(40px, 6vw, 82px);
  line-height: .94;
  text-transform: uppercase;
}

.landing-hero-copy p {
  max-width: 650px;
  color: #4d4540;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.55;
}

.landing-offer {
  display: inline-flex;
  max-width: 720px;
  margin: 18px 0 4px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 900;
  line-height: 1.35;
}

.landing-hero-card {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}

.landing-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  background: var(--warm);
}

.landing-hero-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.landing-hero-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #e4e1dc;
}

.landing-hero-card dl div:last-child {
  border-bottom: 0;
}

.landing-hero-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-hero-card dd {
  margin: 0;
  font-weight: 900;
}

.landing-columns,
.landing-proof-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.landing-columns article {
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

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

.landing-quote .quote-inner > div p {
  max-width: 520px;
  color: #ffeeba;
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
  }

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .button.ghost {
    display: none;
  }

  .language-picker span {
    display: none;
  }

  .metrics,
  .grid.three,
  .grid.four,
  .product-hero-layout,
  .custom-hero-layout,
  .catalog-toolbar,
  .trust-layout,
  .process-compact,
  .split,
  .quote-inner,
  .footer-grid,
  .detail-layout,
  .detail-panels,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .showcase-lane-head {
    display: grid;
    align-items: start;
  }

  .metric {
    border-right: 2px solid rgba(255, 255, 255, .25);
  }

  .product-page-hero::after {
    right: -160px;
    bottom: -220px;
  }

  .custom-hero {
    min-height: auto;
    align-items: start;
    background-position: center, center top, center;
  }

  .custom-hero-layout {
    padding-top: 58px;
  }

  .custom-hero-copy {
    max-width: 100%;
  }

  .custom-hero-visual {
    width: min(460px, 100%);
    transform: none;
  }

  .buyer-fit-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .buyer-fit-panel div {
    grid-template-columns: 1fr;
  }

  .buyer-fit-panel span {
    grid-row: auto;
    width: 54px;
  }

  .catalog-toolbar .filter-bar {
    justify-content: flex-start;
  }

  .quote-inner {
    padding: 44px 0;
  }

  .hero.managed-hero {
    background:
      linear-gradient(180deg, rgba(9, 7, 6, .18), rgba(9, 7, 6, var(--hero-overlay, .58)) 64%),
      var(--hero-image),
      linear-gradient(135deg, #ffefe9 0 20%, #fff7c9 20% 40%, #e4f6ff 40% 62%, #dcf7ed 62% 82%, #fffdf7 82%);
    background-size: cover, cover, cover;
    background-position: center, center top, center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 7, 6, .18) 0%, rgba(9, 7, 6, .44) 42%, rgba(9, 7, 6, .82) 100%),
      linear-gradient(90deg, rgba(9, 7, 6, .48), rgba(9, 7, 6, .14));
  }

  .hero-motion-layer::before {
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .22), transparent 72%);
  }

  .token-three {
    display: none;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
  }

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

  .product-editor,
  .home-hero-manager,
  .landing-editor,
  .admin-field-grid {
    grid-template-columns: 1fr;
  }

  .product-editor-aside {
    position: static;
  }

  .landing-hero-layout,
  .landing-columns,
  .landing-proof-layout {
    grid-template-columns: 1fr;
  }

  .landing-hero::before {
    width: 82vw;
    inset: auto -28vw -28vw auto;
  }

  .landing-hero-card {
    width: min(420px, 100%);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    height: auto;
    min-height: 72px;
    gap: 10px 12px;
    padding: 10px 0;
  }

  .nav-inner > * {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 38px;
  }

  .brand span {
    overflow: hidden;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .mobile-toggle {
    width: auto;
    min-width: 50px;
    height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .nav-links {
    inset: 100% 0 auto 0;
  }

  .nav-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    gap: 8px;
  }

  .nav-actions .button.primary {
    display: none;
  }

  .language-picker {
    min-width: 0;
    width: 100%;
    justify-content: space-between;
    overflow: hidden;
    min-height: 40px;
    padding: 0 8px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .language-picker select {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: 11px;
  }

  .hero {
    min-height: min(760px, calc(100svh - 70px));
    align-items: end;
  }

  .hero-arcade {
    justify-content: center;
    opacity: .48;
    padding: 110px 10px 34px;
  }

  .hero-light-beam {
    width: 72px;
    opacity: .42;
  }

  .beam-one {
    left: 54%;
  }

  .beam-two {
    left: 78%;
  }

  .hero-prize-token {
    opacity: .66;
  }

  .token-one {
    right: 18px;
    top: 156px;
  }

  .token-two {
    right: 34px;
    bottom: 82px;
  }

  .hero-content {
    padding: 60px 0 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(32px, 9.4vw, 44px);
    line-height: 1.04;
  }

  :lang(zh) .hero h1,
  :lang(ja) .hero h1,
  :lang(ko) .hero h1,
  :lang(th) .hero h1,
  :lang(zh) .page-hero h1,
  :lang(ja) .page-hero h1,
  :lang(ko) .page-hero h1,
  :lang(th) .page-hero h1 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.12;
  }

  .section-title,
  :lang(zh) .section-title,
  :lang(ja) .section-title,
  :lang(ko) .section-title,
  :lang(th) .section-title {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.05;
  }

  .quote-inner h2 {
    font-size: clamp(28px, 7.4vw, 38px);
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .product-page-hero {
    padding: 36px 0 42px;
  }

  .custom-hero {
    min-height: auto;
  }

  .custom-hero-layout {
    gap: 24px;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .custom-hero-copy h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.02;
  }

  .custom-hero-copy p {
    font-size: 16px;
  }

  .custom-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .custom-hero .hero-actions .button {
    width: calc(100% - 4px);
    white-space: normal;
  }

  .product-page-hero .container,
  .catalog-section .container,
  .showcase-section .container {
    max-width: calc(100vw - 24px);
  }

  .product-hero-layout,
  .product-hero-copy,
  .catalog-toolbar,
  .catalog-toolbar > * {
    min-width: 0;
    width: 100%;
  }

  .product-page-hero h1,
  .product-page-hero p,
  .buyer-fit-panel strong,
  .buyer-fit-panel p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .product-page-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-page-hero .hero-actions .button {
    width: calc(100% - 4px);
    white-space: normal;
  }

  .detail-hero {
    padding: 34px 0 46px;
  }

  .detail-copy h1 {
    font-size: clamp(31px, 8.6vw, 42px);
  }

  .detail-main-image {
    aspect-ratio: 4 / 3;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-actions .button,
  .detail-quote .button {
    width: calc(100% - 4px);
    justify-content: center;
    white-space: normal;
  }

  .detail-spec-grid {
    gap: 12px;
  }

  .detail-spec-grid div,
  .detail-panel {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .buyer-fit-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .buyer-fit-panel div {
    grid-template-columns: 48px 1fr;
    gap: 10px 14px;
    width: calc(100% - 4px);
    padding: 14px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .buyer-fit-panel span {
    grid-row: span 2;
    width: auto;
    min-height: 48px;
    font-size: 18px;
  }

  .catalog-toolbar {
    gap: 16px;
    margin-bottom: 22px;
  }

  .catalog-toolbar .section-title {
    margin-top: 10px;
  }

  .catalog-toolbar .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button,
  .filter-bar .button {
    min-width: 0;
    max-width: calc(100% - 4px);
    flex: 1 1 140px;
    padding-inline: 12px;
    white-space: normal;
  }

  .section-head {
    display: block;
  }

  .section {
    padding: 52px 0;
  }

  .trust-section {
    padding: 52px 0;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 18px;
  }

  .process-row,
  .process-compact .process-row {
    grid-template-columns: 56px 1fr;
    min-height: auto;
  }

  .admin-main {
    padding: 14px;
  }

  .admin-top {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-menu {
    grid-template-columns: 1fr;
  }

  .home-hero-preview {
    aspect-ratio: 4 / 3;
  }

  .image-size-guide {
    width: 100%;
    border-radius: 8px;
  }

  .floating-whatsapp {
    right: 8px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .hero-light-beam,
  .hero-prize-token,
  .hero-scanline,
  .cabinet,
  .hero-content > * {
    transform: none !important;
  }
}
