:root {
  --bg: #070604;
  --bg-soft: #0b0805;
  --surface: #0f0b07;
  --surface-2: #151008;
  --surface-3: #1a1309;
  --line: rgba(244, 197, 84, .13);
  --line-strong: rgba(244, 197, 84, .28);
  --line-white: rgba(255,255,255,.07);
  --gold: #f4c554;
  --gold-hi: #ffe59a;
  --gold-pale: #fff3cd;
  --text: #fff8e9;
  --muted: #c9ba98;
  --muted-2: #948568;
  --danger: #f5c39d;
  --success: #d6e9b9;
  --shadow-lg: 0 34px 90px rgba(0,0,0,.48);
  --shadow-md: 0 20px 48px rgba(0,0,0,.32);
  --shadow-sm: 0 12px 30px rgba(0,0,0,.24);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --ease: cubic-bezier(.22,.78,.22,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 7% -8%, rgba(244,197,84,.09), transparent 62%),
    radial-gradient(820px 560px at 98% 15%, rgba(244,197,84,.055), transparent 62%),
    linear-gradient(180deg, #070604 0%, #090704 48%, #060503 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: rgba(244,197,84,.26); color: #fff; }
:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }

.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.skip-link {
  position: fixed; left: 12px; top: -64px; z-index: 9999;
  padding: 10px 14px; border-radius: 10px; background: var(--gold); color: #211400; font-weight: 900;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(7,6,4,.70);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  background: rgba(7,6,4,.93);
  border-color: rgba(244,197,84,.10);
  box-shadow: 0 12px 36px rgba(0,0,0,.24);
}
.header-inner { height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo {
  width: 43px; height: 43px;
  filter: drop-shadow(0 7px 18px rgba(244,197,84,.18));
  transition: transform .3s var(--ease-out), filter .3s ease;
}
.brand:hover .brand-logo { transform: translateY(-1px) rotate(-2deg); filter: drop-shadow(0 10px 22px rgba(244,197,84,.26)); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.04; }
.brand-copy strong { font-size: 27px; letter-spacing: .075em; color: var(--gold-pale); }
.brand-copy span { margin-top: 6px; color: var(--muted-2); font-size: 10.5px; letter-spacing: .07em; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav > a:not(.btn) {
  position: relative; padding: 11px 12px; color: #d7c7a3; font-size: 14px; white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), #fff0b1);
  transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease-out);
}
.nav > a:not(.btn):hover, .nav > a.active:not(.btn) { color: #fff2c9; }
.nav > a:not(.btn):hover::after, .nav > a.active:not(.btn)::after { transform: scaleX(1); }
.menu-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.03); cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}
.menu-toggle:hover { border-color: var(--line-strong); background: rgba(244,197,84,.05); }
.menu-toggle:active { transform: scale(.97); }
.menu-toggle svg { width: 21px; height: 21px; margin: auto; color: var(--gold-hi); }
.nav-backdrop { display: none; }

/* Buttons */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 11px 18px; border: 1px solid transparent; border-radius: 13px;
  font-size: 14px; font-weight: 850; letter-spacing: .01em; cursor: pointer;
  transition: transform .22s var(--ease-out), box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; z-index: -1; inset: -3px;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.34) 47%, transparent 66%);
  transform: translateX(-145%); transition: transform .65s var(--ease-out);
}
.btn:hover::before { transform: translateX(145%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn img { width: 16px; height: 16px; transition: transform .24s var(--ease-out); }
.btn:hover img { transform: translateX(3px); }
.btn-primary {
  color: #271800;
  background: linear-gradient(180deg, #ffeaa9 0%, #f5c854 55%, #dda72e 100%);
  box-shadow: 0 11px 28px rgba(244,197,84,.18), inset 0 1px 0 rgba(255,255,255,.70);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(244,197,84,.28), inset 0 1px 0 rgba(255,255,255,.75); }
.btn-secondary {
  color: #ffe9a7; border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(244,197,84,.09), rgba(244,197,84,.025));
}
.btn-secondary:hover { border-color: rgba(244,197,84,.48); background: rgba(244,197,84,.075); }
.btn-ghost { color: #e2d3af; border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.025); }
.btn-sm { min-height: 40px; padding: 9px 14px; font-size: 13px; border-radius: 12px; }
.btn-full { width: 100%; }

/* Type */
.eyebrow {
  display: flex; align-items: center; gap: 9px;
  color: var(--gold); font-size: 11.5px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase;
}
.eyebrow img { width: 17px; height: 17px; }
.hero h1, .page-hero h1 {
  margin: 15px 0 18px; color: var(--gold-pale);
  font-size: clamp(44px, 5vw, 68px); line-height: 1.07; letter-spacing: -.042em;
}
.hero h1 span, .page-hero h1 span { color: var(--gold); }
.hero .lead, .page-hero .lead {
  margin: 0; max-width: 690px; color: #d9c9a7;
  font-size: 17px; line-height: 1.88;
}

/* Home hero */
.hero { padding: 42px 0 28px; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 535px; padding: 20px 0; }
.hero-copy .lead { margin-bottom: 26px; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.hero-assurance {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 22px;
  color: var(--muted-2); font-size: 12.5px;
}
.hero-assurance .assurance-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(244,197,84,.55); }
.hero-assurance strong { color: #e5d4aa; font-weight: 750; }
.hero-media, .page-hero-media {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  border-radius: var(--radius-xl); background: #0b0805; box-shadow: var(--shadow-lg);
}
.hero-media::before, .page-hero-media::before {
  content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 50%, rgba(7,6,4,.40) 100%);
}
.hero-media::after {
  content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,231,163,.035);
  border-radius: inherit;
}
.hero-media img, .page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .5s ease;
}
.hero-media:hover img, .page-hero-media:hover img { transform: scale(1.018); }
.hero-media { aspect-ratio: 1.48 / 1; min-height: 390px; }
.hero-media img { object-position: 70% center; }
.page-hero-media { aspect-ratio: 16 / 9; }
.hero-glow { position: absolute; z-index: -1; inset: auto 9% 2%; height: 85px; filter: blur(45px); background: rgba(244,197,84,.24); }
.hero-media-note {
  position: absolute; z-index: 4; left: 20px; bottom: 20px;
  min-width: 190px; padding: 13px 15px; border: 1px solid rgba(255,226,148,.18); border-radius: 15px;
  background: rgba(8,6,4,.68); backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 14px 36px rgba(0,0,0,.26);
}
.hero-media-note small { display: block; margin-bottom: 4px; color: #b7a888; font-size: 9.5px; font-weight: 800; letter-spacing: .15em; }
.hero-media-note strong { display: block; color: #ffe7a1; font-size: 17px; letter-spacing: .015em; }
.hero-media-note span { display: block; margin-top: 4px; color: #c8b995; font-size: 11px; }

/* Capability rail */
.service-rail { padding: 18px 0 12px; }
.service-rail-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  border: 1px solid var(--line); border-radius: 19px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  box-shadow: var(--shadow-sm);
}
.service-rail-item { display: flex; align-items: center; gap: 12px; min-height: 78px; padding: 16px 20px; }
.service-rail-item + .service-rail-item { border-left: 1px solid rgba(244,197,84,.10); }
.service-rail-icon {
  flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px; background: rgba(244,197,84,.045);
}
.service-rail-icon img { width: 19px; height: 19px; }
.service-rail-item strong { display: block; color: #f4e5bd; font-size: 13.5px; }
.service-rail-item span { display: block; margin-top: 4px; color: var(--muted-2); font-size: 11.5px; line-height: 1.45; }

/* Sections */
.section { padding: 82px 0; content-visibility: auto; contain-intrinsic-size: 1px 760px; }
.section.compact { padding: 52px 0; }
.section-alt {
  position: relative;
  background: linear-gradient(180deg, rgba(244,197,84,.022), rgba(244,197,84,.008));
  border-top: 1px solid rgba(244,197,84,.075); border-bottom: 1px solid rgba(244,197,84,.075);
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.section-title h2, .section-head h2 {
  margin: 9px 0 0; color: var(--gold-pale);
  font-size: clamp(31px, 3.7vw, 44px); line-height: 1.15; letter-spacing: -.032em;
}
.section-title p, .section-head p { margin: 11px 0 0; max-width: 720px; color: var(--muted); line-height: 1.82; }
.text-link { display: inline-flex; align-items: center; color: var(--gold); font-size: 14px; font-weight: 850; transition: color .2s ease, transform .2s var(--ease); }
.text-link:hover { color: #ffe69a; transform: translateX(3px); }

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.panel {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.029), rgba(255,255,255,.011));
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease-out), border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
@media (hover:hover) and (pointer:fine) {
  .panel:hover { transform: translateY(-4px); border-color: rgba(244,197,84,.25); background: linear-gradient(180deg, rgba(244,197,84,.038), rgba(255,255,255,.012)); box-shadow: var(--shadow-md); }
}

/* Mall cards */
.mall-card { position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.mall-thumb { height: 176px; overflow: hidden; background: #ffffff; padding: 16px; display: flex; align-items: center; justify-content: center; }
.mall-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 6px 14px rgba(0,0,0,.10)); transition: none; }
.mall-card:hover .mall-thumb img { transform: none; }
.mall-body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.mall-body h3 { margin: 0 0 7px; color: var(--gold-pale); font-size: 21px; }
.mall-body p { margin: 0 0 16px; color: var(--muted); font-size: 13.5px; line-height: 1.72; }
.mall-body .btn { margin-top: auto; }
.mall-card:nth-child(n+2) .btn-secondary { border-color: rgba(244,197,84,.22); }

/* Journey / icon cards */
.icon-card { padding: 25px; }
.icon-box {
  width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 17px;
  border: 1px solid var(--line); border-radius: 15px;
  background: linear-gradient(180deg, rgba(244,197,84,.115), rgba(244,197,84,.025));
}
.icon-box img { width: 25px; height: 25px; }
.icon-card h3 { margin: 0 0 8px; color: var(--gold-pale); font-size: 21px; }
.icon-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.8; }
.journey-card { position: relative; padding: 26px 24px 25px; overflow: hidden; }
.journey-no { display: block; margin-bottom: 32px; color: rgba(244,197,84,.48); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.journey-card h3 { margin: 0 0 8px; color: var(--gold-pale); font-size: 21px; }
.journey-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.78; }
.journey-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -65px; top: -70px; border: 1px solid rgba(244,197,84,.13); border-radius: 50%; }

.security-banner {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 30px 32px;
  background:
    radial-gradient(500px 220px at 0% 0%, rgba(244,197,84,.07), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.011));
}
.security-banner h3 { margin: 0 0 8px; color: var(--gold-pale); font-size: 28px; }
.security-banner p { margin: 0; max-width: 790px; color: var(--muted); line-height: 1.8; }
.domain-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 9px 13px;
  border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(244,197,84,.065);
  color: #ffe9aa; font-size: 13.5px; font-weight: 850;
}

/* Inner page hero */
.page-hero { padding: 48px 0 36px; }
.page-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 38px; align-items: center; }
.page-hero h1 { font-size: clamp(42px, 4.6vw, 60px); }
.page-hero .lead { font-size: 16.5px; line-height: 1.86; }
.page-hero .hero-actions { margin-top: 24px; }
.page-hero-media { box-shadow: var(--shadow-md); }

.mall-thumb, .platform-side .mini-thumb { box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }

/* Platform */
.platform-list { display: grid; gap: 18px; }
.platform-row { display: grid; grid-template-columns: 238px 1fr; overflow: hidden; }
.platform-side {
  padding: 23px;
  background: linear-gradient(180deg, rgba(244,197,84,.09), rgba(244,197,84,.022));
  border-right: 1px solid var(--line);
}
.platform-side .mini-thumb { height: 146px; margin-bottom: 16px; overflow: hidden; border-radius: 15px; background: #ffffff; padding: 14px; display: flex; align-items: center; justify-content: center; }
.platform-side .mini-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 6px 14px rgba(0,0,0,.10)); transition: none; }
.platform-row:hover .mini-thumb img { transform: none; }
.platform-side h2 { margin: 0 0 6px; color: var(--gold-pale); font-size: 27px; }
.platform-side small { color: var(--muted-2); }
.platform-main { padding: 27px 28px; }
.platform-main h3 { margin: 8px 0; color: var(--gold-pale); font-size: 22px; }
.platform-main p { margin: 0; color: var(--muted); line-height: 1.82; }
.platform-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.notice { padding: 16px 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(244,197,84,.04); color: #deceaa; line-height: 1.76; }
.notice.warning { border-color: rgba(255,186,135,.22); background: rgba(255,150,80,.05); color: #edd0b7; }
.notice.success { border-color: rgba(216,239,176,.20); background: rgba(135,196,100,.05); color: #d8e8c2; }

/* Tables */
.rate-table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-sm); }
.rate-table { width: 100%; min-width: 720px; border-collapse: collapse; background: rgba(255,255,255,.012); }
.rate-table th, .rate-table td { padding: 17px 18px; text-align: left; border-bottom: 1px solid rgba(244,197,84,.09); }
.rate-table th { background: rgba(244,197,84,.045); color: var(--gold); font-size: 12.5px; letter-spacing: .075em; }
.rate-table td { color: #dbccaa; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table tbody tr { transition: background .2s ease; }
.rate-table tbody tr:hover { background: rgba(244,197,84,.025); }
.rate-table td:nth-child(2) { color: #fff0bd; font-weight: 850; }

/* Steps, tabs, FAQ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.step { padding: 24px; }
.step-no {
  width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 999px;
  background: linear-gradient(180deg, #ffe7a0, #f4c554); color: #2a1800; font-weight: 900;
  box-shadow: 0 8px 20px rgba(244,197,84,.14);
}
.step h3 { margin: 0 0 8px; color: var(--gold-pale); font-size: 20px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.78; }
.tabs {
  display: flex; gap: 7px; flex-wrap: wrap; width: max-content; max-width: 100%; margin-bottom: 18px; padding: 6px;
  border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.018);
}
.tab-btn { border: 0; border-radius: 11px; background: transparent; color: var(--muted); padding: 10px 16px; font-weight: 850; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s var(--ease); }
.tab-btn:hover { color: #fff1ca; }
.tab-btn.active { background: linear-gradient(180deg, rgba(244,197,84,.16), rgba(244,197,84,.065)); color: #ffe9a3; box-shadow: inset 0 0 0 1px var(--line); }
.accordion { display: grid; gap: 10px; }
.acc-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.015); transition: border-color .2s ease, background .2s ease; }
.acc-item.open { border-color: rgba(244,197,84,.22); background: rgba(244,197,84,.018); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 18px; border: 0; background: transparent; color: #fff0c8; text-align: left; font-weight: 850; cursor: pointer; }
.acc-head span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; background: rgba(244,197,84,.055); color: var(--gold); transition: transform .28s var(--ease-out), background .2s ease; }
.acc-item.open .acc-head span { transform: rotate(45deg); background: rgba(244,197,84,.09); }
.acc-body { max-height: 0; overflow: hidden; padding: 0 18px; color: var(--muted); line-height: 1.82; transition: max-height .36s var(--ease-out), padding .36s var(--ease-out); }
.acc-item.open .acc-body { padding: 0 18px 18px; }
.faq-search { width: 100%; margin: 0 0 16px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; outline: none; background: rgba(255,255,255,.02); color: #fff; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.faq-search::placeholder { color: #83765e; }
.faq-search:focus { border-color: rgba(244,197,84,.40); background: rgba(244,197,84,.018); box-shadow: 0 0 0 4px rgba(244,197,84,.05); }

/* Contact / channels */
.contact-card { display: flex; flex-direction: column; height: 100%; padding: 24px; }
.contact-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.contact-card h3 { margin: 0; color: var(--gold-pale); font-size: 23px; }
.contact-card p { margin: 0 0 16px; color: var(--muted); line-height: 1.76; }
.account { margin: 0 0 16px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(244,197,84,.035); }
.account small { display: block; color: var(--muted-2); font-size: 10.5px; letter-spacing: .11em; text-transform: uppercase; }
.account strong { display: block; margin-top: 5px; color: #fff0b7; font-size: 17px; word-break: break-all; }
.contact-card .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.channel-layout { display: grid; grid-template-columns: 1.32fr .68fr; gap: 18px; }
.channel-panel, .channel-aside { padding: 27px; }
.qr-grid { display: grid; grid-template-columns: 216px 1fr; gap: 24px; align-items: center; }
.qr-shell { padding: 13px; border-radius: 19px; background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.qr-shell img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.copy-row { display: flex; gap: 10px; align-items: stretch; margin-top: 16px; }
.copy-row .account { flex: 1; margin: 0; }
.channel-aside h2 { margin: 10px 0; color: var(--gold-pale); }
.channel-aside p { color: var(--muted); line-height: 1.82; }

/* Legal */
.legal { padding: 32px 34px; }
.legal h2 { margin: 30px 0 10px; color: var(--gold-pale); font-size: 25px; letter-spacing: -.015em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: 23px 0 8px; color: #ffedb5; font-size: 19px; }
.legal p, .legal li { color: #d3c4a3; line-height: 1.92; }
.legal ul { padding-left: 22px; }
.legal strong { color: #ffeab0; }
.toc { display: flex; gap: 9px; flex-wrap: wrap; padding: 19px; }
.toc a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); font-size: 13px; transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s var(--ease); }
.toc a:hover { transform: translateY(-1px); border-color: var(--line-strong); color: #ffe7a0; background: rgba(244,197,84,.045); }

/* CTA */
.cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px 32px; }
.cta h3 { margin: 0 0 8px; color: var(--gold-pale); font-size: 29px; }
.cta p { margin: 0; max-width: 720px; color: var(--muted); line-height: 1.8; }
.cta .actions { display: flex; flex: 0 0 auto; gap: 10px; flex-wrap: wrap; }

/* Footer */
.footer { padding: 38px 0 34px; border-top: 1px solid rgba(244,197,84,.075); background: rgba(0,0,0,.14); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 26px; }
.footer .brand { margin-bottom: 14px; }
.footer .brand-logo { width: 38px; height: 38px; }
.footer .brand-copy strong { font-size: 23px; }
.footer p { margin: 0; max-width: 350px; color: var(--muted-2); font-size: 12.5px; line-height: 1.82; }
.footer h4 { margin: 0 0 13px; color: #ffe7a7; font-size: 13.5px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { width: max-content; max-width: 100%; color: #a69777; font-size: 12.5px; transition: color .2s ease, transform .2s var(--ease); }
.footer-links a:hover { color: #f4dfac; transform: translateX(2px); }
.copyright { display: flex; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(244,197,84,.07); color: #7f7154; font-size: 11.5px; }
.copyright a { color: #a89161; }

/* Modal / toast */
.modal {
  position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 20px;
  background: rgba(0,0,0,.72); backdrop-filter: blur(11px); -webkit-backdrop-filter: blur(11px);
  opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-card {
  width: min(520px, 100%); padding: 27px; border: 1px solid var(--line-strong); border-radius: 22px;
  background: linear-gradient(180deg, #151007, #0c0905); box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.985); transition: transform .3s var(--ease-out);
}
.modal.open .modal-card { transform: none; }
.modal-card h3 { margin: 10px 0 8px; color: var(--gold-pale); font-size: 25px; }
.modal-card p { margin: 0; color: var(--muted); line-height: 1.72; }
.modal-domain { margin: 16px 0; padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(244,197,84,.04); color: #ffe7a0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-all; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.toast { position: fixed; z-index: 4000; left: 50%; bottom: 28px; padding: 11px 15px; border-radius: 999px; background: #f7d676; color: #271700; font-size: 13px; font-weight: 900; box-shadow: var(--shadow-md); opacity: 0; transform: translate(-50%,18px); transition: opacity .22s ease, transform .22s var(--ease-out); }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: rgba(12,9,5,.86); color: var(--gold); cursor: pointer; backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, visibility .2s ease, transform .25s var(--ease-out), border-color .2s ease, background .2s ease; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(244,197,84,.055); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(15px); transition: opacity .68s var(--ease-out), transform .68s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.reveal.show { opacity: 1; transform: none; }

/* 404 */
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-card { max-width: 680px; padding: 44px; }
.error-code { color: var(--gold); font-size: 88px; font-weight: 900; line-height: 1; }
.error-card h1 { margin: 10px 0; color: var(--gold-pale); }
.error-card p { color: var(--muted); line-height: 1.82; }

@media (max-width: 1120px) {
  .container { width: min(1160px, calc(100% - 40px)); }
  .brand-copy span { font-size: 9.5px; }
  .nav > a:not(.btn) { padding-inline: 9px; font-size: 13px; }
  .hero-grid { gap: 34px; grid-template-columns: .94fr 1.06fr; }
  .hero h1 { font-size: clamp(44px, 5.1vw, 61px); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .grid-4, .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2,1fr); }
  .footer-grid > div:nth-child(n+4) { margin-top: 8px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 30px, 1200px); }
  .header-inner { height: 70px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 24px; }
  .brand-copy span { display: none; }
  .menu-toggle { display: grid; }
  .nav {
    position: fixed; z-index: 1100; top: 78px; left: 15px; right: 15px;
    display: flex; flex-direction: column; align-items: stretch; gap: 4px; margin: 0; padding: 12px;
    border: 1px solid var(--line-strong); border-radius: 19px; background: rgba(12,9,5,.985); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-9px) scale(.985); transform-origin: top center;
    transition: opacity .22s ease, visibility .22s ease, transform .26s var(--ease-out);
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.btn) { padding: 13px 14px; border-radius: 11px; font-size: 14px; }
  .nav > a:not(.btn)::after { display: none; }
  .nav > a.active:not(.btn) { background: rgba(244,197,84,.055); }
  .nav .btn { margin-top: 4px; }
  .nav-backdrop { position: fixed; z-index: 999; inset: 70px 0 0; background: rgba(0,0,0,.48); backdrop-filter: blur(3px); }
  .nav-backdrop.show { display: block; }

  .hero { padding-top: 30px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 26px; }
  .hero-copy { max-width: 720px; padding: 0; }
  .hero h1 { font-size: clamp(46px, 8vw, 64px); }
  .hero-media { aspect-ratio: 16 / 9; min-height: auto; }
  .hero-media img { object-position: 68% center; }
  .page-hero-media { order: -1; }
  .service-rail-inner { grid-template-columns: repeat(2,1fr); }
  .service-rail-item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(244,197,84,.10); }
  .service-rail-item:nth-child(4) { border-top: 1px solid rgba(244,197,84,.10); }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .grid-3, .grid-2, .channel-layout { grid-template-columns: 1fr; }
  .platform-row { grid-template-columns: 1fr; }
  .platform-side { border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-side .mini-thumb { height: 146px; margin-bottom: 16px; overflow: hidden; border-radius: 15px; background: #ffffff; padding: 14px; display: flex; align-items: center; justify-content: center; }
  .qr-grid { grid-template-columns: 180px 1fr; }
  .security-banner, .cta { display: grid; grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .copyright { flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 22px, 1200px); }
  .hero { padding: 28px 0 20px; }
  .section { padding: 56px 0; }
  .section.compact { padding: 40px 0; }
  .page-hero { padding: 28px 0 24px; }
  .hero h1, .page-hero h1 { font-size: 39px; line-height: 1.09; }
  .hero .lead, .page-hero .lead { font-size: 15.5px; line-height: 1.82; }
  .hero-actions .btn, .cta .actions .btn { width: 100%; }
  .hero-assurance { gap: 8px 10px; margin-top: 18px; }
  .hero-assurance .assurance-dot { display: none; }
  .hero-media { aspect-ratio: 1.17 / 1; border-radius: 22px; }
  .hero-media img { object-position: 71% center; }
  .hero-media-note { left: 13px; bottom: 13px; min-width: 0; padding: 10px 12px; border-radius: 12px; }
  .hero-media-note strong { font-size: 14px; }
  .hero-media-note span { font-size: 10px; }
  .service-rail { padding-top: 14px; }
  .service-rail-inner { grid-template-columns: 1fr; border-radius: 17px; }
  .service-rail-item { min-height: 70px; padding: 14px 16px; }
  .service-rail-item + .service-rail-item { border-left: 0; border-top: 1px solid rgba(244,197,84,.10); }
  .service-rail-item:nth-child(3) { border-top: 1px solid rgba(244,197,84,.10); }
  .grid-5, .grid-4, .steps, .footer-grid { grid-template-columns: 1fr; }
  .mall-thumb { height: 176px; overflow: hidden; background: #ffffff; padding: 16px; display: flex; align-items: center; justify-content: center; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 22px; }
  .section-title h2, .section-head h2 { font-size: 32px; }
  .security-banner, .cta, .platform-main, .platform-side, .legal, .channel-panel, .channel-aside { padding: 21px; }
  .security-banner h3, .cta h3 { font-size: 25px; }
  .platform-links .btn { width: 100%; }
  .platform-side .mini-thumb { height: 146px; margin-bottom: 16px; overflow: hidden; border-radius: 15px; background: #ffffff; padding: 14px; display: flex; align-items: center; justify-content: center; }
  .qr-grid { grid-template-columns: 1fr; }
  .qr-shell { max-width: 230px; margin: 0 auto; }
  .copy-row { flex-direction: column; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; padding-inline: 10px; }
  .copyright { margin-top: 20px; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .btn { width: 100%; }
}

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

/* Final rhythm refinements */
.page-home .hero h1 { font-size: clamp(44px, 4.3vw, 60px); }
main > .page-hero + .section { padding-top: 56px; }
@media (max-width: 600px) {
  .page-home .hero h1 { font-size: 39px; }
  .hero-assurance { font-size: 11.5px; }
  .hero-assurance .assurance-dot { display: block; }
}
.page-home .hero h1 .hero-line { white-space: nowrap; }


/* Rewards matrix */
.rewards-board {
  display: grid; gap: 20px; padding: 0;
}
.matrix-table-wrap {
  overflow: auto; border: 1px solid var(--line); border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  box-shadow: var(--shadow-sm);
}
.matrix-table { width: 100%; min-width: 920px; border-collapse: collapse; }
.matrix-table th, .matrix-table td {
  padding: 18px 18px; border-bottom: 1px solid rgba(244,197,84,.09); text-align: center;
}
.matrix-table thead th {
  background: rgba(244,197,84,.06); color: var(--gold-pale); font-size: 13px; font-weight: 900;
}
.matrix-table th:first-child, .matrix-table td:first-child { text-align: left; min-width: 170px; }
.matrix-table tbody tr:last-child td { border-bottom: 0; }
.matrix-table td { color: #e7d8b5; font-weight: 700; }
.matrix-table td:first-child { color: #fff1ca; font-weight: 800; }
.matrix-table tbody tr:hover { background: rgba(244,197,84,.028); }
.reward-highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.reward-highlight { display: flex; align-items: center; gap: 16px; padding: 22px 24px; }
.reward-highlight-icon {
  flex: 0 0 56px; width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 16px;
  background: linear-gradient(180deg, rgba(244,197,84,.10), rgba(244,197,84,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.reward-highlight-icon img { width: 24px; height: 24px; }
.reward-highlight-copy span { display: block; color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.reward-highlight-copy strong { display: block; color: var(--gold-pale); font-size: clamp(26px, 3vw, 40px); line-height: 1.1; letter-spacing: -.03em; }
.reward-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reward-mini { padding: 20px; min-height: 118px; }
.reward-mini h3 { margin: 0 0 8px; color: var(--gold-pale); font-size: 19px; }
.reward-mini p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.reward-note {
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px;
  background: rgba(255,255,255,.015); color: #d9caa8; line-height: 1.76;
  box-shadow: var(--shadow-sm);
}
.page-about .page-hero { padding-bottom: 44px; }
.page-about .page-hero-grid { align-items: center; }
.page-about .page-hero-media { aspect-ratio: 16 / 9; }
.page-about .page-hero h1 { font-size: clamp(42px, 5vw, 62px); }
@media (max-width: 1100px) {
  .reward-mini-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .reward-highlight-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   OPT1 · Micro refinements based on the user's preferred build
   Preserve black/gold identity and page architecture.
   ========================================================= */

/* Stable scrolling: this site is compact enough that avoiding content-visibility
   estimation produces a more consistent scrollbar and less section pop-in. */
.section { content-visibility: visible; contain-intrinsic-size: auto; }

/* Slightly calmer, more corporate interaction curve. */
.btn { transition-duration: .24s; }
.btn::before { opacity: .72; }
.panel { transform: translateZ(0); }

/* Keep long numbers and rates visually aligned. */
.matrix-table, .reward-highlight-copy strong { font-variant-numeric: tabular-nums; }

/* Rewards: one outer framework, matching the supplied reference structure while
   retaining the site's existing black/gold language. */
.page-about #rates .section-head { margin-bottom: 24px; }
.rewards-board {
  position: relative;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(244,197,84,.055), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.010));
  box-shadow: 0 24px 58px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.025);
}
.matrix-table-wrap {
  border-radius: 18px;
  background: rgba(7,6,4,.42);
  box-shadow: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,197,84,.35) rgba(255,255,255,.025);
}
.matrix-table-wrap::-webkit-scrollbar { height: 7px; }
.matrix-table-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,.025); }
.matrix-table-wrap::-webkit-scrollbar-thumb { background: rgba(244,197,84,.30); border-radius: 999px; }
.matrix-table thead th {
  padding-top: 17px;
  padding-bottom: 17px;
  background: linear-gradient(180deg, rgba(244,197,84,.085), rgba(244,197,84,.045));
  color: #ffe7a0;
  letter-spacing: .02em;
}
.matrix-table tbody td:not(:first-child) { color: #f4dfaa; }
.matrix-table tbody td:not(:first-child):not(:empty) { font-weight: 800; }
.matrix-table tbody tr { transition: background .18s ease; }
.reward-highlight-grid { gap: 16px; }
.reward-highlight {
  min-height: 112px;
  padding: 21px 22px;
  border-radius: 18px;
  box-shadow: none;
}
.reward-highlight-icon {
  flex-basis: 54px;
  width: 54px;
  height: 54px;
  border-radius: 15px;
}
.reward-highlight-copy span { color: #cfc09f; }
.reward-highlight-copy strong {
  color: #fff0bd;
  font-size: clamp(29px, 3vw, 39px);
  letter-spacing: -.035em;
}
.reward-mini-grid { gap: 13px; }
.reward-mini {
  min-height: 102px;
  padding: 18px 19px;
  border-radius: 16px;
  box-shadow: none;
}
.reward-mini h3 { font-size: 16px; margin-bottom: 7px; }
.reward-mini p { font-size: 13px; color: #bba986; }
.reward-note {
  padding: 16px 18px;
  border-radius: 15px;
  box-shadow: none;
  background: rgba(244,197,84,.025);
  color: #d8c9a6;
  font-size: 14px;
}
.matrix-scroll-hint { display: none; }

/* Header spacing and hit areas: visually unchanged, easier to use. */
.nav > a:not(.btn) { min-height: 42px; display: inline-flex; align-items: center; }
.site-header { will-change: background-color, box-shadow; }

/* Avoid over-expanding headings on ultrawide displays. */
@media (min-width: 1440px) {
  .container { width: min(1220px, calc(100% - 64px)); }
  .hero-grid { gap: 54px; }
}

@media (max-width: 900px) {
  .rewards-board { padding: 18px; border-radius: 22px; }
}

@media (max-width: 600px) {
  .header-inner { height: 66px; }
  .nav { top: 73px; }
  .nav-backdrop { inset: 66px 0 0; }
  .page-home .hero { padding-top: 24px; }
  .page-home .hero h1 { font-size: clamp(36px, 10.3vw, 40px); }
  .page-home .hero h1 .hero-line { white-space: normal; }
  .hero-actions { gap: 9px; }
  .section-title p, .section-head p { font-size: 14.5px; line-height: 1.78; }

  .page-about #rates { padding-top: 48px; }
  .page-about #rates .section-head { margin-bottom: 18px; }
  .rewards-board { gap: 14px; padding: 12px; border-radius: 19px; }
  .matrix-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 18px;
    padding: 0 2px;
    color: var(--muted-2);
    font-size: 11px;
    letter-spacing: .03em;
  }
  .matrix-table-wrap { border-radius: 14px; }
  .matrix-table { min-width: 790px; }
  .matrix-table th, .matrix-table td { padding: 14px 12px; font-size: 13px; }
  .matrix-table th:first-child, .matrix-table td:first-child {
    position: sticky;
    left: 0;
    min-width: 126px;
    z-index: 2;
    box-shadow: 1px 0 0 rgba(244,197,84,.10);
  }
  .matrix-table thead th:first-child { z-index: 4; background: #191107; }
  .matrix-table tbody td:first-child { background: #0d0906; }
  .matrix-table tbody tr:hover td:first-child { background: #100c07; }
  .reward-highlight-grid { gap: 12px; }
  .reward-highlight { min-height: 94px; padding: 17px; gap: 13px; }
  .reward-highlight-icon { flex-basis: 48px; width: 48px; height: 48px; border-radius: 14px; }
  .reward-highlight-icon img { width: 22px; height: 22px; }
  .reward-highlight-copy span { font-size: 12.5px; }
  .reward-highlight-copy strong { font-size: 29px; }
  .reward-mini-grid { gap: 10px; }
  .reward-mini { min-height: auto; padding: 16px; }
  .reward-note { padding: 14px 15px; font-size: 12.5px; line-height: 1.72; }
}

/* Do not animate cards on touch; reduces accidental movement while scrolling. */
@media (hover:none), (pointer:coarse) {
  .panel:hover { transform: none; }
  .btn:hover { transform: none; }
}


/* Mall directory — polished official presentation */
.mall-directory-section {
  padding-top: 74px;
  padding-bottom: 78px;
}
.mall-directory-head {
  margin-bottom: 24px;
  align-items: flex-end;
}
.mall-directory-head .section-title p {
  max-width: 760px;
}
.mall-directory-link {
  flex: 0 0 auto;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(244,197,84,.16);
  border-radius: 11px;
  background: rgba(244,197,84,.025);
  font-size: 12.5px;
}
.mall-directory-link span { transition: transform .22s var(--ease-out); }
.mall-directory-link:hover { transform: none; border-color: rgba(244,197,84,.34); background: rgba(244,197,84,.055); }
.mall-directory-link:hover span { transform: translateX(3px); }

.mall-grid {
  gap: 14px;
  align-items: stretch;
}
.mall-card {
  overflow: hidden;
  min-width: 0;
  padding: 12px;
  border-radius: 21px;
  background: linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.012));
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
}
@media (hover:hover) and (pointer:fine) {
  .mall-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,197,84,.28);
    background: linear-gradient(180deg, rgba(244,197,84,.038), rgba(255,255,255,.013));
    box-shadow: 0 22px 46px rgba(0,0,0,.30);
  }
}
.mall-thumb {
  height: 146px;
  margin: 0;
  padding: 15px 17px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(17,12,6,.055),
    0 7px 18px rgba(0,0,0,.08);
}
.mall-thumb img {
  display: block;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 108px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,.10));
  transform: none !important;
  transition: none !important;
}
/* optical sizing: equal perceived weight, not equal raw pixels */
.mall-grid .mall-card:nth-child(1) .mall-thumb img { max-width: 62%; max-height: 108px; transform: translateY(1px) !important; }
.mall-grid .mall-card:nth-child(2) .mall-thumb img { max-width: 65%; max-height: 92px; }
.mall-grid .mall-card:nth-child(3) .mall-thumb img { max-width: 66%; max-height: 101px; transform: translateY(1px) !important; }
.mall-grid .mall-card:nth-child(4) .mall-thumb img { max-width: 70%; max-height: 102px; transform: translateY(2px) !important; }
.mall-grid .mall-card:nth-child(5) .mall-thumb img { max-width: 60%; max-height: 96px; }
.mall-body {
  padding: 17px 5px 4px;
}
.mall-body h3 {
  margin: 0 0 6px;
  min-height: 27px;
  color: var(--gold-pale);
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -.015em;
}
.mall-body p {
  min-height: 22px;
  margin: 0 0 15px;
  color: #aa9a78;
  font-size: 12.5px;
  line-height: 1.6;
}
.mall-card .btn {
  width: 100%;
  min-height: 41px;
  border-radius: 11px;
}
.mall-card .btn-secondary {
  color: #f6df9f;
  border-color: rgba(244,197,84,.20);
  background: linear-gradient(180deg, rgba(244,197,84,.060), rgba(244,197,84,.022));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.mall-card .btn-secondary:hover {
  color: #2a1900;
  border-color: rgba(244,197,84,.55);
  background: linear-gradient(180deg, #ffe89e, #eab73f);
  box-shadow: 0 10px 24px rgba(244,197,84,.15), inset 0 1px 0 rgba(255,255,255,.55);
}

/* Platform list: same visual system, compact logo plaques */
.platform-side .mini-thumb {
  height: 128px;
  margin-bottom: 15px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17,12,6,.055), 0 7px 18px rgba(0,0,0,.08);
}
.platform-side .mini-thumb img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,.10));
  transform: none !important;
  transition: none !important;
}
#haogou .mini-thumb img { max-width: 62%; max-height: 95px; }
#fange .mini-thumb img { max-width: 66%; max-height: 83px; }
#shenghuo .mini-thumb img { max-width: 67%; max-height: 91px; }
#qianling .mini-thumb img { max-width: 70%; max-height: 91px; }
#fugangwan .mini-thumb img { max-width: 61%; max-height: 86px; }

@media (max-width: 1120px) {
  .mall-directory-section { padding-top: 66px; padding-bottom: 70px; }
  .mall-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mall-thumb { height: 154px; }
}
@media (max-width: 900px) {
  .mall-directory-head { align-items: flex-start; }
  .mall-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .platform-side .mini-thumb { height: 140px; }
}
@media (max-width: 600px) {
  .mall-directory-section { padding-top: 54px; padding-bottom: 56px; }
  .mall-directory-head { margin-bottom: 19px; }
  .mall-directory-link { width: 100%; justify-content: center; }
  .mall-grid { grid-template-columns: 1fr; gap: 12px; }
  .mall-card { padding: 11px; border-radius: 19px; }
  .mall-thumb { height: 148px; padding: 14px 16px; }
  .mall-body { padding: 15px 4px 3px; }
  .mall-body h3 { min-height: 0; }
  .mall-body p { min-height: 0; margin-bottom: 13px; }
  .platform-side .mini-thumb { height: 132px; padding: 12px 14px; }
}


/* Clean raster logo assets: no browser enlargement, no edge halo */
.mall-directory-section .mall-thumb,
.page-platform .platform-side .mini-thumb {
  padding: 0;
  background: #fff;
}
.mall-directory-section .mall-thumb img,
.page-platform .platform-side .mini-thumb img,
.mall-grid .mall-card:nth-child(n) .mall-thumb img,
#haogou .mini-thumb img, #fange .mini-thumb img, #shenghuo .mini-thumb img, #qianling .mini-thumb img, #fugangwan .mini-thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none !important;
  transition: none !important;
}
.page-platform .platform-side .mini-thumb img { object-fit: contain; }

/* 手机端点位表格完整展开 */
@media (max-width: 600px) {
  .page-about .matrix-scroll-hint {
    display: none;
  }

  .page-about .matrix-table-wrap {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .page-about .matrix-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .page-about .matrix-table th,
  .page-about .matrix-table td {
    padding: 11px 3px;
    font-size: 11px;
    line-height: 1.22;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .page-about .matrix-table th:first-child,
  .page-about .matrix-table td:first-child {
    position: static;
    width: 24%;
    min-width: 0;
    box-shadow: none;
    text-align: left;
    padding-left: 10px;
    padding-right: 4px;
  }

  .page-about .matrix-table th:not(:first-child),
  .page-about .matrix-table td:not(:first-child) {
    width: 15.2%;
    text-align: center;
  }

  .page-about .matrix-table thead th {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .page-about .matrix-table tbody td:first-child {
    font-size: 11px;
    font-weight: 850;
  }
}

@media (max-width: 390px) {
  .page-about .matrix-table th,
  .page-about .matrix-table td {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 10.5px;
  }

  .page-about .matrix-table thead th {
    font-size: 9.5px;
  }

  .page-about .matrix-table th:first-child,
  .page-about .matrix-table td:first-child {
    padding-left: 8px;
  }
}
