/* 10,000 Skin Stories - landing page styles
   Tokens come from ../../colors_and_type.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #fff; color: var(--color-fg); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--color-fg);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 16px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.announce .marquee {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
}
.announce .marquee span { display: inline-flex; align-items: center; gap: 16px; }
.announce .sparkle { color: var(--ggg-lemon-spark); font-size: 14px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.announce-outer { overflow: hidden; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.93);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header .bar { display: flex; align-items: center; gap: 36px; height: 72px; }
.header img.logo { height: 24px; }
.header nav { display: flex; gap: 28px; flex: 1; }
.header nav a {
  font: 800 12px/1 var(--font-display);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-fg); text-decoration: none; padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.header nav a:hover { border-bottom-color: var(--ggg-active-orange); }
.header .right { display: flex; align-items: center; gap: 12px; }

/* ============ BUTTONS ============ */
.btn {
  font: 800 13px/1 var(--font-display);
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 120ms, transform 120ms;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ggg-active-orange); color: #fff; }
.btn-primary:hover { background: var(--ggg-solar-orange); }
.btn-dark { background: var(--color-fg); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: var(--color-fg); }
.btn-light:hover { background: var(--ggg-lemon-spark); }
.btn-outline { background: transparent; color: var(--color-fg); box-shadow: inset 0 0 0 2px var(--color-fg); }
.btn-outline:hover { background: var(--color-fg); color: #fff; }
.btn-sm { padding: 11px 18px; font-size: 11px; }
.btn-lg { padding: 20px 30px; font-size: 14px; }

/* ============ HERO ============ */
.hero {
  background: var(--hero-bg, var(--ggg-energetic-blue));
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
  transition: background 260ms ease;
}
.hero .cloud {
  position: absolute; pointer-events: none;
  opacity: var(--cloud-opacity, 0.3);
  z-index: 0;
  animation: cloud-drift var(--cloud-dur, 9s) ease-in-out infinite alternate;
  animation-delay: var(--cloud-delay, 0s);
  will-change: transform;
}
/* gentle back-and-forth drift, merged with the cloud-shift tweak so both apply */
@keyframes cloud-drift {
  from { transform: translate(calc(var(--cloud-shift-x, 0px) - 11px), calc(var(--cloud-shift-y, 0px) - 5px)); }
  to   { transform: translate(calc(var(--cloud-shift-x, 0px) + 11px), calc(var(--cloud-shift-y, 0px) + 5px)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .cloud { animation: none; transform: translate(var(--cloud-shift-x, 0px), var(--cloud-shift-y, 0px)); }
}
.hero .cloud-1 { width: 340px; left: -60px; bottom: 14%; --cloud-dur: 11s; --cloud-delay: -2s; }
.hero .cloud-2 { width: 240px; right: 8%; top: 24%; --cloud-dur: 9s; --cloud-delay: -5s; }
.hero .cloud-3 { width: 180px; left: 32%; bottom: 6%; --cloud-dur: 8s; --cloud-delay: -1s; }
.hero .cloud-4 { width: 210px; left: 1%; top: 7%; --cloud-dur: 12s; --cloud-delay: -3.5s; }
.hero .cloud-5 { width: 230px; left: 50%; top: 52%; --cloud-dur: 10s; --cloud-delay: -6.5s; }
/* cloud sitting directly behind the product box - revealed (blurred) through
   the frosted-glass counter, and through the plinth when glass mode is on */
.hero .hero-visual .cloud-box {
  width: 330px;
  left: calc(50% - 165px);
  right: auto;
  bottom: 18px;
  top: auto;
  z-index: 1;
  opacity: 0.6;
  --cloud-dur: 13s;
  --cloud-delay: -4s;
}
.hero .sparkle {
  position: absolute; color: var(--ggg-lemon-spark);
  pointer-events: none;
}
.hero .inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 64px 0 88px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(255,255,255,0.16);
  padding: 9px 16px; border-radius: 999px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 22px 0 24px;
}
.hero h1 .accent { color: var(--ggg-lemon-spark); }
.hero h1 .num { color: var(--ggg-active-orange); }
.hero p.lead {
  font: 400 18px/1.5 var(--font-body);
  max-width: 520px;
  opacity: 0.95; margin-bottom: 28px;
  text-shadow: 0 1px 14px rgba(0, 20, 56, 0.45);
}
.hero .ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero .trust {
  margin-top: 22px;
  font: 500 13px/1.5 var(--font-body);
  opacity: 0.85;
  display: flex; align-items: center; gap: 10px;
}
.hero .trust .dot { width: 8px; height: 8px; background: var(--ggg-lemon-spark); border-radius: 999px; }

/* hero counter - attached strip beneath the product plinth */
.counter-card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.12) 100%);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(0, 18, 46, 0.18);
  padding: 14px 22px 16px;
  border-radius: 0 0 22px 22px;
  display: flex; align-items: center; gap: 18px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -10px 24px rgba(0, 18, 46, 0.12),
    0 10px 22px rgba(0, 18, 46, 0.22);
}
/* soft diagonal specular sheen across the glass */
.counter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.16) 46%, rgba(255, 255, 255, 0.02) 54%, transparent 70%);
  pointer-events: none;
}
.counter-card > * { position: relative; z-index: 1; }
.counter-card > div:first-child { flex: none; }
.counter-card .label {
  font: 800 9px/1.3 var(--font-display);
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.8;
}
.counter-card .big {
  font: 900 26px/1 var(--font-display);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 3px;
}
.counter-card .of { opacity: 0.6; font-weight: 700; font-size: 16px; }
.counter-card .bar-wrap { flex: 1; min-width: 0; }
.counter-card .bar { height: 8px; background: rgba(255,255,255,0.2); border-radius: 999px; overflow: hidden; margin-top: 5px; }
.counter-card .bar-fill { height: 100%; background: var(--ggg-lemon-spark); border-radius: 999px; transition: width 1.4s cubic-bezier(.22,1,.36,1); }
.counter-card .pct { font: 800 12px/1 var(--font-display); letter-spacing: 0.1em; opacity: 0.9; text-align: right; }

/* hero visual */
.hero-visual {
  position: relative;
  height: 580px;
  margin-top: 56px; /* push the whole product block down off the top edge for balance */
  display: block; /* absolute children handle positioning */
}

/* unified product stack: orange label (top) + participation strip (bottom) */
.hero-visual .product-stack {
  position: absolute;
  bottom: 8px;
  left: 6%;
  right: 6%;
  z-index: 3;
  border-radius: 24px;
  box-shadow:
    0 28px 60px rgba(255, 102, 0, 0.30),
    0 6px 16px rgba(0, 24, 60, 0.30);
  transform: translateY(var(--box-y, 0px));
  transition: transform 320ms var(--ease-out), inset 320ms, border-radius 320ms;
}

/* â”€â”€ Style A Â· Khá»‘i há»™p (default) - scalable block â”€â”€ */
.hero-visual .product-stack.box-block {
  transform: translateY(var(--box-y, 0px)) scale(var(--box-scale, 1));
  transform-origin: 50% 100%;
}

/* â”€â”€ Style B Â· Máº£ng tÆ°á»ng - large slab vaulting from the corner â”€â”€
   Bleeds past the viewport's right edge using vw so it stays flush no
   matter the browser zoom; .hero{overflow:hidden} clips it exactly at
   the section's rounded right edge. */
.hero-visual .product-stack.box-wall {
  left: auto;
  right: -12vw;
  bottom: -6%;
  width: calc(96% * var(--box-scale, 1) + 12vw);
  border-radius: 46px 0 0 0;
  overflow: hidden;
  transform: translateY(var(--box-y, 0px));
  box-shadow:
    -34px -22px 70px rgba(255, 102, 0, 0.30),
    0 8px 18px rgba(0, 24, 60, 0.30);
}
.hero-visual .product-stack.box-wall .product-plinth {
  min-height: 224px;
  border-radius: 46px 0 0 0;
  justify-content: center;
  padding-top: 30px;
  /* keep label content off the bleeding right edge */
  padding-right: calc(12vw + 22px);
}
.hero-visual .product-stack.box-wall .counter-card {
  border-radius: 0;
  padding-right: calc(12vw + 22px);
}

/* â”€â”€ Style C Â· TÃ¡ch rá»i - blue & orange pulled apart by a gap â”€â”€ */
.hero-visual .product-stack.box-split {
  display: flex;
  flex-direction: column;
  gap: var(--box-gap, 0px);
  box-shadow: none;
  background: none;
  border-radius: 0;
  transform: translateY(var(--box-y, 0px));
}

/* â”€â”€ Frosted translucent-orange material (toggle) â”€â”€
   Plinth becomes see-through orange glass; the cloud behind + bottle base
   blur through it. Works on top of any box style. */
.hero-visual .product-stack.glass-on .product-plinth {
  background:
    linear-gradient(158deg, rgba(255, 132, 34, 0.52) 0%, rgba(255, 96, 0, 0.40) 60%, rgba(255, 110, 10, 0.46) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -10px 26px rgba(120, 40, 0, 0.16);
}
.hero-visual .product-stack.glass-on .product-plinth .plinth-name {
  text-shadow: 0 2px 12px rgba(110, 36, 0, 0.45);
}
.hero-visual .product-stack.glass-on .product-plinth .plinth-meta {
  text-shadow: 0 1px 8px rgba(110, 36, 0, 0.4);
}
/* a faint diagonal sheen to sell the glass surface */
.hero-visual .product-stack.glass-on .product-plinth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(108deg, transparent 32%, rgba(255, 255, 255, 0.14) 48%, transparent 64%);
  pointer-events: none;
  z-index: 0;
}
.hero-visual .product-stack.box-split .product-plinth {
  border-radius: 20px;
  box-shadow:
    0 22px 48px rgba(255, 102, 0, 0.32),
    inset 0 2px 0 rgba(255, 255, 255, 0.22);
}
.hero-visual .product-stack.box-split .counter-card {
  border-radius: 20px;
  border-top: 0;
  box-shadow: 0 18px 40px rgba(0, 24, 60, 0.30);
}

/* product label - top of the stack, bottle stands on it */
.hero-visual .product-plinth {
  position: relative;
  min-height: 138px;
  background: var(--ggg-active-orange);
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 18px 22px 18px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.22);
}
.hero-visual .product-plinth::before {
  /* glossy top stripe (catches light) */
  content: "";
  position: absolute;
  top: 8px; left: 16px; right: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.hero-visual .plinth-eyebrow {
  position: relative; z-index: 2;
  font: 800 10px/1 var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 24, 60, 0.22);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 9px;
}
.hero-visual .plinth-name {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.hero-visual .plinth-meta {
  position: relative; z-index: 2;
  margin-top: 8px;
  font: 600 12px/1.3 var(--font-body);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.86);
  max-width: 380px;
}

/* bottle stands on the plinth, dropper rises clear above */
.hero-visual img.bottle {
  position: absolute;
  left: 50%;
  bottom: 198px; /* base rests on top of the unified product stack */
  height: 88%;
  max-height: 510px;
  width: auto;
  transform: translateX(-50%) rotate(-4deg);
  transform-origin: center bottom;
  filter: drop-shadow(0 24px 24px rgba(0, 24, 60, 0.5));
  z-index: 2;
  animation: ggg-bottle-float 4.5s ease-in-out infinite;
}

/* sáº£n pháº©m dÃ¡ng Rá»˜NG (hÅ© cooling maskâ€¦): thu nhá» hÅ© + dáº¡t bubbles ra mÃ©p
   Ä‘á»ƒ bubbles ná»•i trÃªn ná»n thay vÃ¬ dÃ­nh trÃªn thÃ¢n sáº£n pháº©m */
.hero-visual--wide img.bottle {
  height: 48%;
  max-height: 285px;
  bottom: 240px;
  transform: translateX(-50%) rotate(-3deg);
}

/* "Má»›i ra máº¯t" pop-up sticker */
.hero-visual .new-badge {
  position: absolute;
  top: 40px; right: 70px;
  z-index: 5;
  width: 128px; height: 128px;
  background: var(--ggg-lemon-spark);
  color: var(--color-fg);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(12deg);
  box-shadow: 0 10px 24px rgba(0, 24, 60, 0.28), 0 2px 6px rgba(0, 24, 60, 0.18);
  animation: badge-pop 2.4s var(--ease-snap) infinite;
}
.hero-visual .new-badge::before {
  /* dashed ring */
  content: "";
  position: absolute; inset: 8px;
  border: 2px dashed var(--color-fg);
  border-radius: 999px;
  opacity: 0.35;
}
.hero-visual .new-badge-inner {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--font-display);
  text-align: center;
}
.hero-visual .new-badge-inner strong {
  font-weight: 900; font-size: 18px; line-height: 1.05;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-visual .new-badge-spark {
  font-size: 12px; color: var(--ggg-active-orange);
}
@keyframes badge-pop {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50%      { transform: rotate(12deg) scale(1.06); }
}

.hero-visual .bubble {
  position: absolute;
  background: #fff;
  color: var(--ggg-active-orange);
  font: 800 13px/1.15 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 24, 60, 0.25), 0 14px 32px rgba(0, 24, 60, 0.2);
  z-index: 3;
}
.hero-visual .bubble-1 { top: 12%; left: 4%; }
.hero-visual .bubble-2 { top: 34%; right: -2%; }
.hero-visual .bubble-3 { top: 38%; left: -8%; }
/* sáº£n pháº©m dÃ¡ng rá»™ng: bubble náº±m trÃªn/dÆ°á»›i hÅ©, khÃ´ng dÃ­nh thÃ¢n
   (pháº£i Ä‘á»©ng SAU rule gá»‘c - cÃ¹ng specificity, thá»© tá»± quyáº¿t Ä‘á»‹nh) */
.hero-visual--wide .bubble-1 { top: 4%; left: 1%; }
.hero-visual--wide .bubble-2 { top: 32%; right: -2%; }
.hero-visual--wide .bubble-3 { top: 60%; left: -8%; }

/* ============ SECTION SHELL ============ */
.section { padding: 96px 0; }
.section .eyebrow {
  font-family: var(--font-display);
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ggg-active-orange);
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 14px 0 16px;
}
.section .lead {
  font: 400 18px/1.5 var(--font-body);
  color: var(--color-fg-muted);
  max-width: 640px;
}
.section .head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px;
}

/* ============ SMART ACTIVE STRIP ============ */
.smart {
  background: var(--ggg-soft-milk);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.smart .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-fg); color: #fff;
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px;
}
.smart .tag .glyph { color: var(--ggg-lemon-spark); }
.smart h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 18px 0;
}
.smart h3 .accent { color: var(--ggg-active-orange); }
.smart p { font: 400 17px/1.6 var(--font-body); color: var(--color-fg-muted); }
.smart .proofs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.smart .proof {
  position: relative;
  background: #fff; border-radius: 16px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
  border: 1.5px solid transparent;
  box-shadow: 0 1px 0 rgba(0, 24, 60, 0.04);
  cursor: pointer;
  font: inherit; color: inherit;
  transition: border-color 0.2s var(--ease-snap, ease), box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.smart .proof:hover { transform: translateY(-2px); }
.smart .proof:focus-visible { outline: 2px solid var(--ggg-active-orange); outline-offset: 2px; }
.smart .proof.on {
  border-color: var(--ggg-active-orange);
  background: #fff;
  box-shadow: 0 14px 30px rgba(255, 96, 0, 0.16);
}
.smart .proof .who { font: 800 11px/1 var(--font-display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ggg-active-orange); }
.smart .proof .what { font: 600 14px/1.3 var(--font-body); }
.smart .proof .proof-go {
  margin-top: 2px;
  font: 800 10px/1 var(--font-display); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ggg-active-orange);
  opacity: 0; transform: translateY(-3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.smart .proof.on .proof-go,
.smart .proof:hover .proof-go { opacity: 1; transform: translateY(0); }

/* â”€â”€ interactive product scene stage â”€â”€ */
.smart .smart-stage {
  position: relative;
  border-radius: 28px;
  height: 480px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 60px rgba(0, 24, 60, 0.22);
}
.smart-stage .ss-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, color-mix(in srgb, var(--tint) 70%, #fff 30%), transparent 55%),
    linear-gradient(180deg, var(--tint) 0%, var(--deep) 100%);
  transition: background 0.5s ease;
  z-index: 0;
}
.smart-stage .ss-cloud {
  position: absolute; left: -6%; right: -6%; bottom: 18%;
  height: 46%;
  background:
    radial-gradient(60% 80% at 22% 70%, rgba(255,255,255,0.85), transparent 70%),
    radial-gradient(55% 70% at 55% 78%, rgba(255,255,255,0.7), transparent 72%),
    radial-gradient(50% 70% at 82% 72%, rgba(255,255,255,0.8), transparent 70%);
  filter: blur(6px);
  opacity: 0.55;
  z-index: 1;
}
.smart-stage .ss-product {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  max-height: 74%; max-width: 60%;
  width: auto;
  filter: drop-shadow(0 26px 30px rgba(0, 12, 40, 0.4));
  z-index: 4;
  animation: ss-rise 0.55s var(--ease-snap, cubic-bezier(0.22, 1, 0.36, 1)) both;
}
@keyframes ss-rise {
  0%   { opacity: 0; transform: translate(-50%, calc(-50% + 16px)) scale(0.96); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.smart-stage .ss-trio {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  gap: 2%;
  width: 92%;
  z-index: 4;
  animation: ss-rise-trio 0.55s var(--ease-snap, cubic-bezier(0.22, 1, 0.36, 1)) both;
}
.smart-stage .ss-trio-item {
  width: 31%; max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 12, 40, 0.38));
}
.smart-stage .ss-trio-item:nth-child(2) {
  width: 35%; max-height: 72%;
  z-index: 2;
  margin: 0 -1%;
}
.smart-stage .ss-trio-item:nth-child(1),
.smart-stage .ss-trio-item:nth-child(3) {
  margin-top: 8%;
}
@keyframes ss-rise-trio {
  0%   { opacity: 0; transform: translate(-50%, calc(-50% + 16px)) scale(0.96); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.smart-stage .ss-cat {
  position: absolute; top: 18px; left: 18px; z-index: 6;
  background: var(--ggg-active-orange); color: #fff;
  font: 800 11px/1 var(--font-display); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255, 96, 0, 0.32);
}
.smart-stage .ss-name {
  position: absolute; bottom: 18px; right: 18px; z-index: 6;
  display: flex; flex-direction: column; gap: 2px; align-items: flex-end;
  background: #fff; color: var(--color-fg);
  padding: 9px 15px; border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 16, 50, 0.28);
  text-align: right;
}
.smart-stage .ss-name strong { font: 900 14px/1 var(--font-display); letter-spacing: 0.02em; }
.smart-stage .ss-name span { font: 600 10px/1 var(--font-body); color: var(--color-fg-muted); letter-spacing: 0.04em; }
.smart-stage .ss-hint {
  position: absolute; bottom: 18px; left: 18px; z-index: 6;
  max-width: 46%;
  font: 600 11px/1.4 var(--font-body);
  color: rgba(255, 255, 255, 0.92);
}
.smart-stage .ss-bubbles { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.smart-stage .ss-bubble {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--color-fg);
  font: 800 12px/1.1 var(--font-display);
  letter-spacing: 0.03em;
  padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 24, 60, 0.22), 0 14px 30px rgba(0, 24, 60, 0.18);
  white-space: nowrap;
  animation: ss-bub-in 0.5s ease both, ss-bub-float 4.4s ease-in-out 0.45s infinite;
}
.smart-stage .ss-bub-ic { width: 15px; height: 15px; flex: none; }
.smart-stage .ss-bubble:nth-child(1) { top: 17%; right: 14%; animation-delay: 0s, 0.45s; }
.smart-stage .ss-bubble:nth-child(2) { top: 47%; left: 12%; animation-delay: 0.1s, 0.95s; }
.smart-stage .ss-bubble:nth-child(3) { top: 73%; right: 15%; animation-delay: 0.2s, 1.45s; }
/* Cooling Mask - keep bubbles off the centred product label */
.smart-stage .ss-bubbles--cooling .ss-bubble:nth-child(1) { top: 13%; right: 7%; left: auto; }
.smart-stage .ss-bubbles--cooling .ss-bubble:nth-child(2) { top: 72%; left: 5%; right: auto; }
.smart-stage .ss-bubbles--cooling .ss-bubble:nth-child(3) { top: 49%; right: 4%; left: auto; }
/* Wonder Glow trio - each colored bubble sits above its matching bottle, light overlap */
.smart-stage .ss-bubbles--wonder .ss-bubble { font-size: 10.5px; padding: 7px 11px; gap: 5px; }
.smart-stage .ss-bubbles--wonder .ss-bub-ic { width: 13px; height: 13px; }
.smart-stage .ss-bubbles--wonder .ss-bubble:nth-child(1) { top: 15%; left: 1%; right: auto; }
.smart-stage .ss-bubbles--wonder .ss-bubble:nth-child(2) { top: 11%; left: 35%; right: auto; }
.smart-stage .ss-bubbles--wonder .ss-bubble:nth-child(3) { top: 15%; right: 1%; left: auto; }
@keyframes ss-bub-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes ss-bub-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }


/* ============ JOURNEY (5 steps) ============ */
.journey .head-row { margin-bottom: 40px; }
.jrny-rail { position: relative; }
.jrny-track,
.jrny-fill {
  position: absolute; top: 42px; height: 3px; border-radius: 999px;
}
.jrny-track { left: var(--inset); right: var(--inset); background: var(--color-border); }
.jrny-fill {
  left: var(--inset); background: var(--ggg-active-orange);
  transition: width 620ms var(--ease-out);
  box-shadow: 0 0 12px rgba(255,102,0,0.45);
}
.jrny-traveler {
  position: absolute; top: 2px;
  font-size: 22px; line-height: 1; color: var(--ggg-lemon-spark);
  transform: translateX(-50%);
  transition: left 620ms var(--ease-out);
  text-shadow: 0 0 12px rgba(255,211,0,0.8);
  z-index: 4; pointer-events: none;
  animation: jrny-bob 2.4s var(--ease-in-out) infinite;
}
@keyframes jrny-bob {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-4px) rotate(180deg); }
}

.jrny-nodes {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative; z-index: 2; padding-top: 16px;
}
.jrny-node {
  display: flex; flex-direction: column; align-items: center; gap: 13px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.jrny-node .dot {
  width: 52px; height: 52px; border-radius: 999px;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--color-border);
  transition: transform 300ms var(--ease-snap), border-color 220ms, background 220ms, box-shadow 220ms;
}
.jrny-node .num {
  font: 900 18px/1 var(--font-display); color: var(--color-fg-subtle);
  letter-spacing: -0.02em; transition: color 220ms;
}
.jrny-node .cap {
  font: 800 12px/1.2 var(--font-display); letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--color-fg-muted); transition: color 220ms; text-align: center;
}
.jrny-node:hover .dot { border-color: var(--color-fg); }
.jrny-node.done .dot { background: var(--ggg-active-orange); border-color: var(--ggg-active-orange); }
.jrny-node.done .num { color: #fff; }
.jrny-node.on .dot {
  background: var(--color-fg); border-color: var(--color-fg);
  transform: scale(1.16); box-shadow: 0 0 0 6px rgba(31,29,29,0.07);
}
.jrny-node.on .num { color: #fff; }
.jrny-node.on .cap { color: var(--color-fg); }

.jrny-detail {
  margin-top: 40px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  background: var(--ggg-soft-milk);
  border: 1.5px solid var(--color-border);
  border-radius: 24px;
  padding: 26px 32px;
  animation: jrny-in 440ms var(--ease-out);
}
@keyframes jrny-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.jd-num {
  font: 900 64px/0.85 var(--font-display);
  color: var(--ggg-active-orange); letter-spacing: -0.04em;
}
.jd-text h4 {
  font: 800 22px/1.15 var(--font-display);
  text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 6px;
}
.jd-text p {
  font: 400 15px/1.55 var(--font-body); color: var(--color-fg-muted);
  max-width: 620px;
}
.jd-text .jd-note {
  margin-top: 12px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--ggg-active-orange) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--ggg-active-orange) 26%, #fff);
  border-radius: 12px;
  font: 500 13px/1.5 var(--font-body);
  color: var(--color-fg);
  max-width: 640px;
}
.jd-text .jd-note-tag {
  display: inline-block;
  margin-right: 8px;
  font: 800 10px/1 var(--font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ggg-active-orange);
  vertical-align: 1px;
}
.jd-meta {
  font: 800 12px/1 var(--font-display);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-fg-subtle); white-space: nowrap;
}

/* ============ FORM ============ */
.form-wrap {
  background: var(--color-fg);
  color: #fff;
  border-radius: 40px;
  padding: 40px 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative; overflow: hidden;
}
/* intro collapses into a slim horizontal header bar above the wide form */
.form-side {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.form-side .fs-lead { max-width: 480px; }
.form-side h2 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 10px 0 0;
}
.form-side .eyebrow { color: var(--ggg-lemon-spark); }
.form-side p { font: 400 14px/1.5 var(--font-body); color: rgba(255,255,255,0.72); margin-top: 10px; }
.form-side .perks {
  margin: 0; display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 22px; max-width: 560px; flex: 1 1 440px;
}
.form-side .perk {
  display: flex; align-items: flex-start; gap: 12px;
  font: 500 13px/1.45 var(--font-body); color: rgba(255,255,255,0.9);
}
.form-side .perk .chip {
  background: var(--ggg-active-orange);
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font: 900 13px var(--font-display);
  flex: none;
}

.form-box {
  background: #fff;
  color: var(--color-fg);
  border-radius: 28px;
  padding: 32px 38px;
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex; flex-direction: column;
}

/* wide two-column step body so each survey step fits on one screen */
.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 44px;
  align-items: start;
}
.step-grid--face { grid-template-columns: 1.7fr 1fr; }
.step-col { display: flex; flex-direction: column; min-width: 0; }
.step-col .subhead {
  font: 800 16px/1.25 var(--font-display); letter-spacing: -0.01em;
  margin: 0 0 7px;
}
.step-col .subhint { font: 400 13px/1.5 var(--font-body); color: var(--color-fg-muted); margin: 0 0 16px; }
.step-col + .step-col { margin-top: 0; }
.step-col .step-sub + .step-sub { margin-top: 30px; }
.step-sub + .step-sub { margin-top: 24px; }
.progress {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.progress .track {
  flex: 1; height: 6px; background: #ECECEC; border-radius: 999px; overflow: hidden;
}
.progress .fill {
  height: 100%; background: linear-gradient(90deg, var(--ggg-active-orange), var(--ggg-lemon-spark));
  border-radius: 999px;
  transition: width 320ms cubic-bezier(.22,1,.36,1);
}
.progress .count {
  font: 800 12px/1 var(--font-display); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-fg-muted);
  font-variant-numeric: tabular-nums;
}

.step-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.step-head .label { font: 800 11px/1 var(--font-display); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ggg-active-orange); }
.step-head h3 {
  font: 800 28px/1.15 var(--font-display);
  letter-spacing: -0.02em;
}
.step-head .hint { font: 400 14px/1.5 var(--font-body); color: var(--color-fg-muted); }

/* pill grid (multi-select) */
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--ggg-soft-milk);
  border: 1.5px solid #ECECEC;
  color: var(--color-fg);
  font: 600 14px/1 var(--font-body);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 120ms;
  display: inline-flex; align-items: center; gap: 8px;
}
@media (hover: hover) {
  .pill:hover { border-color: var(--color-fg); }
}
.pill.on {
  background: var(--color-fg); color: #fff;
  border-color: var(--color-fg);
}
.pill.on .glyph { color: var(--ggg-lemon-spark); }
.pill .glyph { width: 14px; height: 14px; opacity: 0; transition: opacity 120ms; }
.pill.on .glyph { opacity: 1; }

/* dial/slider */
.slider-block { margin-bottom: 16px; }
.slider-row {
  display: flex; justify-content: space-between;
  font: 700 12px/1 var(--font-display); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 8px;
}
.slider-row .center {
  color: var(--ggg-active-orange);
}
.range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 10px;
  background: var(--ggg-soft-milk);
  border-radius: 999px;
  border: 1.5px solid #ECECEC;
  outline: none;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px;
  background: var(--ggg-active-orange);
  border: 4px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ggg-active-orange), 0 4px 12px rgba(255,102,0,0.4);
  border-radius: 999px; cursor: pointer;
  transition: transform 120ms;
}
.range::-webkit-slider-thumb:active { transform: scale(1.1); }
.range::-moz-range-thumb {
  width: 30px; height: 30px;
  background: var(--ggg-active-orange);
  border: 4px solid #fff;
  border-radius: 999px; cursor: pointer;
}
.range.inactive::-webkit-slider-thumb {
  background: #ccc;
  box-shadow: 0 0 0 1.5px #ccc, 0 4px 12px rgba(0,0,0,0.1);
  border-color: #fff;
}
.range.inactive::-moz-range-thumb {
  background: #ccc;
  border-color: #fff;
}

/* segmented chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-btn {
  flex: 1;
  background: var(--ggg-soft-milk);
  border: 1.5px solid #ECECEC;
  font: 700 13px/1 var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 8px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 120ms;
  color: var(--color-fg);
  text-align: center;
}
@media (hover: hover) {
  .chip-btn:hover { border-color: var(--color-fg); }
}
.chip-btn.on {
  background: var(--color-fg); color: #fff; border-color: var(--color-fg);
}

/* â”€â”€ chá»n quÃ  lÃ m quen (bÆ°á»›c 5) â”€â”€ */
.gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gift-card {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  background: var(--ggg-soft-milk);
  border: 1.5px solid #ECECEC;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: all 120ms;
  min-width: 0;
}
@media (hover: hover) {
  .gift-card:hover { border-color: var(--color-fg); }
}
.gift-card.on {
  border-color: var(--ggg-active-orange);
  background: #fff;
  box-shadow: 0 0 0 1.5px var(--ggg-active-orange), 0 6px 18px rgba(255,102,0,0.15);
}
.gift-img { width: 52px; height: 64px; object-fit: contain; flex: none; }
.gift-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gift-text strong { font: 800 13px/1.25 var(--font-display); letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-fg); }
.gift-text span { font: 500 12px/1.45 var(--font-body); color: var(--color-fg-muted); }
.gift-tick {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--ggg-active-orange);
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
}
.gift-tick svg { width: 12px; height: 12px; }
.gift-card.on .gift-tick { display: flex; }
@media (max-width: 560px) {
  .gift-grid { grid-template-columns: 1fr; }
}

/* input */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.field label { font: 700 11px/1 var(--font-display); letter-spacing: 0.16em; text-transform: uppercase; }
.input, select.input {
  font: 500 15px/1.4 var(--font-body);
  color: var(--color-fg);
  background: var(--ggg-soft-milk);
  border: 1.5px solid #ECECEC;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 120ms, background 120ms;
}
.input:focus { border-color: var(--ggg-active-orange); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* grid/flex items khÃ´ng co Ä‘Æ°á»£c dÆ°á»›i ná»™i dung â†’ input trÃ n sang cá»™t map.
   Chuáº©n hoÃ¡: cho phÃ©p co + input luÃ´n vá»«a khÃ­t Ã´. */
.field, .field-row > .field { min-width: 0; }
.input, select.input { width: 100%; box-sizing: border-box; min-width: 0; }
.combo, .brand-picker { width: 100%; min-width: 0; }

/* â”€â”€ brand combobox (Ä‘ang dÃ¹ng hÃ£ng nÃ o) â”€â”€ */
.brand-picker { display: flex; flex-direction: column; gap: 10px; position: relative; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff;
  border: 1.5px solid var(--ggg-active-orange);
  color: var(--color-fg);
  font: 700 13px/1 var(--font-body);
  padding: 8px 8px 8px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 96, 0, 0.12);
}
.brand-tag button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border: none; border-radius: 50%;
  background: color-mix(in srgb, var(--ggg-active-orange) 14%, #fff);
  color: var(--ggg-active-orange);
  font-size: 15px; line-height: 1; cursor: pointer;
  transition: background 120ms, color 120ms;
}
.brand-tag button:hover { background: var(--ggg-active-orange); color: #fff; }
.brand-input-wrap { position: relative; }
.brand-search-ic {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--color-fg-muted); pointer-events: none;
}
.brand-input { width: 100%; padding-left: 42px; }
.brand-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  z-index: 30;
  background: #fff;
  border: 1.5px solid #ECECEC;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 24, 60, 0.16);
  padding: 6px;
  max-height: 296px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
}
.brand-opt {
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font: 600 14px/1.2 var(--font-body); color: var(--color-fg);
  padding: 11px 12px; border-radius: 10px;
  transition: background 100ms;
}
.brand-opt .brand-opt-ic { color: var(--ggg-active-orange); font-size: 12px; }
.brand-opt.hi, .brand-opt:hover { background: var(--ggg-soft-milk); }
.brand-opt-add { color: var(--ggg-active-orange); font-weight: 700; }
.brand-opt-add strong { color: var(--color-fg); }

/* thÃ´ng bÃ¡o autocorrect tÃªn hÃ£ng */
.brand-correct-note {
  font: 500 12px/1.5 var(--font-body);
  color: var(--ggg-active-orange);
}
.brand-correct-note strong { color: var(--color-fg); font-weight: 800; }

/* dropdown phÆ°á»ng/xÃ£: tiÃªu Ä‘á» cáº£nh bÃ¡o sÃ¡p nháº­p + ghi chÃº dÆ°á»›i Ã´ */
.ward-merge-head {
  font: 700 11.5px/1.4 var(--font-body);
  color: var(--ggg-active-orange);
  padding: 8px 12px 6px;
  border-bottom: 1px dashed #ECECEC;
  margin-bottom: 2px;
}
.ward-merge-note {
  font: 500 12px/1.5 var(--font-body);
  color: var(--color-fg-muted);
  background: color-mix(in srgb, var(--ggg-active-orange) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--ggg-active-orange) 22%, #fff);
  border-radius: 9px;
  padding: 7px 11px;
}
.ward-merge-note strong { color: var(--color-fg); font-weight: 800; }

/* â•â•â•â•â•â•â•â• Máº·t pháº£n á»©ng (Ä‘Ã£ tá»«ng dÃ¹ng G.G.G chÆ°a) â•â•â•â•â•â•â•â• */
.rx {
  margin-top: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 18px 18px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  animation: rx-in 0.4s cubic-bezier(0.22, 1.4, 0.4, 1) both;
}
@keyframes rx-in { 0% { opacity: 0; transform: translateY(10px) scale(0.92); } 100% { opacity: 1; transform: none; } }
.rx-stage {
  position: relative;
  width: 200px; height: 168px;
  display: flex; align-items: center; justify-content: center;
}
.rx-figure { position: relative; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; }
.rx-svg { width: 150px; height: 150px; overflow: visible; position: relative; z-index: 2; }
.rx-line { fill: none; stroke: #2a2a2a; stroke-width: 4; stroke-linecap: round; }
.rx-eye { fill: #2a2a2a; }
.rx-caption { font: 800 15px/1.3 var(--font-display); text-align: center; letter-spacing: 0.01em; }

/* â”€â”€ SAD â”€â”€ */
.rx-sad { background: linear-gradient(180deg, #EAF2FB, #D9E8F8); }
.rx-sad .rx-head { fill: #C2DBF4; stroke: #93BEE8; stroke-width: 3; }
.rx-sad .rx-figure { animation: rx-sad-shake 0.5s ease-in-out infinite; }
@keyframes rx-sad-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  25% { transform: translateX(-3px) rotate(-2deg); }
  75% { transform: translateX(3px) rotate(2deg); }
}
.rx-sad .rx-caption { color: #4E79A8; }
.rx-tear {
  position: absolute; top: 78px; z-index: 3;
  width: 9px; height: 12px;
  background: #5AA6F0;
  border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
  box-shadow: 0 0 6px rgba(90, 166, 240, 0.6);
}
.rx-tear.l { left: 56px; animation: rx-tear-fall 1.1s ease-in infinite; }
.rx-tear.r { right: 56px; animation: rx-tear-fall 1.1s ease-in 0.45s infinite; }
@keyframes rx-tear-fall {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(46px) scale(1); opacity: 0; }
}
.rx-cloud {
  position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 30px;
  background: #A9C7E8; border-radius: 999px;
  box-shadow: -22px 6px 0 -4px #A9C7E8, 22px 6px 0 -4px #A9C7E8, 0 -8px 0 -2px #BBD6F2;
  animation: rx-cloud-bob 2.4s ease-in-out infinite;
}
@keyframes rx-cloud-bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-4px); } }

/* â”€â”€ HAPPY â”€â”€ */
.rx-happy { background: linear-gradient(180deg, #FFF6DD, #FFE9B8); }
.rx-happy .rx-head { fill: #FFD23F; stroke: #F2B705; stroke-width: 3; }
.rx-happy .rx-cheek { fill: #FF9FB0; opacity: 0.75; }
.rx-happy .rx-mouth { fill: #C0392B; stroke: none; }
.rx-happy .rx-figure { animation: rx-bounce 0.6s cubic-bezier(0.3, 0.7, 0.4, 1.5) infinite; }
@keyframes rx-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-14px) scale(1.04, 0.96); }
  70% { transform: translateY(0) scale(0.98, 1.02); }
}
.rx-happy .rx-caption { color: #E08600; }

/* â”€â”€ FIRE / RAVE â”€â”€ */
.rx-fire { background: #1a0a02; }
.rx-fire .rx-head { fill: #FF7A1A; stroke: #E03E00; stroke-width: 3; }
.rx-fire .rx-shade { fill: #111; }
.rx-fire .rx-mouth { fill: #5a1500; stroke: none; }
.rx-fire .rx-line { stroke: #111; }
.rx-fire .rx-figure { animation: rx-rave 0.28s ease-in-out infinite; z-index: 2; }
@keyframes rx-rave {
  0% { transform: translate(-3px, 0) rotate(-4deg) scale(1.02); }
  50% { transform: translate(3px, -4px) rotate(4deg) scale(1.06); }
  100% { transform: translate(-3px, 0) rotate(-4deg) scale(1.02); }
}
.rx-fire .rx-caption {
  color: #fff; text-transform: uppercase; letter-spacing: 0.06em;
  animation: rx-cap-flash 0.4s steps(1) infinite;
}
@keyframes rx-cap-flash { 0% { color: #FFD23F; } 50% { color: #FF3D7F; } 100% { color: #19E0C8; } }
.rx-lights {
  position: absolute; inset: -40%; z-index: 0;
  background:
    conic-gradient(from 0deg,
      #FF3D7F 0deg 30deg, transparent 30deg 60deg,
      #19E0C8 60deg 90deg, transparent 90deg 120deg,
      #FFD23F 120deg 150deg, transparent 150deg 180deg,
      #7A5CFF 180deg 210deg, transparent 210deg 240deg,
      #FF7A1A 240deg 270deg, transparent 270deg 300deg,
      #19E0C8 300deg 330deg, transparent 330deg 360deg);
  opacity: 0.42;
  animation: rx-spin 3.2s linear infinite, rx-light-flash 0.45s steps(1) infinite;
  filter: blur(2px);
}
@keyframes rx-spin { to { transform: rotate(360deg); } }
@keyframes rx-light-flash { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.2; } }

/* sparkles (happy + fire) */
.rx-sparkles { position: absolute; inset: -14px; z-index: 4; pointer-events: none; }
.rx-sparkles span {
  position: absolute; font-size: 16px; color: #FFD23F;
  opacity: 0; animation: rx-spark 1.3s ease-in-out infinite;
}
.rx-fire .rx-sparkles span { color: #fff; }
.rx-sparkles span:nth-child(1) { top: 4%; left: 12%; animation-delay: 0s; }
.rx-sparkles span:nth-child(2) { top: 16%; right: 6%; animation-delay: 0.25s; }
.rx-sparkles span:nth-child(3) { bottom: 18%; left: 2%; animation-delay: 0.5s; }
.rx-sparkles span:nth-child(4) { bottom: 6%; right: 14%; animation-delay: 0.75s; }
.rx-sparkles span:nth-child(5) { top: 44%; left: -2%; animation-delay: 1s; }
.rx-sparkles span:nth-child(6) { top: 40%; right: -2%; animation-delay: 0.4s; }
@keyframes rx-spark {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0); }
  50% { opacity: 1; transform: scale(1.2) rotate(90deg); }
}

.rx-figure { z-index: 5; }

/* â•â•â•â•â•â•â•â• Ká»‹ch báº£n Ä‘Ã£ chá»‘t â•â•â•â•â•â•â•â• */

/* â”€â”€ FIRE Â· RAVE (quáº©y disco - cÆ°á»i lÄƒn lá»™n + lá»­a chÃ¡y báº­p bÃ¹ng) â”€â”€ */
.rx-tongue { fill: #FF6F8B; }
.rx-laughtear { fill: #BFE4FF; opacity: 0.92; animation: rx-laughtear 0.7s ease-in-out infinite; }
@keyframes rx-laughtear {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(3px) scale(1.15); opacity: 1; }
}
.rxv-rave .rx-figure { animation: rx-rave-roll 0.3s ease-in-out infinite; transform-origin: center 70%; }
@keyframes rx-rave-roll {
  0% { transform: translateY(0) rotate(-7deg) scale(1.03); }
  50% { transform: translateY(-4px) rotate(7deg) scale(1.07); }
  100% { transform: translateY(0) rotate(-7deg) scale(1.03); }
}
.rx-blaze {
  position: absolute; left: 0; right: 0; bottom: -4px; height: 138px; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center; gap: 2px;
  filter: blur(0.3px);
}
.rx-blaze::before {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 150px; height: 80px;
  background: radial-gradient(50% 70% at 50% 100%, rgba(255,140,30,0.55), transparent 72%);
}
.rx-blaze span {
  position: relative;
  width: 17px;
  background: linear-gradient(180deg, #FFF59A, #FF8A1E 48%, #E8300A);
  border-radius: 50% 50% 48% 48% / 0 0 64% 64%;
  transform-origin: bottom center;
  box-shadow: 0 0 16px rgba(255, 120, 20, 0.65);
}
.rx-blaze span::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 46%; height: 55%;
  background: linear-gradient(180deg, #FFF5CC, #FFC24A);
  border-radius: 50% 50% 48% 48% / 0 0 64% 64%;
  opacity: 0.9;
}
.rx-blaze span:nth-child(1) { height: 58px; animation: rx-blaze-flick 0.42s ease-in-out infinite; }
.rx-blaze span:nth-child(2) { height: 86px; animation: rx-blaze-flick 0.34s ease-in-out 0.06s infinite; }
.rx-blaze span:nth-child(3) { height: 116px; animation: rx-blaze-flick 0.28s ease-in-out 0.12s infinite; }
.rx-blaze span:nth-child(4) { height: 132px; animation: rx-blaze-flick 0.24s ease-in-out 0.03s infinite; }
.rx-blaze span:nth-child(5) { height: 114px; animation: rx-blaze-flick 0.3s ease-in-out 0.09s infinite; }
.rx-blaze span:nth-child(6) { height: 84px; animation: rx-blaze-flick 0.36s ease-in-out 0.15s infinite; }
.rx-blaze span:nth-child(7) { height: 56px; animation: rx-blaze-flick 0.4s ease-in-out 0.02s infinite; }
@keyframes rx-blaze-flick {
  0%, 100% { transform: scaleY(0.88) translateX(0); opacity: 0.85; }
  25% { transform: scaleY(1.28) translateX(-1.5px); opacity: 1; }
  55% { transform: scaleY(0.72) translateX(1.5px); opacity: 0.68; }
  80% { transform: scaleY(1.16) translateX(-1px); opacity: 0.96; }
}

@media (prefers-reduced-motion: reduce) {
  .rx-figure, .rx-tear, .rx-cloud, .rx-lights, .rx-sparkles span,
  .rx-caption, .rx-blaze span, .rx-laughtear { animation: none !important; }
  .rx-tear { opacity: 0.9; }
}

/* story textarea - the "cÃ¢u chuyá»‡n" before-state field */
.story-block {
  margin-top: 4px;
  background: linear-gradient(180deg, #FFF7E8, #FFF1D6);
  border: 1.5px solid #FFD27A;
  border-radius: 18px;
  padding: 18px 18px 14px;
}
.story-head {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px;
}
.story-icon {
  font-size: 22px; line-height: 1;
  color: var(--ggg-active-orange);
  flex: none;
  padding-top: 2px;
}
.story-title {
  font: 800 14px/1.25 var(--font-display);
  letter-spacing: -0.005em;
  color: var(--color-fg);
}
.story-sub {
  font: 500 12px/1.45 var(--font-body);
  color: var(--color-fg-muted);
  margin-top: 4px;
}
.story-input {
  width: 100%;
  font: 500 14px/1.5 var(--font-body);
  color: var(--color-fg);
  background: #fff;
  border: 1.5px solid #ECECEC;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  resize: vertical;
  min-height: 92px;
  transition: border-color 120ms;
  box-sizing: border-box;
}
.story-input:focus { border-color: var(--ggg-active-orange); }
.story-input::placeholder { color: #B8B4B4; }
.story-foot {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font: 600 11px/1 var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-fg-muted);
}
.story-foot .ok { color: var(--ggg-active-orange); }

/* form footer */
.form-foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.form-foot .back {
  background: transparent; border: 0; cursor: pointer;
  font: 800 12px/1 var(--font-display); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-fg-muted);
  padding: 12px 0;
  display: inline-flex; align-items: center; gap: 8px;
}
.form-foot .back:hover { color: var(--color-fg); }
.form-foot .back:disabled { opacity: 0.3; cursor: not-allowed; }

.form-error {
  margin-top: 14px;
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border-radius: 12px;
  padding: 12px 16px;
  font: 600 14px/1.4 var(--font-body);
}

.req-count {
  font: 600 12px/1 var(--font-body);
  color: var(--color-fg-muted);
}
.req-count strong { color: var(--ggg-active-orange); font-weight: 800; font-family: var(--font-display); }

/* success */
.success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  flex: 1;
  gap: 14px;
}
.success .badge {
  width: 92px; height: 92px;
  background: var(--ggg-lemon-spark);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  position: relative;
}
.success .badge svg { width: 56px; height: 56px; color: var(--color-fg); }
.success h3 {
  font: 900 32px/1.18 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.success p { font: 400 15px/1.5 var(--font-body); color: var(--color-fg-muted); max-width: 380px; }
.success .voucher {
  margin-top: 14px;
  background: var(--ggg-cobalt-core);
  color: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  text-align: left;
  width: 100%;
  display: flex; gap: 16px; align-items: center;
}
.success .voucher .left { flex: 1; }
.success .voucher .vlabel { font: 800 11px/1 var(--font-display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ggg-lemon-spark); margin-bottom: 6px; }
.success .voucher .code {
  font: 900 22px/1 var(--font-display); letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.success .voucher .amt { font: 700 14px/1.3 var(--font-body); opacity: 0.85; margin-top: 6px; }
.success .voucher button {
  background: var(--ggg-lemon-spark); color: var(--color-fg);
  border: 0; font: 800 11px/1 var(--font-display); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 16px; border-radius: 999px; cursor: pointer;
}

/* ============ REWARD LADDER (interactive) ============ */
.rw .rw-head { align-items: flex-end; margin-bottom: 36px; }
.rw .rw-intro {
  max-width: 360px;
  font: 500 15px/1.55 var(--font-body);
  color: var(--color-fg-muted);
  text-wrap: pretty;
}

.rw-stage {
  display: grid;
  grid-template-columns: 336px 1fr;
  gap: 22px;
  align-items: stretch;
}

/* ---- left rail = ladder of 3 tiers ---- */
.rw-rail { display: flex; flex-direction: column; gap: 12px; }
.rw-rung {
  --c: var(--color-fg);
  flex: 1;
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  padding: 16px 20px;
  cursor: pointer; text-align: left;
  transition: border-color 200ms, box-shadow 240ms var(--ease-out),
              transform 240ms var(--ease-out), background 220ms;
}
.rw-rung.r1 { --c: var(--ggg-energetic-blue); }
.rw-rung.r2 { --c: var(--ggg-active-orange); }
.rw-rung.r3 { --c: var(--color-fg); }
.rw-rung:hover { border-color: var(--c); }
.rw-rung.on {
  background: var(--c);
  border-color: var(--c);
  transform: translateX(8px);
  box-shadow: 0 18px 36px rgba(0, 24, 60, 0.18);
}
.rw-rung-num {
  font: 900 32px/1 var(--font-display);
  letter-spacing: -0.04em;
  color: var(--c);
  min-width: 46px;
  font-variant-numeric: tabular-nums;
  transition: color 200ms;
}
.rw-rung.on .rw-rung-num { color: #fff; }
.rw-rung.r3.on .rw-rung-num { color: var(--ggg-lemon-spark); }
.rw-rung-text { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.rw-rung-level {
  font: 800 10px/1 var(--font-display);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-fg-muted);
  transition: color 200ms;
}
.rw-rung.on .rw-rung-level { color: rgba(255, 255, 255, 0.82); }
.rw-rung-who { font: 500 13px/1.25 var(--font-body); color: var(--color-fg); transition: color 200ms; }
.rw-rung-who strong { font: 800 14px/1 var(--font-display); }
.rw-rung.on .rw-rung-who { color: #fff; }
.rw-rung-arrow {
  font: 800 18px/1 var(--font-display);
  color: var(--c); opacity: 0;
  transform: translateX(-6px);
  transition: opacity 220ms, transform 220ms var(--ease-out), color 200ms;
}
.rw-rung.on .rw-rung-arrow { opacity: 1; transform: translateX(0); color: #fff; }
.rw-rung.r3.on .rw-rung-arrow { color: var(--ggg-lemon-spark); }

/* ---- showcase panel (changes with active tier) ---- */
.rw-show {
  --rw-accent: var(--ggg-energetic-blue);
  display: grid;
  grid-template-columns: 296px 1fr;
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-md);
  animation: rw-in 440ms var(--ease-out);
}
.rw-show.r1 { --rw-accent: var(--ggg-energetic-blue); }
.rw-show.r2 { --rw-accent: var(--ggg-active-orange); }
.rw-show.r3 { --rw-accent: var(--color-fg); }
@keyframes rw-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* visual side */
.rw-vis {
  position: relative;
  background:
    radial-gradient(120% 78% at 50% 0%, rgba(255, 255, 255, 0.22), transparent 62%),
    var(--rw-accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 22px 20px 22px;
  overflow: hidden;
}
.rw-show.r3 .rw-vis {
  background:
    radial-gradient(120% 78% at 50% 0%, rgba(255, 211, 0, 0.20), transparent 60%),
    var(--color-fg);
}
.rw-vis-num {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font: 900 230px/0.78 var(--font-display);
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: -0.06em;
  pointer-events: none; z-index: 1;
}
.rw-value {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  background: #fff; color: var(--color-fg);
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 15px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 24, 60, 0.28);
  animation: rw-pop 520ms var(--ease-snap) both;
}
.rw-prod {
  position: relative; z-index: 2;
  max-height: 318px; width: auto;
  filter: drop-shadow(0 20px 28px rgba(0, 24, 60, 0.42));
  transform: rotate(-5deg);
  transform-origin: center bottom;
  animation: rw-prod-in 600ms var(--ease-out) both;
}
@keyframes rw-prod-in {
  from { opacity: 0; transform: rotate(-5deg) translateY(26px) scale(0.92); }
  to   { opacity: 1; transform: rotate(-5deg); }
}

/* khu trÆ°ng bÃ y nhiá»u sáº£n pháº©m (quÃ  theo cáº¥p) */
.rw-prod-set {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 8px;
  max-width: 100%;
}
.rw-prod-item {
  max-height: 318px; width: auto; min-width: 0;
  filter: drop-shadow(0 20px 28px rgba(0, 24, 60, 0.42));
  animation: rw-set-in 600ms var(--ease-out) both;
}
/* bá»™ 4 mÃ³n (3 serum + hÅ© cooling): serum tháº¥p láº¡i, hÅ© rá»™ng nhá» hÆ¡n */
.rw-prod-set--4 .rw-prod-item { max-height: 215px; }
.rw-prod-set--4 .rw-prod-item:last-child { max-height: 150px; }
@keyframes rw-set-in {
  from { opacity: 0; transform: translateY(26px) scale(0.92); }
  to   { opacity: 1; }
}
@keyframes rw-pop {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.8); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}
.rw-vis-cap {
  position: relative; z-index: 3;
  margin-top: 12px;
  font: 600 11px/1.2 var(--font-display);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.rw-vis-cap strong { font-weight: 900; color: #fff; }
.rw-show.r3 .rw-vis-cap { color: rgba(255, 255, 255, 0.7); }
.rw-show.r3 .rw-vis-cap strong { color: var(--ggg-lemon-spark); }

/* info side */
.rw-info {
  background: #fff;
  padding: 30px 34px;
  display: flex; flex-direction: column;
}
.rw-level {
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rw-accent);
}
.rw-show.r3 .rw-level { color: var(--ggg-active-orange); }
.rw-name {
  font: 900 clamp(28px, 2.4vw, 36px)/1.05 var(--font-display);
  letter-spacing: -0.025em; text-transform: uppercase;
  margin: 10px 0 10px;
}
.rw-blurb {
  font: 400 15px/1.55 var(--font-body);
  color: var(--color-fg-muted);
  margin: 0 0 20px; max-width: 480px;
  text-wrap: pretty;
}
.rw-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.rw-items li {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  animation: rw-item-in 440ms var(--ease-out) both;
}
.rw-items li:last-child { border-bottom: 0; padding-bottom: 0; }
@keyframes rw-item-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: none; }
}
.rw-check {
  flex: none;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--rw-accent); color: #fff;
  display: grid; place-items: center;
  font-size: 12px;
  margin-top: 1px;
}
.rw-show.r3 .rw-check { background: var(--ggg-lemon-spark); color: var(--color-fg); }
.rw-item-text { display: flex; flex-direction: column; gap: 2px; }
.rw-item-text strong { font: 800 15px/1.25 var(--font-display); letter-spacing: -0.005em; }
.rw-item-text span { font: 400 13px/1.4 var(--font-body); color: var(--color-fg-muted); }

@media (max-width: 1080px) {
  .rw-stage { grid-template-columns: 1fr; }
  .rw-rail { flex-direction: row; }
  .rw-rung { flex-direction: column; align-items: flex-start; gap: 10px; }
  .rw-rung-arrow { display: none; }
  .rw-show { grid-template-columns: 1fr; }
  .rw-vis { min-height: 320px; }
}

/* ============ KOL STRIP ============ */
.kols { background: var(--ggg-soft-milk); padding: 80px 0; border-radius: 40px; overflow: hidden; }
.kols .head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.kol-marquee { display: flex; gap: 18px; animation: scroll-x 40s linear infinite; width: max-content; }
.kol-card {
  width: 240px; flex: none;
  background: #fff; border-radius: 24px; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.kol-card .avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ggg-energetic-blue), var(--ggg-active-orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font: 900 56px var(--font-display);
}
.kol-card h5 { font: 800 16px/1.2 var(--font-display); }
.kol-card .role { font: 500 12px/1.3 var(--font-body); color: var(--color-fg-muted); }
.kol-card .followers { font: 700 12px/1 var(--font-display); color: var(--ggg-active-orange); letter-spacing: 0.06em; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1.5px solid var(--color-border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  font: 800 18px/1.3 var(--font-display);
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--ggg-soft-milk);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  font: 700 18px var(--font-display);
  transition: transform 200ms, background 200ms;
}
.faq-item[open] .plus { transform: rotate(45deg); background: var(--ggg-active-orange); color: #fff; }
.faq-item .body { padding-top: 12px; font: 400 15px/1.6 var(--font-body); color: var(--color-fg-muted); max-width: 680px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--color-fg); color: #fff;
  padding: 64px 0 32px;
  margin-top: 64px;
}
.footer .row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer .brand { display: flex; flex-direction: column; gap: 16px; }
.footer .brand img { width: 140px; }
.footer .brand p { font: 400 13px/1.55 var(--font-body); color: rgba(255,255,255,0.6); max-width: 320px; }
.footer h4 { font: 800 11px/1 var(--font-display); letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); text-decoration: none; font: 400 14px var(--font-body); }
.footer ul a:hover { color: #fff; }
.footer .legal { padding-top: 24px; display: flex; justify-content: space-between; font: 400 12px var(--font-body); color: rgba(255,255,255,0.45); }

/* sparkle SVG glyph */
.sparkle-glyph { display: inline-block; width: 1em; height: 1em; fill: currentColor; vertical-align: middle; }

/* ============ FEATURED STORIES Â· pull quotes from KOLs ============ */
.stories-section { padding: 96px 0; }
.stories-help {
  max-width: 320px;
  font: 500 14px/1.55 var(--font-body);
  color: var(--color-fg-muted);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.story-card {
  position: relative;
  border-radius: 28px;
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  grid-column: span 2;
}
.story-card.big {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 580px;
  padding: 40px;
}
.story-quote-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.7;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.95;
}
.story-card.big .story-quote-mark { font-size: 160px; }
.story-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.story-card.big .story-quote {
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: auto;
}
.story-meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.story-avatar {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font: 900 14px/1 var(--font-display);
  letter-spacing: 0.04em;
}
.story-card.big .story-avatar { width: 56px; height: 56px; font-size: 18px; }
.story-author { flex: 1; min-width: 0; }
.story-name {
  font: 800 14px/1.2 var(--font-display);
  letter-spacing: -0.005em;
}
.story-role {
  font: 500 12px/1.3 var(--font-body);
  opacity: 0.78;
  margin-top: 2px;
}
.story-handle {
  font: 700 11px/1 var(--font-display);
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 5px;
}
.story-spark {
  font-size: 18px;
  color: var(--accent);
  flex: none;
}

@media (max-width: 1080px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card, .story-card.big { grid-column: span 2; grid-row: auto; min-height: 240px; }
  .story-card.big { min-height: 360px; }
}

/* ============ XÃ€I Xá»ŠN CLUB ============ */
.xxc-section { padding: 24px 0 80px; }

/* ---- compact community info box (secondary) ---- */
.xxc-mini {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255, 211, 0, 0.16), transparent 55%),
    linear-gradient(180deg, var(--ggg-cobalt-core), #00337C);
  color: #fff;
  border-radius: 24px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}
.xxc-mini-qrcol {
  flex: none;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.xxc-mini-qr {
  flex: none;
  width: 120px; height: 120px;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 24, 60, 0.32);
}
.xxc-mini-qr img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(1.22);
  border-radius: 2px;
}
.xxc-scan-cta {
  font: 800 12px/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ggg-ink, #0b2a6b);
  background: var(--ggg-lemon-spark);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 24, 60, 0.28);
}
.xxc-mini-body { min-width: 0; }
.xxc-mini-h {
  font: 900 22px/1.2 var(--font-display);
  letter-spacing: -0.01em;
  margin: 8px 0 6px;
  text-wrap: balance;
}
.xxc-mini-lead {
  font: 400 14px/1.5 var(--font-body);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 12px;
  max-width: 52ch;
}
.xxc-mini-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.xxc-mini-chips span {
  font: 600 12px/1 var(--font-body);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 12px;
  border-radius: 999px;
}
.xxc-mini-cta {
  flex: none;
  display: flex; flex-direction: column; gap: 4px;
  text-align: right;
  max-width: 180px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.xxc-mini-cap {
  font: 800 13px/1.3 var(--font-display);
  letter-spacing: 0.02em;
  color: var(--ggg-lemon-spark);
}
.xxc-mini-note {
  font: 400 11px/1.45 var(--font-body);
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 860px) {
  .xxc-mini { grid-template-columns: auto 1fr; gap: 24px; }
  .xxc-mini-cta {
    grid-column: 1 / -1;
    text-align: left; max-width: none;
    padding-left: 0; border-left: none;
    padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.16);
    flex-direction: row; gap: 10px; align-items: baseline;
  }
}

.xxc-card {
  background: var(--ggg-cobalt-core);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 211, 0, 0.18), transparent 50%),
    linear-gradient(180deg, var(--ggg-cobalt-core), #00337C);
  color: #fff;
  border-radius: 40px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.xxc-card::before {
  /* corner sparkle */
  content: "âœ¦";
  position: absolute; top: 28px; right: 36px;
  font: 900 28px/1 var(--font-display);
  color: var(--ggg-lemon-spark);
  opacity: 0.75;
}
.xxc-eyebrow {
  font: 800 12px/1 var(--font-display);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ggg-lemon-spark);
}
.xxc-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 16px 0 18px;
}
.xxc-lead {
  font: 400 17px/1.55 var(--font-body);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0;
}
.xxc-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.xxc-list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.xxc-bullet {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--ggg-active-orange);
  display: flex; align-items: center; justify-content: center;
  font: 900 14px/1 var(--font-display);
  letter-spacing: -0.02em;
}
.xxc-list li > div { display: flex; flex-direction: column; gap: 3px; }
.xxc-list strong {
  font: 800 15px/1.2 var(--font-display);
  letter-spacing: 0.02em;
}
.xxc-list span {
  font: 400 14px/1.45 var(--font-body);
  color: rgba(255,255,255,0.72);
}

/* QR */
.xxc-right { display: flex; justify-content: center; }
.xxc-qr {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  width: 260px;
  text-align: center;
  color: var(--color-fg);
  box-shadow: 0 24px 60px rgba(0, 24, 60, 0.4);
}
.xxc-qr-frame {
  position: relative;
  background: #fff;
  border: 6px solid var(--color-fg);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 14px;
}
.xxc-qr-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(25, 1fr);
  gap: 0;
  aspect-ratio: 1 / 1;
}
.xxc-qr-grid > span {
  display: block;
  background: #fff;
}
.xxc-qr-grid > span.on {
  background: var(--color-fg);
}
.xxc-qr-marker {
  position: absolute;
  width: 28%; height: 28%;
  background: var(--color-fg);
  border: 6px solid #fff;
  outline: 4px solid var(--color-fg);
  box-sizing: border-box;
}
.xxc-qr-marker.tl { top: 0; left: 0; }
.xxc-qr-marker.tr { top: 0; right: 0; }
.xxc-qr-marker.bl { bottom: 0; left: 0; }
.xxc-qr-logo {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font: 900 13px/1 var(--font-display);
  letter-spacing: 0.04em;
  color: var(--color-fg);
  border: 2px solid var(--color-fg);
}
.xxc-qr-cap {
  font: 600 14px/1.4 var(--font-body);
  margin-bottom: 8px;
}
.xxc-qr-cap strong {
  font: 900 16px/1.2 var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ggg-active-orange);
}
.xxc-qr-note {
  font: 500 11px/1.4 var(--font-body);
  color: var(--color-fg-muted);
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .xxc-card { grid-template-columns: 1fr; padding: 40px; gap: 36px; }
}

/* ============ MECHANISMS Â· interactive 3-mechanism showcase ============ */
.mech-section {
  background: linear-gradient(180deg, #FAFAFA, #FFFFFF);
  border-radius: 40px;
  margin: 0 24px;
  padding-left: 0; padding-right: 0;
}
.mech-section .container { padding-left: 32px; padding-right: 32px; }
.mech-help {
  font: 500 14px/1.5 var(--font-body);
  color: var(--color-fg-muted);
  max-width: 260px;
}
.mech-help strong { color: var(--ggg-active-orange); }

.mech-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: stretch;
}

/* stage on the left */
.mech-stage {
  position: relative;
  z-index: 2;
  background: var(--ggg-cobalt-core);
  background: radial-gradient(140% 90% at 50% 20%, var(--ggg-energetic-blue), var(--ggg-cobalt-core) 60%, #001E5C 100%);
  border-radius: 32px;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.mech-stage-bg {
  position: absolute; inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.mech-aura {
  position: absolute;
  inset: 10% 25%;
  background: radial-gradient(circle, var(--accent), transparent 60%);
  filter: blur(40px);
  opacity: 0.55;
  transition: background 320ms ease, opacity 320ms;
  pointer-events: none;
}
.mech-bottle {
  position: relative;
  z-index: 2;
  max-height: 90%;
  max-width: 60%;
  filter: drop-shadow(0 30px 50px rgba(0, 24, 60, 0.55));
  transform: rotate(-4deg);
  transition: transform 600ms var(--ease-out);
}

.mech-hotspot {
  position: absolute;
  z-index: 3;
  width: 48px; height: 48px;
  border: 0; padding: 0; cursor: pointer;
  background: transparent;
  transform: translate(-50%, -50%);
  --accent: var(--ggg-active-orange);
}
.mech-hotspot .ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.2;
  transform: scale(1);
  transition: transform 320ms var(--ease-out), opacity 320ms;
}
.mech-hotspot .dot {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  border-radius: 999px;
  background: #fff;
  color: var(--color-fg);
  font: 900 14px/1 var(--font-display);
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(0, 24, 60, 0.4);
  transition: transform 200ms var(--ease-snap), background 200ms, color 200ms;
}
.mech-hotspot.on .dot {
  background: var(--accent);
  color: #fff;
  transform: scale(1.18);
}
.mech-hotspot.on .ring {
  animation: mech-pulse 1.6s ease-out infinite;
}
@keyframes mech-pulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  100% { transform: scale(2.4); opacity: 0;    }
}
.hotspot-label {
  position: absolute;
  top: 50%; left: calc(100% + 12px); right: auto;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  color: var(--color-fg);
  font: 800 10px/1 var(--font-display);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 11px; border-radius: 999px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms;
  box-shadow: 0 4px 14px rgba(0, 24, 60, 0.25);
}
.mech-hotspot.on .hotspot-label,
.mech-hotspot:hover .hotspot-label { opacity: 1; }

/* panel on the right */
.mech-panel { display: flex; flex-direction: column; gap: 18px; }
.mech-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mech-tab {
  --tab-accent: var(--ggg-active-orange);
  display: flex; align-items: center; gap: 12px;
  background: var(--color-bg-muted);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms, background 180ms, transform 180ms;
}
.mech-tab:hover { border-color: var(--color-fg); }
.mech-tab.on {
  border-color: var(--tab-accent);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 24, 60, 0.08);
  transform: translateY(-2px);
}
.mech-tab .t-num {
  font: 900 18px/1 var(--font-display);
  color: var(--tab-accent);
  letter-spacing: -0.02em;
}
.mech-tab .t-name {
  font: 800 13px/1.2 var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-fg);
}

.mech-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 24px;
  padding: 28px;
  flex: 1;
  animation: mech-card-in 360ms var(--ease-out);
}
@keyframes mech-card-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mech-card-vis {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #161213, #0A0808);
  border-radius: 16px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 232px;
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 -30px 60px rgba(0,0,0,0.4);
}
.mech-card-vis::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(0,0,0,0.45));
  pointer-events: none;
}
.mech-card-vis.viz-flux {
  background:
    radial-gradient(90% 70% at 50% 60%, rgba(255,255,255,0.05), transparent 70%),
    linear-gradient(180deg, #0B0E16, #060608);
}
.mech-card-vis .mech-visual { position: relative; z-index: 1; width: 100%; height: auto; max-height: 216px; }

/* ---- Frame option A: SQUARE (animation enlarged, snug, balanced) ---- */
.mech-card.frame-square { grid-template-columns: 360px 1fr; align-items: center; }
.mech-card.frame-square .mech-card-vis { aspect-ratio: 1 / 1; min-height: 0; padding: 14px; }
.mech-card.frame-square .mech-card-vis .mech-visual { max-height: 100%; width: 100%; }

/* ---- Frame option B: PORTRAIT (animation redrawn to fill a tall frame) ---- */
.mech-card.frame-portrait { grid-template-columns: 312px 1fr; align-items: stretch; }
.mech-card.frame-portrait .mech-card-vis { min-height: 416px; padding: 12px; }
.mech-card.frame-portrait .mech-card-vis .mech-visual { max-height: 100%; height: 100%; width: 100%; }
.mech-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.mech-chip {
  font: 800 10px/1 var(--font-display);
  letter-spacing: 0.16em; text-transform: uppercase;
  background: color-mix(in srgb, var(--accent, var(--ggg-active-orange)) 20%, #fff);
  color: color-mix(in srgb, var(--accent, var(--ggg-active-orange)) 80%, #241500);
  border: 1px solid color-mix(in srgb, var(--accent, var(--ggg-active-orange)) 42%, #fff);
  padding: 7px 11px; border-radius: 999px;
}
.mech-title {
  font: 900 28px/1.1 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.mech-headline {
  font: 700 17px/1.35 var(--font-body);
  color: var(--color-fg);
  margin: 0 0 10px;
}
.mech-body {
  font: 400 14px/1.6 var(--font-body);
  color: var(--color-fg-muted);
  margin: 0;
}

@media (max-width: 1080px) {
  .mech-grid { grid-template-columns: 1fr; }
  .mech-stage { min-height: 460px; }
  .mech-card,
  .mech-card.frame-square,
  .mech-card.frame-portrait { grid-template-columns: 1fr; }
}

/* ============ CANH Äá»€U (justify) - cÃ¡c Ä‘oáº¡n vÄƒn báº£n mÃ´ táº£ ============ */
.hero p.lead,
.section .lead,
.smart p,
.jd-text p,
.jd-text .jd-note,
.form-side p,
.rw .rw-intro,
.rw-blurb,
.faq-item .body,
.mech-body,
.mech-help,
.stories-help,
.xxc-lead,
.xxc-mini-lead,
.footer .brand p {
  text-align: justify;
  text-justify: inter-word;
  text-wrap: auto;
}

/* ============================================================
   FACE ZONE PICKER (form step 01) + SKIN ANALYSIS (success)
   ============================================================ */
.fzp {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  grid-template-areas:
    "seg   zones"
    "stage zones"
    "sev   zones";
  grid-template-rows: auto auto 1fr;
  gap: 14px 28px;
  align-items: start;
}
/* desktop: wrapper is transparent so seg/stage/sev keep their original grid areas */
.fzp-pinhead { display: contents; }
.fzp-seg { grid-area: seg; justify-self: center; }
.fzp-stage { grid-area: stage; max-width: 100%; }
.fzp-sev { grid-area: sev; }
.fzp-zones { grid-area: zones; }

/* model selector (Ná»¯ / Nam / MÃ¨o) */
.fzp-seg {
  display: inline-flex; align-self: center; gap: 4px;
  background: var(--ggg-soft-milk); border: 1.5px solid #ECECEC;
  border-radius: 999px; padding: 4px;
}
.fzp-seg-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  border: none; background: transparent; color: var(--color-fg-muted);
  font: 700 13px/1 var(--font-display); padding: 9px 18px; border-radius: 999px;
}
.fzp-seg-btn svg { width: 16px; height: 16px; }
.fzp-seg-btn.on { background: var(--color-fg); color: #fff; }

/* face stage */
.fzp-stage {
  position: relative; width: 100%; max-width: 340px; margin: 0 auto;
  aspect-ratio: 1 / 1; border-radius: 22px; overflow: hidden;
  background: radial-gradient(125% 120% at 50% 22%, #FBF9F7 0%, #EFE8E1 78%, #E4DAD1 100%);
  box-shadow: 0 10px 30px rgba(31,29,29,0.10);
}
.fzp-model { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.fzp-overlay { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.fzp-overlay > g[ref], .fzp-overlay > g:first-of-type { pointer-events: none; }
.fzp-marks { pointer-events: all; }

.fzp-mark { cursor: pointer; }
.fzp-mark .fzp-ring { fill: none; stroke: var(--ggg-active-orange); stroke-width: 2.5; opacity: 0; transform-box: fill-box; transform-origin: center; }
.fzp-mark.on .fzp-ring { animation: fzPing 1.8s ease-out infinite; }
@keyframes fzPing { 0% { opacity: .8; transform: scale(.45);} 75%,100% { opacity: 0; transform: scale(1.5);} }
.fzp-mark .fzp-dot { fill: #fff; stroke: var(--ggg-active-orange); stroke-width: 3; r: 9; filter: drop-shadow(0 1px 3px rgba(31,29,29,0.35)); }
.fzp-mark.hov .fzp-dot { r: 11; }
.fzp-mark.on .fzp-dot { fill: var(--ggg-active-orange); stroke: #fff; r: 12; }
.fzp-mark .fzp-lbl {
  font: 700 26px/1 var(--font-display); fill: #fff; text-anchor: middle; paint-order: stroke;
  stroke: rgba(31,29,29,0.55); stroke-width: 5px; opacity: 0; transition: opacity 140ms;
}
.fzp-mark.hov .fzp-lbl, .fzp-mark.on .fzp-lbl { opacity: 1; }

/* severity */
.fzp-sev { display: flex; align-items: center; justify-content: center; gap: 10px; }
.fzp-sev-lab { font: 800 10px/1 var(--font-display); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-fg-muted); }
.fzp-sev-seg { display: inline-flex; gap: 4px; background: var(--ggg-soft-milk); border: 1.5px solid #ECECEC; border-radius: 999px; padding: 4px; }
.fzp-sev-btn { border: none; background: transparent; cursor: pointer; color: var(--color-fg-muted); font: 700 13px/1 var(--font-display); padding: 7px 16px; border-radius: 999px; }
.fzp-sev-btn.on { background: var(--ggg-active-orange); color: #fff; }

/* zone accordion */
.fzp-zones { display: flex; flex-direction: column; gap: 8px; }
.fzp-zone { border: 1.5px solid #ECECEC; background: #fff; border-radius: 16px; overflow: hidden; }
.fzp-zone.has-on { border-color: var(--ggg-active-orange); box-shadow: 0 0 0 3px rgba(255,102,0,0.09); }
.fzp-zone-top { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 12px 14px; font: inherit; color: inherit; }
@media (hover: hover) {
  .fzp-zone-top:hover { background: var(--ggg-soft-milk); }
}
.fzp-num { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font: 700 12px/1 var(--font-display); background: var(--ggg-soft-milk); color: var(--color-fg-muted); border: 1.5px solid #ECECEC; }
.fzp-zone.has-on .fzp-num { background: var(--ggg-active-orange); color: #fff; border-color: var(--ggg-active-orange); }
.fzp-zbody { flex: 1; min-width: 0; }
.fzp-nm { display: block; font: 700 16px/1.2 var(--font-display); }
.fzp-cnt { display: block; font: 400 12px/1.3 var(--font-body); color: var(--color-fg-muted); margin-top: 1px; }
.fzp-cnt.on { color: var(--ggg-active-orange); font-weight: 700; }
.fzp-chev { flex: none; width: 18px; height: 18px; color: var(--color-fg-muted); transition: transform 200ms; }
.fzp-zone.open .fzp-chev { transform: rotate(180deg); }
.fzp-issues { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 260ms ease; }
.fzp-zone.open .fzp-issues { grid-template-rows: 1fr; }
.fzp-issues-inner { overflow: hidden; }
.fzp-issue-wrap { display: flex; flex-wrap: wrap; gap: 7px; padding: 2px 14px 14px; }
.fzp-issue {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  border: 1.5px solid #ECECEC; background: #fff; border-radius: 999px;
  padding: 7px 13px 7px 11px; font: 500 14px/1 var(--font-body); color: var(--color-fg);
}
@media (hover: hover) {
  .fzp-issue:hover { border-color: #D9C4B8; background: var(--ggg-soft-milk); }
}
.fzp-issue.on { border-color: var(--ggg-active-orange); background: #FFE9DC; color: #B5460A; }
.fzp-ic { width: 16px; height: 16px; border-radius: 50%; border: 1.6px solid currentColor; display: grid; place-items: center; opacity: .5; }
.fzp-ic svg { width: 11px; height: 11px; opacity: 0; }
.fzp-issue.on .fzp-ic { opacity: 1; background: var(--ggg-active-orange); border-color: var(--ggg-active-orange); color: #fff; }
.fzp-issue.on .fzp-ic svg { opacity: 1; }

/* ---- skin analysis (success screen) ---- */
.fzp-analysis { width: 100%; text-align: left; margin-top: 8px; }
.fzp-an-empty { text-align: center; color: var(--color-fg-muted); font: 500 15px/1.6 var(--font-body); padding: 20px; }
.fzp-an-head { text-align: center; margin-bottom: 20px; }
.fzp-an-eyebrow { font: 800 11px/1 var(--font-display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ggg-active-orange); }
.fzp-an-title { font: 800 24px/1.1 var(--font-display); letter-spacing: -0.02em; margin: 8px 0 6px; }
.fzp-an-sum { font: 400 14px/1.55 var(--font-body); color: var(--color-fg-muted); max-width: 52ch; margin: 0 auto; text-wrap: pretty; }

.fzp-an-grid { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: start; }
.fzp-an-aside { display: flex; flex-direction: column; gap: 14px; align-items: center; position: sticky; top: 24px; }
.fzp-an-recap { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1/1; border-radius: 22px; overflow: hidden; background: radial-gradient(125% 120% at 50% 22%, #FBF9F7 0%, #EFE8E1 78%, #E4DAD1 100%); box-shadow: 0 8px 22px rgba(31,29,29,0.10); }
.fzp-an-meta { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fzp-an-meta span { font: 700 11px/1 var(--font-display); letter-spacing: 0.04em; color: var(--color-fg-muted); background: var(--ggg-soft-milk); border: 1px solid #ECECEC; border-radius: 999px; padding: 7px 12px; }

.fzp-an-cards { display: flex; flex-direction: column; gap: 12px; }
.fzp-rcard { background: #fff; border: 1.5px solid #ECECEC; border-radius: 18px; padding: 18px 20px; }
.fzp-rcard-top { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.fzp-rzone { font: 700 10px/1 var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; color: #C24E00; background: color-mix(in srgb, var(--ggg-active-orange) 10%, #fff); border: 1px solid color-mix(in srgb, var(--ggg-active-orange) 25%, #fff); padding: 5px 9px; border-radius: 999px; }
.fzp-rissue { font: 800 19px/1.1 var(--font-display); margin: 0; }
.fzp-rblock { display: grid; grid-template-columns: 108px 1fr; gap: 12px; padding: 9px 0; border-top: 1px dashed #ECECEC; }
.fzp-rblock:first-of-type { border-top: none; }
.fzp-rlab { font: 700 10px/1.3 var(--font-display); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-fg-muted); padding-top: 2px; }
.fzp-rblock p { margin: 0; font: 400 14px/1.6 var(--font-body); color: var(--color-fg); text-wrap: pretty; }
.fzp-rprods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.fzp-rprod { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; background: var(--ggg-soft-milk); border: 1px solid #ECECEC; border-radius: 14px; padding: 8px 14px 8px 8px; transition: border-color 140ms, background 140ms; }
.fzp-rprod:hover { border-color: var(--ggg-active-orange); background: #fff; }
.fzp-rprod img { width: 38px; height: 38px; object-fit: contain; }
.fzp-rpinfo { display: flex; flex-direction: column; line-height: 1.25; }
.fzp-rpname { font: 700 14px/1.2 var(--font-display); }
.fzp-rpcat { font: 400 12px/1.2 var(--font-body); color: var(--color-fg-muted); }

.success-analysis { width: 100%; margin-top: 30px; padding-top: 26px; border-top: 1px dashed #ECECEC; text-align: left; }

/* ---------- ProvincePicker combobox (chá»n tá»‰nh/thÃ nh) ---------- */
.combo { position: relative; }
.combo-input-wrap { position: relative; }
.combo-ic { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--color-fg-subtle); font-size: 18px; pointer-events: none; }
.combo .input { padding-left: 40px; padding-right: 40px; }
.combo-clear { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: none; background: var(--color-bg-muted, #F1F1F1); color: var(--color-fg-muted); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 15px; display: none; align-items: center; justify-content: center; }
.combo-clear.show { display: flex; }
.combo-clear:hover { background: #ECECEC; color: var(--color-fg); }
.combo .menu { position: absolute; left: 0; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 30; max-height: 300px; overflow-y: auto; overflow-x: hidden; padding: 6px; display: none; }
.combo .menu.open { display: block; }
.combo .opt { width: 100%; text-align: left; display: flex; align-items: center; gap: 11px; border: none; background: none; cursor: pointer; font-family: var(--font-body); font-size: var(--fs-16); color: var(--color-fg); padding: 11px 12px; border-radius: var(--radius-sm); line-height: 1.2; }
.combo .opt:hover, .combo .opt.hi { background: #EAF6FF; }
.combo .opt.hi { box-shadow: inset 0 0 0 1.5px rgba(0,153,255,0.35); }
.combo .opt .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-brand); flex: none; }
.combo .opt.is-city .dot { background: var(--color-brand-accent, var(--ggg-active-orange)); }
.combo .opt .nm { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: var(--fw-medium); }
.combo .opt .nm b { background: rgba(255,211,0,0.5); border-radius: 3px; font-weight: var(--fw-bold); padding: 0 1px; }
.combo .opt .kind { flex: none; margin-left: auto; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--color-fg-subtle); font-family: var(--font-mono); }
.combo .menu-empty { padding: 16px 12px; color: var(--color-fg-subtle); font-size: var(--fs-14); }
.combo .menu-head { padding: 8px 12px 4px; font-size: 10px; letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--color-fg-subtle); font-family: var(--font-mono); }

/* ---------- VietnamMapView (báº£n Ä‘á»“ chá»n tá»‰nh) ---------- */
.vnmap-panel { position: relative; max-width: 380px; margin: 4px auto 0; background: linear-gradient(180deg, #EAF2F8 0%, #F2F7FB 100%); border: 1px solid var(--color-border); border-radius: var(--radius-lg, 16px); padding: 8px; overflow: hidden; }
.vnmap { display: block; width: 100%; aspect-ratio: 5 / 6; opacity: 0; transition: opacity .5s var(--ease-out); }
.vnmap.ready { opacity: 1; }
.vnmap-err { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; text-align: center; padding: 28px; font-size: var(--fs-13, 13px); line-height: 1.5; color: var(--color-fg-muted); background: #F2F7FB; }
.vnmap.err ~ .vnmap-err { display: flex; }
.vnmap.err ~ .vnmap-legend, .vnmap.err ~ .vnmap-status { display: none; }

.vnmap .sea-label { font-family: var(--font-display); fill: #9FCDEA; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.vnmap .country { fill: #DCEFFA; stroke: #B7DCF1; stroke-width: 1.1; stroke-linejoin: round; }
.vnmap .island-shape { fill: #DCEFFA; stroke: #B7DCF1; stroke-width: 1; }
.vnmap .archi text, .vnmap .pq-label { font-family: var(--font-body); font-size: 12.5px; fill: var(--color-fg-muted); font-weight: 600; }
.vnmap .archi .sub { font-size: 10px; fill: var(--color-fg-subtle); font-weight: 500; }
.vnmap .archi-frame { fill: rgba(255,255,255,0.5); stroke: #B7DCF1; stroke-width: 1; stroke-dasharray: 3 3; }
.vnmap .archi-cap { font-family: var(--font-mono); font-size: 8.5px; fill: var(--color-fg-subtle); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.vnmap .archi-inset text { font-size: 11px; }
.vnmap .archi-inset .sub { font-size: 9px; }

.vnmap .unit { cursor: pointer; }
.vnmap .unit .cell { fill: #CBE6F7; stroke: #7FB8DE; stroke-width: 0.6; stroke-linejoin: round; stroke-linecap: round; transition: fill .2s var(--ease-out), stroke .2s var(--ease-out); }
.vnmap .unit:hover .cell { fill: #AED7F2; stroke: #5BA3D4; }
.vnmap .unit.city .cell { fill: #CFE2F6; }
.vnmap .unit.city:hover .cell { fill: #FFDCC0; stroke: #F4B98E; }
.vnmap .unit-label { font-family: var(--font-body); font-size: 10.5px; fill: var(--color-fg-muted); font-weight: 600; opacity: 0; pointer-events: none; paint-order: stroke; stroke: rgba(255,255,255,0.9); stroke-width: 2.4px; transition: opacity .15s var(--ease-out); }
.vnmap .unit:hover .unit-label { opacity: 1; }
.vnmap .unit.sel .cell { fill: var(--color-brand); stroke: var(--color-brand); }
.vnmap .unit.sel.city .cell { fill: var(--color-brand-accent, var(--ggg-active-orange)); stroke: var(--color-brand-accent, var(--ggg-active-orange)); }
.vnmap .unit.sel { filter: drop-shadow(0 0 5px rgba(0,153,255,0.65)); animation: vnmapPulse 1.9s var(--ease-in-out) infinite; }
.vnmap .unit.sel.city { filter: drop-shadow(0 0 5px rgba(255,102,0,0.6)); }
.vnmap .unit.sel .unit-label { opacity: 1; fill: #fff; font-weight: 800; font-family: var(--font-display); font-size: 12px; stroke: rgba(0,0,0,0.18); stroke-width: 0.6px; }
@keyframes vnmapPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.82; } }

.vnmap-legend { position: absolute; left: 10px; right: auto; top: 47%; display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; color: var(--color-fg-muted); background: rgba(255,255,255,0.8); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 8px 10px; backdrop-filter: blur(3px); white-space: nowrap; }
.vnmap-legend .row { display: flex; align-items: center; gap: 7px; }
.vnmap-legend .sw { width: 9px; height: 9px; border-radius: 50%; border: 1.4px solid var(--color-brand); }
.vnmap-legend .sw.city { border-color: var(--color-brand-accent, var(--ggg-active-orange)); }

.vnmap-status { position: absolute; left: 10px; top: 60%; bottom: auto; right: auto; max-width: 62%; display: flex; pointer-events: none; }
.vnmap-live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: var(--fs-14); color: var(--color-fg-muted); background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 7px 14px; box-shadow: var(--shadow-sm); }
.vnmap-live b { font-family: var(--font-display); color: var(--color-fg); }
.vnmap-live .led { width: 9px; height: 9px; border-radius: 50%; background: var(--color-fg-subtle); flex: none; }
.vnmap-live.on .led { background: var(--color-brand); box-shadow: 0 0 0 4px rgba(0,153,255,0.18); }
.vnmap-live.hint .led { background: var(--color-brand-deep, var(--color-brand)); }

/* ---------- Gá»£i Ã½ "gáº§n giá»‘ng nháº¥t" (brand / tá»‰nh / phÆ°á»ng) ---------- */
.best-hint, .menu-suggest {
  display: flex; align-items: center; gap: 8px;
  font: 500 13px/1.3 var(--font-body); color: var(--color-fg-muted);
  background: none; border: none; text-align: left; cursor: pointer;
}
.best-hint { padding: 1px 0; margin-top: -2px; width: 100%; }
.best-hint .bh-ic, .menu-suggest .ms-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; border-radius: 5px; flex: none;
  background: rgba(0,153,255,0.12); color: var(--color-brand); font-size: 12px;
}
.best-hint .bh-txt, .menu-suggest .ms-txt { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.best-hint b, .menu-suggest b { color: var(--color-fg); font-weight: 700; }
.best-hint .bh-kbd, .menu-suggest .ms-kbd {
  margin-left: auto; flex: none; font: 600 10.5px/1 var(--font-mono);
  border: 1px solid var(--color-border); border-radius: 5px; padding: 4px 7px;
  color: var(--color-fg-subtle); background: var(--color-bg-muted, #F4F4F4);
}
.best-hint:hover b, .menu-suggest:hover b { color: var(--color-brand); }
/* footer gá»£i Ã½ bÃªn trong menu xá»• xuá»‘ng */
.menu-suggest { width: 100%; padding: 10px 12px; border-top: 1px solid var(--color-border); background: #F6FBFE; }
.menu-suggest:hover { background: #EAF6FF; }
/* menu Ä‘á»§ rá»™ng Ä‘á»ƒ Ä‘á»c gá»£i Ã½ dÃ¹ Ã´ nháº­p háº¹p (náº±m trong field-row 2 cá»™t) */
.combo .menu, .brand-menu { min-width: 248px; }

/* ---------- BÆ°á»›c 5: step-head náº±m cá»™t trÃ¡i, báº£n Ä‘á»“ cá»™t pháº£i ---------- */
/* map cÄƒn Ä‘á»‰nh ngang title má»™t cÃ¡ch tá»± nhiÃªn, khÃ´ng Ä‘Ã¨ chá»¯. */
.step-grid--contact { grid-template-columns: 1fr 0.92fr; align-items: stretch; }
.step-grid--contact .step-col--map { margin-top: 16px; }
.step-grid--contact .step-col--map > .field { margin-bottom: 0; height: 100%; }
.step-grid--contact .step-col--map .vnmap-panel { max-width: 100%; margin: 8px 0 0; }

/* ---------- Mobile: má»—i bÆ°á»›c gá»n trong 1 mÃ n, map xuá»‘ng dÆ°á»›i ---------- */
@media (max-width: 760px) {
  .step-grid, .step-grid--face, .step-grid--contact { grid-template-columns: 1fr; gap: 14px; }
  .step-grid--contact .step-col--map { margin-top: 2px; }
  .step-grid--contact .step-col--map > .field > label { display: block; }
  .step-grid--contact .step-col--map .vnmap-panel { max-width: 280px; margin: 6px auto 0; }
  .field { margin-bottom: 10px; gap: 6px; }
  .step-head { margin-bottom: 14px; }
  .step-head h3 { font-size: 22px; }
  .best-hint, .menu-suggest { font-size: 12.5px; }
  /* map gá»n hÆ¡n trÃªn mobile Ä‘á»ƒ bá»›t cuá»™n á»Ÿ bÆ°á»›c 5 */
  .vnmap-panel .vnmap-legend { padding: 6px 8px; font-size: 9.5px; }
}
@media (max-width: 440px) {
  .field-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ===== Featured stories: participant name ticker (Part 2) ===== */
.fs-ticker-label {
  margin-top: 40px;
  font: 800 12px/1 var(--font-display);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ggg-active-orange);
}
.fs-ticker {
  overflow: hidden;
  margin-top: 14px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.fs-ticker-row {
  display: inline-flex; align-items: center;
  white-space: nowrap; width: max-content;
  animation: scroll 38s linear infinite;
}
.fs-ticker-name {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 22px;
  font: 800 16px/1 var(--font-display);
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--color-fg);
}
.fs-ticker-name b { color: var(--ggg-active-orange); font-weight: 900; }

/* ============================================================
   MOBILE OPTIMIZATION (â‰¤640px) â€” G.G.G Skin Stories phone view
   Smart approach: no overlaps, no sideways scroll, interactive
   zones kept compact, minimalist spacing on-brand.
   ============================================================ */
@media (max-width: 640px) {
  html, body { max-width: 100%; overflow-x: clip; }
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }

  /* ---------- Header: bigger logo, drop inline nav on phones ---------- */
  .header .bar { gap: 12px; height: 60px; }
  .header img.logo { height: 32px; }
  .header nav { display: none; }

  /* ---------- HERO ---------- */
  .hero { border-radius: 0 0 28px 28px; }
  /* stack + reorder: eyebrow â†’ h1 â†’ para A â†’ product+counter â†’ para B â†’ CTAs â†’ trust */
  .hero .inner { display: flex; flex-direction: column; gap: 0; padding: 30px 0 36px; }
  .hero .copy { display: contents; }
  .hero .eyebrow { order: 1; align-self: flex-start; }
  .hero h1 { order: 2; }
  .hero p.lead-a { order: 3; }
  .hero-visual { order: 4; }
  .hero p.lead-b { order: 5; }
  .hero .ctas { order: 6; }
  .hero .trust { order: 7; }

  .hero .eyebrow { font-size: 10.5px; letter-spacing: 0.14em; padding: 8px 14px; gap: 6px;
                   flex-wrap: wrap; justify-content: flex-start; text-align: left; row-gap: 1px; }
  .hero h1 { font-size: clamp(38px, 12vw, 50px); line-height: 1.06; margin: 16px 0 16px; }
  .hero p.lead-a { font-size: 15.5px; line-height: 1.5; margin: 0 0 14px; max-width: 100%; }
  .hero p.lead-b { font-size: 15.5px; line-height: 1.5; margin: 22px 0 18px; max-width: 100%; }
  .hero .ctas { gap: 10px; }
  .hero .ctas .btn { padding: 13px 20px; font-size: 12px; }
  .hero .trust { margin-top: 14px; font-size: 12px; }

  /* 2nd part of eyebrow / smart tag drops to its own line, left-aligned */
  .nl-mobile { display: block; flex-basis: 100%; text-align: left; }

  /* hero decorative sparkles: move the headline one into the empty zone */
  .hero .hero-spark-1 { top: 196px !important; left: 60% !important; }
  .hero .hero-spark-2 { display: none !important; }

  /* hero product scene: everything stays inside the box, below the text */
  .hero-visual { width: 100%; height: 470px; margin-top: 8px; }
  .hero-visual .new-badge { width: 84px; height: 84px; top: 10px; right: 40px; }
  .hero-visual .new-badge-inner strong { font-size: 12px; }
  .hero-visual img.bottle { bottom: 158px; max-height: 290px; }
  .hero-visual--wide img.bottle { bottom: 172px; max-height: 200px; height: auto; }
  .hero-visual .product-stack { left: 4%; right: 4%; }
  .hero-visual .product-plinth { min-height: 96px; padding: 12px 16px; }
  .hero-visual .plinth-eyebrow { font-size: 9px; margin-bottom: 6px; padding: 5px 10px; }
  .hero-visual .plinth-name { font-size: 20px; white-space: normal; }
  .hero-visual .plinth-meta { font-size: 11px; margin-top: 6px; }
  .counter-card { padding: 12px 16px; gap: 12px; }
  .counter-card .big { font-size: 20px; }

  /* product benefit bubbles: back on, tucked BEHIND the bottle layer */
  .hero-visual .bubble { display: inline-block; z-index: 1; font-size: 10.5px; padding: 7px 11px; }
  .hero-visual .bubble-1 { top: 30%; left: 0; right: auto; }
  .hero-visual .bubble-2 { top: 33%; right: 1%; left: auto; }
  .hero-visual .bubble-3 { top: 52%; left: 3%; right: auto; }
  /* sáº£n pháº©m dÃ¡ng rá»™ng: nÃ© badge "Má»›i ra máº¯t" (gÃ³c pháº£i trÃªn) vÃ  khá»‘i plinth (Ä‘Ã¡y);
     ná»•i TRÆ¯á»šC sáº£n pháº©m (máº·c Ä‘á»‹nh mobile bubble náº¥p sau chai máº£nh - hÅ© rá»™ng sáº½ nuá»‘t pill) */
  .hero-visual--wide .bubble { z-index: 3; }
  .hero-visual--wide .bubble-1 { top: 3%; left: 0; }
  .hero-visual--wide .bubble-2 { top: 36%; right: 0; }
  .hero-visual--wide .bubble-3 { top: 56%; left: 3%; }

  /* ---------- Smart Active: product image first, then full-width rows ---------- */
  .smart { grid-template-columns: 1fr; padding: 30px 18px; gap: 18px; border-radius: 24px; }
  .smart > div:first-child { display: contents; }
  .smart .tag { order: 1; flex-wrap: wrap; justify-content: flex-start; text-align: left; row-gap: 1px; }
  .smart h3 { order: 2; font-size: clamp(28px, 7.5vw, 34px); margin: 12px 0; }
  .smart p { order: 3; font-size: 15px; margin: 0; }
  .smart .smart-stage { order: 4; height: 340px; }
  .smart .proofs { order: 5; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
  .smart .proof { padding: 13px 14px; }
  .smart .proof .proof-go { display: none; }
  .smart .proof--chaga { order: 1; }
  .smart .proof--cooling { order: 2; }
  .smart .proof--wonder { order: 3; }
  .smart .proof--cica { order: 4; }

  /* product-image bubbles: smaller + pushed to the edges so the product stays visible */
  .smart-stage .ss-bubble { font-size: 10px; padding: 6px 10px; gap: 5px; }
  .smart-stage .ss-bub-ic { width: 12px; height: 12px; }
  /* default (Chaga, Cica): top-right / mid-left / bottom-left */
  .smart-stage .ss-bubble:nth-child(1) { top: 14%; right: 1%; left: auto; }
  .smart-stage .ss-bubble:nth-child(2) { top: 45%; left: 1%; right: auto; }
  .smart-stage .ss-bubble:nth-child(3) { top: 72%; left: 1%; right: auto; }
  /* Cooling Mask: hug the edges */
  .smart-stage .ss-bubbles--cooling .ss-bubble:nth-child(1) { top: 12%; right: 1%; left: auto; }
  .smart-stage .ss-bubbles--cooling .ss-bubble:nth-child(2) { top: 73%; left: 1%; right: auto; }
  .smart-stage .ss-bubbles--cooling .ss-bubble:nth-child(3) { top: 47%; right: 1%; left: auto; }
  /* Wonder Glow trio: stagger vertically so they stop overlapping each other */
  .smart-stage .ss-bubbles--wonder .ss-bubble { font-size: 9.5px; padding: 5px 9px; }
  .smart-stage .ss-bubbles--wonder .ss-bubble:nth-child(1) { top: 28%; left: 0; right: auto; }
  .smart-stage .ss-bubbles--wonder .ss-bubble:nth-child(2) { top: 47%; left: 30%; right: auto; }
  .smart-stage .ss-bubbles--wonder .ss-bubble:nth-child(3) { top: 28%; right: 0; left: auto; }

  /* ---------- Mechanism ---------- */
  .mech-section .container { padding-left: 18px; padding-right: 18px; }
  .mech-grid { gap: 24px; }
  /* M1: the 01/02/03 boxes in one horizontal row */
  .mech-tabs { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mech-tab { min-width: 0; padding: 10px 6px; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
  .mech-tab .t-num { font-size: 15px; }
  .mech-tab .t-name { white-space: normal; font-size: 10px; line-height: 1.15; }  /* M4: wrap (2 lines naturally) */
  .mech-stage { min-height: 300px; }
  .mech-title { font-size: 20px; }

  /* M2: swap positions of the chips and the 01/02/03 tabs.
     Flatten the card so chips/vis/tabs/title/body share one flex flow, then reorder.
     New order: chip keyword -> animation -> tabs 01/02/03 -> title -> headline -> body */
  .mech-panel { display: flex; flex-direction: column; gap: 14px; min-height: 780px; }
  .mech-card { display: contents; }
  .mech-card-body { display: contents; }
  .mech-chips   { order: 1; margin: 0; }
  .mech-card-vis { order: 2; }
  .mech-tabs    { order: 3; margin: 0; }
  .mech-title   { order: 4; }
  .mech-headline { order: 5; }
  .mech-body    { order: 6; }

  /* shrink the 01/02/03 hotspot dots so they cover less of the product */
  .mech-stage .mech-hotspot { width: 32px; height: 32px; }
  .mech-stage .mech-hotspot .dot { font-size: 11px; }
  /* hotspot label: 2 words per line so it fills exactly 2 lines, no cut */
  .mech-stage .hotspot-label {
    font: 800 8px/1.3 var(--font-display);
    padding: 4px 9px; letter-spacing: 0.02em;
    white-space: normal; width: 104px; max-width: 104px; text-align: center;
    left: calc(100% + 5px);
  }

  /* F1: shrink the "chÆ°a dÃ¹ng hÃ£ng nÃ o" toggle so it isn't mistaken for a field */
  .chip-nobrand { flex: none; font-size: 10px; padding: 8px 12px; letter-spacing: 0.04em; align-self: flex-start; }

  /* ---------- Journey / Steps (J1): timeline + detail merged into ONE box ---------- */
  .journey .jrny {
    background: var(--ggg-soft-milk);
    border: 1.5px solid var(--color-border);
    border-radius: 22px;
    padding: 18px 16px 22px;
  }
  .journey .jrny-rail { margin-top: 10px; }
  .jrny-detail {
    grid-template-columns: 1fr; gap: 8px;
    background: none; border: 0; border-radius: 0;
    margin-top: 18px; padding: 18px 2px 0;
    border-top: 1px solid var(--color-border);
    min-height: 210px; align-content: start;
  }
  .jd-num, .jd-meta { display: none; }   /* drop the big "02" + "BÆ°á»›c 2/5" */
  .jd-text h4 { font-size: 20px; margin-top: 2px; }

  /* ---------- Form ---------- */
  .form-wrap { padding-left: 12px; padding-right: 12px; overflow: visible; }
  .form-side .perks { display: none; }                 /* K1: remove the 4 perk cards */
  .form-box { width: 100%; padding-left: 16px; padding-right: 16px; }  /* K3b: widen to outer box */
  .step-grid, .step-grid--face, .step-grid--contact { grid-template-columns: 1fr; }
  .step-col { width: 100%; }
  /* K3a + K3c: single column; pin the whole picker head (gender + face + severity)
     on an opaque white panel so the zone list scrolls cleanly behind it */
  .fzp { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
  .fzp-pinhead {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    position: sticky; top: 58px; z-index: 6;
    background: #fff;
    padding: 12px 0 14px;
    margin: 0 -16px;                         /* bleed to the form-box edges */
    padding-left: 16px; padding-right: 16px;
    box-shadow: 0 12px 14px -8px rgba(0, 16, 50, 0.16);
  }
  .fzp-stage { max-width: 300px; width: 100%; position: relative; }
  .fzp-zones { width: 100%; }

  /* ---------- Success: stack skin-analysis (model trÃªn, phÃ¢n tÃ­ch dÆ°á»›i) ----------
     TrÆ°á»›c Ä‘Ã¢y .fzp-an-grid giá»¯ "340px 1fr" trÃªn mobile â†’ cá»™t phÃ¢n tÃ­ch bá»‹ Ã©p ~0px
     / trÃ n ngoÃ i mÃ n hÃ¬nh, khÃ¡ch chá»‰ tháº¥y model + tag rá»“i tráº¯ng. */
  .fzp-an-grid { grid-template-columns: 1fr; gap: 18px; }
  .fzp-an-aside { position: static; top: auto; }
  .fzp-an-recap { max-width: 300px; }
  .fzp-an-title { font-size: 21px; }

  /* ---------- Footer ---------- */
  .footer { padding: 44px 0 26px; }
  .footer .row { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer .brand { grid-column: 1 / -1; }
  .footer .legal { flex-direction: column; gap: 6px; }

  /* ---------- Section headers: stack + left-align (title, then description) ---------- */
  .section .head-row { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
  .section .head-row > * { width: 100%; }
  .journey .head-row .btn { align-self: flex-start; }
  .rw-head .rw-intro { max-width: 100%; }

  /* ---------- Featured stories: swipe carousel (Part 1) ---------- */
  .stories-grid.stories-swipe {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin: 0 -18px;          /* let cards bleed to the screen edges */
    padding-left: 18px; padding-right: 18px;
  }
  .stories-grid.stories-swipe::-webkit-scrollbar { display: none; }
  .stories-grid.stories-swipe > .story-card,
  .stories-grid.stories-swipe > .story-card.big {
    flex: 0 0 84%;
    scroll-snap-align: center;
    margin: 0;
    min-height: 360px;
    padding: 26px;
    grid-column: auto; grid-row: auto;
  }
  /* normalize any "big" styling so every card matches */
  .stories-grid.stories-swipe > .story-card.big .story-quote { font-size: 20px; line-height: 1.3; letter-spacing: 0; }
  .stories-grid.stories-swipe > .story-card.big .story-quote-mark { font-size: 90px; }
  .fs-ticker-name { font-size: 14px; padding: 0 16px; gap: 12px; }

  /* ---------- Mechanism: hide the helper note ---------- */
  .mech-section .mech-help { display: none; }

  /* ---------- Kill the dark tap-flash on interactive controls ---------- */
  button, a, .jrny-node, .mech-tab, .proof, .mech-hotspot, .rw-rung,
  .fzp-seg-btn, .fzp-sev-btn, .fzp-zone-top, .fzp-issue {
    -webkit-tap-highlight-color: transparent;
  }
  .jrny-node:focus, .jrny-node:focus-visible { outline: none; }

  /* ---------- Rewards: equal-size tier cards (01/02/03) ---------- */
  .rw-rail { flex-direction: row; gap: 8px; }
  .rw-rung { flex: 1 1 0; min-width: 0; transform: none; padding: 12px 11px; }
  .rw-rung.on { transform: none; }
  .rw-rung-level { font-size: 9.5px; line-height: 1.25; white-space: normal; }
  .rw-rung-num { font-size: 22px; }
  /* lock the reveal panel height so the layout below doesn't jump between tiers */
  .rw-show { min-height: 860px; align-content: start; }

  /* ---------- Hero product: gentle floating motion ---------- */
  .hero-visual img.bottle { animation: ggg-bottle-float 4.5s ease-in-out infinite; }
}

@keyframes ggg-bottle-float {
  0%, 100% { transform: translateX(-50%) rotate(-4deg) translateY(0); }
  50%      { transform: translateX(-50%) rotate(-4deg) translateY(-12px); }
}

/* Custom Styles for Consent Checkboxes */
.consent-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--ggg-soft-milk, #FAFAFA);
  border: 1.5px solid #ECECEC;
  border-radius: 14px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.consent-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #D1D1D1;
  border-radius: 4px;
  background: #FFF;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 150ms ease;
}

.consent-checkbox:checked {
  background: var(--ggg-active-orange, #FF6600);
  border-color: var(--ggg-active-orange, #FF6600);
}

.consent-checkbox:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 5px;
}

.consent-label-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-fg, #1F1D1D);
}

.consent-label-text .required-star {
  color: var(--color-danger, #D81B60);
  font-weight: bold;
  margin-left: 2px;
}

/* Policy Modal Overlay */
.policy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  animation: fadeIn 200ms ease;
}

/* Policy Modal Box */
.policy-modal-box {
  background: #FFF;
  width: 100%;
  max-width: 580px;
  max-height: 80vh;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1.5px solid #ECECEC;
  animation: slideUp 250ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.policy-modal-header {
  padding: 20px 24px;
  border-bottom: 1.5px solid #ECECEC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-modal-header h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-fg, #1F1D1D);
  letter-spacing: 0.05em;
}

.policy-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-fg-muted, #6B6868);
  padding: 0;
  line-height: 1;
  transition: color 150ms ease;
}

.policy-modal-close:hover {
  color: var(--ggg-active-orange, #FF6600);
}

.policy-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-fg, #1F1D1D);
}

.policy-modal-body h5 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-fg, #1F1D1D);
}

.policy-modal-body p, .policy-modal-body li {
  margin-bottom: 12px;
}

.policy-modal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-modal-footer {
  padding: 16px 24px;
  border-top: 1.5px solid #ECECEC;
  display: flex;
  justify-content: flex-end;
  background: var(--ggg-soft-milk, #FAFAFA);
}

.policy-modal-btn {
  background: var(--ggg-active-orange, #FF6600);
  color: #FFF;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 150ms ease;
}

.policy-modal-btn:hover {
  opacity: 0.9;
}

.policy-link {
  color: var(--ggg-active-orange, #FF6600);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
}

.policy-link:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* --- MOBILE & WEBVIEW CLICK PERFORMANCE OPTIMIZATIONS --- */

/* 1. Eliminate 300ms click delay on iOS Safari, Android and In-app Webviews (Zalo, Messenger, etc.) */
button,
a,
input,
select,
textarea,
[role="button"],
.pill,
.chip-btn,
.gift-card,
.fzp-zone-top,
.fzp-issue,
.fzp-mark {
  touch-action: manipulation;
}

/* 2. Instant physical tactile feedback on click/press */
.pill:active,
.chip-btn:active,
.gift-card:active,
.fzp-zone-top:active,
.fzp-issue:active {
  transform: scale(0.97) !important;
  opacity: 0.9 !important;
  transition: transform 50ms ease-out !important;
}
