/* ZK Studio — SpaceX-inspired site-wide design layer
   Loaded last so legacy page styles keep their layout/behavior while this file
   provides one shared visual language across marketing and utility surfaces. */

:root {
  --bg-void: #000000;
  --bg-base: #050505;
  --bg-secondary: #0a0a0a;
  --surface-color: #0d0d0d;
  --surface-soft: rgba(255, 255, 255, .05);
  --surface-strong: #050505;
  --text-primary: #f5f3ed;
  --text-secondary: #b9c4d4;
  --text-muted: #718097;
  --accent-color: #e4b85f;
  --accent-hover: #f2cf82;
  --gold: #e4b85f;
  --gold-soft: #f2d58f;
  --gold-deep: #a97122;
  --gold-ink: #161006;
  --brand-blue: #4e8ed7;
  --brand-blue-soft: rgba(78, 142, 215, .13);
  --border-color: rgba(255, 255, 255, .14);
  --border-strong: rgba(228, 184, 95, .62);
  --card-shadow: none;
  --hover-shadow: none;
  --nav-blur: rgba(0, 0, 0, .76);
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --font-main: 'Inter', 'Arial Narrow', Arial, 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
  --font-display: 'Arial Narrow', 'Inter', 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'Noto Sans TC', ui-monospace, monospace;
}

html {
  color-scheme: dark;
  background: var(--bg-void);
}

body {
  background:
    radial-gradient(1100px 620px at 84% -10%, rgba(255, 255, 255, .05), transparent 70%),
    radial-gradient(760px 520px at -10% 30%, rgba(255, 255, 255, .028), transparent 72%),
    linear-gradient(180deg, #000000 0%, #050505 48%, #000000 100%) !important;
  color: var(--text-primary);
  font-family: var(--font-main);
  letter-spacing: .015em;
}

body::before,
.zk-space,
.zk-space-dust,
.cta-bg-glow,
.support-hero-glow {
  display: none !important;
}

::selection {
  background: var(--gold);
  color: var(--gold-ink);
}

::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  border: 3px solid #000;
  border-radius: 0;
  background: #77777d;
}
* { scrollbar-color: #77777d #000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 0;
}

h1, h2, h3, h4,
.doc-title,
.tier-title,
.dashboard-header h1 {
  font-family: var(--font-display);
  color: #fff;
}

h1, h2,
.doc-title,
.tier-title {
  letter-spacing: .035em;
}

/* Navigation */
.floating-nav-container {
  top: 0 !important;
  padding: 0 !important;
  background: transparent;
}

.pill-nav,
.pill-nav.is-scrolled {
  width: 100%;
  max-width: none !important;
  min-height: 72px;
  padding: 18px max(32px, calc((100vw - 1440px) / 2)) !important;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0 !important;
  background: rgba(0, 0, 0, .68) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
  transform: none !important;
}

.nav-logo {
  gap: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-logo img {
  width: auto !important;
  height: 44px !important;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width: 680px) {
  .nav-logo img { height: 34px !important; }
}

.nav-links { gap: clamp(18px, 2.4vw, 38px); }
.nav-links a {
  position: relative;
  color: #fff;
  font-size: .7rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle,
.btn-login,
.zk-auth-chip {
  border-color: rgba(255, 255, 255, .42) !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

.mobile-menu {
  top: 76px !important;
  border: 1px solid #303035 !important;
  border-radius: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.mobile-menu a {
  border-bottom: 1px solid #222226;
  border-radius: 0 !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Shared buttons */
.btn,
.btn-home,
.btn-submit,
.btn-action,
.btn-apply-large,
.obf-btn,
.btn-dashboard,
.btn-dashboard-secondary,
.link-btn {
  min-height: 48px;
  border: 1px solid #fff !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease !important;
}

.btn:hover,
.btn-home:hover,
.btn-submit:hover,
.btn-action:hover,
.btn-apply-large:hover,
.obf-btn:hover,
.btn-dashboard:hover,
.btn-dashboard-secondary:hover,
.link-btn:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: #000 !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.btn i,
.btn-home i,
.btn-submit i,
.btn-action i,
.obf-btn i { color: currentColor !important; }

.btn-icon {
  border: 1px solid #77777d !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

.btn-icon:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: #000 !important;
}

/* Eyebrows and breadcrumbs */
.badge-pill,
.support-eyebrow,
.product-badge,
.obf-owner-badge {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #b8b8bd !important;
  box-shadow: none !important;
  font-family: var(--font-mono);
  font-size: .67rem !important;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.badge-pill::before { display: none !important; }

.breadcrumb-section {
  padding-top: 98px !important;
  padding-bottom: 18px !important;
  border-bottom: 0 !important;
  background: #000 !important;
}

.breadcrumb,
.support-breadcrumb {
  color: #77777d !important;
  font-family: var(--font-mono);
  font-size: .66rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.support-breadcrumb {
  margin-bottom: 32px !important;
  padding: 0 !important;
}

.breadcrumb a:hover,
.support-breadcrumb a:hover,
.breadcrumb .current { color: #fff !important; }

.separator { color: #4b4b50 !important; }

/* Marketing home */
.hero-section {
  min-height: 100svh;
  border-bottom: 1px solid #303035 !important;
  background: #000 !important;
}

.hero-section::before {
  display: block !important;
  height: 62% !important;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88) 72%, #000) !important;
}

.hero-section::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .08) 70%) !important;
}

.hero-grid {
  align-items: end !important;
  justify-content: start !important;
  min-height: calc(100svh - 160px) !important;
}

.hero-text {
  max-width: 1040px !important;
  padding-bottom: 7vh;
  text-align: left !important;
}

.hero-text h1 {
  max-width: 1000px !important;
  margin: 0 !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.2vw, 7.5rem) !important;
  font-weight: 800 !important;
  line-height: .88 !important;
  letter-spacing: .015em !important;
  text-transform: uppercase;
  filter: none !important;
}

.hero-text h1 span {
  background: none !important;
  color: #fff !important;
  -webkit-text-fill-color: currentColor !important;
}

.hero-text .studio-wordmark,
.hero-sub,
.hero-trust { color: #c7c7cc !important; }
.hero-sub { max-width: 620px !important; }
.hero-btns { justify-content: flex-start !important; }
.hero-btns .btn { min-height: 50px !important; }
.hero-btns .btn-black { background: transparent !important; color: #fff !important; }
.hero-btns .btn-black:hover { background: #fff !important; color: #000 !important; }
.hero-trust { justify-content: flex-start !important; }
.hero-trust i { color: #fff !important; }
.hero-scroll-cue { color: #fff !important; }

/* English hero copy is much longer than the zh-Hant original, so the
   dramatic display size above overflows its box and wraps to 4-5 lines.
   Scale it down and widen the box so it keeps the same two-line shape. */
html[lang="en"] .hero-text { max-width: 1120px !important; }
html[lang="en"] .hero-text h1 {
  max-width: 1120px !important;
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important;
  overflow-wrap: break-word;
}

.stats-section {
  border-block: 1px solid #303035;
  background: #000 !important;
}

.stat-item { border-color: #303035 !important; }
.stat-number { color: #fff !important; font-family: var(--font-display); }

.section { border-bottom: 1px solid #222226; }
.section-header h2 {
  color: #fff !important;
  font-size: clamp(2.8rem, 5.6vw, 5.5rem);
  line-height: .94;
  letter-spacing: .025em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.section-header h2::after { display: none !important; }
.section-header p { color: #a5a5aa !important; }
h2.section-header {
  margin-bottom: 48px !important;
  color: #fff !important;
  font-size: clamp(2.6rem, 5vw, 4.8rem) !important;
  line-height: .95;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.bg-grey { background: #0a0a0a !important; }

.service-card,
.product-card,
.payment-card,
.cta-box {
  border: 1px solid #303035 !important;
  border-radius: 4px !important;
  background: #0a0a0a !important;
  box-shadow: none !important;
}

.review-summary {
  border: none !important;
  border-right: 1px solid #303035 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.review-card-vertical {
  border: none !important;
  border-top: 1px solid #303035 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.review-list-featured .review-card-vertical:first-child { border-top: none !important; }

.service-card::before,
.product-card::before,
.product-card::after,
.payment-card::before { display: none !important; }

.service-card:hover,
.product-card:hover,
.payment-card:hover {
  border-color: #fff !important;
  box-shadow: none !important;
}

.review-card-vertical:hover { border-color: #e4b85f !important; }

.service-anim-box,
.animation-container,
.product-icon {
  border-color: #3a3a3f !important;
  border-radius: 4px !important;
  background: transparent !important;
}
.animation-container { filter: grayscale(1); }

.icon-animate,
.product-icon,
.product-specs i,
.price,
.review-stars,
.rating-stars-static,
.payment-card i { color: #fff !important; filter: none !important; }

.product-card::before { display: none !important; }
.product-bottom { border-color: #303035 !important; }
.cta-section { background: #000 !important; }
.cta-box { padding-block: clamp(64px, 10vw, 120px) !important; }
.cta-box::before { display: none !important; }

/* Full-screen service/product bands */
.immersive-section,
.immersive-section.bg-grey,
.warp-stage.warp-ready .warp-viewport { background: #000 !important; }
.warp-engine-glow { display: none !important; }
.warp-vignette {
  background: radial-gradient(120% 90% at 50% 46%, transparent 48%, rgba(0, 0, 0, .8) 100%) !important;
}
.warp-flash {
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .94), rgba(255, 255, 255, .14) 42%, transparent 72%) !important;
}
.warp-reticle { border-color: rgba(255, 255, 255, .34) !important; }
.warp-dot { border-color: #77777d !important; background: transparent !important; }
.warp-dot.is-active { background: #fff !important; }

/* Shared subpage hero bands */
:is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header) {
  display: flex;
  align-items: flex-end;
  min-height: min(68svh, 720px);
  margin: 0 !important;
  padding: 150px 0 72px !important;
  border-bottom: 1px solid #303035;
  background: #000 !important;
  text-align: left !important;
}

:is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header) .container,
.recruit-header {
  width: 100%;
  max-width: 1200px !important;
}

:is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header) h1 {
  max-width: 960px;
  margin: 16px 0 24px !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.8rem) !important;
  font-weight: 800 !important;
  line-height: .9 !important;
  letter-spacing: .025em !important;
  text-transform: uppercase;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

:is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header) p {
  max-width: 680px !important;
  margin: 0 !important;
  color: #b8b8bd !important;
  font-size: 1rem !important;
  line-height: 1.75;
}

/* Cards and content surfaces */
.document-card,
.toc-box,
.highlight-box,
.kyc-box,
.plan-grid,
.tier-card,
.role-card,
.benefits-section,
.help-box,
.form-card,
.obf-card,
.support-sidebar-card,
.support-contact-card,
.support-bottom-card,
.dashboard-card,
.sidebar-card,
.login-detail-card {
  border: 1px solid #303035 !important;
  border-radius: 4px !important;
  background: #0a0a0a !important;
  box-shadow: none !important;
}

:is(.document-card, .toc-box, .highlight-box, .kyc-box, .plan-grid, .tier-card, .role-card, .benefits-section, .help-box, .form-card, .obf-card, .support-sidebar-card, .support-contact-card, .support-bottom-card, .dashboard-card, .sidebar-card):hover {
  box-shadow: none !important;
}

.document-card,
.form-card,
.obf-card { padding: clamp(24px, 5vw, 64px) !important; }

.doc-title {
  border-bottom: 1px solid #303035 !important;
  color: #fff !important;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  line-height: 1.25;
}

.doc-title::before { color: #77777d !important; }
.doc-content p,
.doc-content li { color: #c7c7cc !important; }
.doc-content strong { color: #fff !important; }
.toc-title { color: #fff !important; }
.toc-list a { color: #a5a5aa !important; }
.toc-list a:hover { color: #fff !important; }
.highlight-box,
.kyc-box { border-left: 2px solid #fff !important; }

.plan-item {
  border: 1px solid #303035 !important;
  border-radius: 2px !important;
  background: #000 !important;
}
.plan-exclusive h4,
.plan-non-exclusive h4 { color: #fff !important; }

.tier-grid,
.roles-grid,
.product-grid { gap: 16px !important; }
.tier-card,
.role-card { overflow: hidden; }
.tier-card::before,
.role-card::before,
.vip-card::before,
.supporter-card::before { display: none !important; }
.tier-card:hover,
.role-card:hover { border-color: #fff !important; transform: translateY(-4px) !important; }
.tier-icon,
.role-icon { color: #fff !important; filter: grayscale(1); }
.benefits-list i,
.tier-card li i { color: #fff !important; }
.apply-cta {
  border: 1px solid #303035 !important;
  border-radius: 4px !important;
  background: #0a0a0a !important;
  box-shadow: none !important;
}

.link-card-hover {
  border-radius: 4px !important;
  background: #0a0a0a !important;
  box-shadow: none !important;
}
.link-card-hover:hover { border-color: #fff !important; box-shadow: none !important; }
.link-icon { color: #fff !important; }

/* Forms and controls */
input:not([type='hidden']),
textarea,
select,
.review-field,
.obf-field,
.dashboard-search-input,
.dashboard-date-input,
.custom-select-trigger,
.audit-action-select {
  border: 1px solid #3a3a3f !important;
  border-radius: 4px !important;
  background: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
}

input:not([type='hidden']):focus,
textarea:focus,
select:focus,
.review-field:focus,
.obf-field:focus,
.custom-select.is-open .custom-select-trigger {
  border-color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}

input::placeholder,
textarea::placeholder { color: #66666c !important; }
label,
.review-label { color: #f0f0f0 !important; }

.form-header {
  margin-bottom: 48px !important;
  text-align: left !important;
}
.form-header h1 {
  font-size: clamp(3rem, 6vw, 5.6rem) !important;
  line-height: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.form-step {
  border-color: #303035 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.form-group-title { color: #fff !important; }
.role-btn {
  border: 1px solid #3a3a3f !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #c7c7cc !important;
  box-shadow: none !important;
}
.role-btn:hover,
.role-btn.active {
  border-color: #fff !important;
  background: #fff !important;
  color: #000 !important;
}
.privacy-notice { border-left-color: #fff !important; background: #0a0a0a !important; }

/* Obfuscator */
.obf-wrap { max-width: 1100px !important; }
.obf-header { max-width: none !important; }
.obf-row { gap: 16px !important; }
.obf-meta,
.obf-status,
.obf-result { border-color: #303035 !important; background: #000 !important; }
.obf-card h2 i,
.obf-status i { color: #fff !important; }
.obf-result { font-family: var(--font-mono); }

/* Support center */
.support-hero {
  min-height: min(72svh, 760px);
  padding: 148px 0 72px !important;
  border-bottom: 1px solid #303035;
  background: #000 !important;
}
.support-hero::before { display: none !important; }
.support-hero-inner { text-align: left !important; }
.support-hero h1 {
  max-width: 920px;
  margin: 18px 0 24px !important;
  font-size: clamp(3.6rem, 7vw, 7rem) !important;
  line-height: .88 !important;
  letter-spacing: .025em !important;
  text-transform: uppercase;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}
.support-hero p { max-width: 620px; color: #b8b8bd !important; }
.support-search {
  max-width: 760px !important;
  margin: 34px 0 0 !important;
  border: 1px solid #77777d !important;
  border-radius: 4px !important;
  background: #000 !important;
  box-shadow: none !important;
}
.support-search:focus-within { border-color: #fff !important; box-shadow: none !important; }
.support-quick-links { justify-content: flex-start !important; }
.support-quick-links button,
.chat-suggestions button {
  border: 1px solid #3a3a3f !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #c7c7cc !important;
}
.support-quick-links button:hover,
.chat-suggestions button:hover { border-color: #fff !important; color: #fff !important; }
.support-contact-icon {
  border-radius: 2px !important;
  background: #fff !important;
  color: #000 !important;
}
.category-button {
  border-radius: 0 !important;
  background: transparent !important;
  color: #a5a5aa !important;
}
.category-button.active,
.category-button:hover { background: #fff !important; color: #000 !important; }
.knowledge-list > * { border-color: #303035 !important; border-radius: 4px !important; background: #0a0a0a !important; box-shadow: none !important; }
.support-chat-button {
  border: 1px solid #fff !important;
  border-radius: 999px !important;
  background: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.support-chat-panel {
  border: 1px solid #3a3a3f !important;
  border-radius: 4px !important;
  background: #000 !important;
  box-shadow: none !important;
}
.chat-header { border-bottom: 1px solid #303035 !important; background: #000 !important; }
.chat-agent-logo { border-radius: 2px !important; filter: grayscale(1); }
.chat-messages,
.chat-form { background: #0a0a0a !important; }
.chat-input-wrap { border-color: #3a3a3f !important; border-radius: 4px !important; background: #000 !important; }
.chat-input-wrap:focus-within { border-color: #fff !important; }
.chat-form button { background: #fff !important; color: #000 !important; }

/* Dashboard */
.dashboard-layout {
  grid-template-columns: 280px minmax(0, 1fr) !important;
  max-width: 1600px !important;
  gap: 20px !important;
  padding-top: 104px !important;
}
.dashboard-sidebar { position: sticky; top: 94px; }
.sidebar-card { padding: 10px !important; }
.sidebar-title {
  color: #77777d !important;
  font-family: var(--font-mono);
  font-size: .64rem !important;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sidebar-link {
  border: 1px solid transparent !important;
  border-radius: 2px !important;
  background: transparent !important;
  color: #a5a5aa !important;
}
.sidebar-link:hover { border-color: #3a3a3f !important; color: #fff !important; }
.sidebar-link.active { border-color: #fff !important; background: #fff !important; color: #000 !important; }
.sidebar-link:hover i { color: #fff !important; }
.sidebar-link.active i { color: #000 !important; }
.dashboard-header {
  align-items: end !important;
  min-height: 150px;
  margin-bottom: 20px !important;
  padding-bottom: 24px;
  border-bottom: 1px solid #303035;
}
.dashboard-header h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem) !important;
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.dashboard-card { padding: clamp(18px, 2.5vw, 34px) !important; }
.dashboard-card h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid #303035;
  font-size: clamp(1.3rem, 2.2vw, 2rem) !important;
  letter-spacing: .025em;
}
.dashboard-card h2 i { color: #fff !important; }
.sales-summary-item {
  border: 1px solid #303035 !important;
  border-radius: 2px !important;
  background: #000 !important;
}
.table-wrap { border: 1px solid #303035 !important; border-radius: 2px !important; }
.data-table { background: #000 !important; }
.data-table th {
  border-color: #303035 !important;
  background: #0a0a0a !important;
  color: #a5a5aa !important;
  font-family: var(--font-mono);
  font-size: .65rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.data-table td { border-color: #222226 !important; color: #d5d5d8 !important; }
.data-table tr:hover td { background: rgba(255, 255, 255, .035) !important; }
.custom-select-menu {
  border: 1px solid #3a3a3f !important;
  border-radius: 2px !important;
  background: #000 !important;
  box-shadow: none !important;
}
.custom-select-option { border-radius: 0 !important; color: #c7c7cc !important; }
.custom-select-option:hover,
.custom-select-option[aria-selected='true'] { background: #fff !important; color: #000 !important; }
.code-vault-editor,
.code-vault-secret { border-color: #303035 !important; background: #000 !important; }
.status-msg { border-radius: 2px !important; }

/* 403 / 404 */
.error-container {
  max-width: 1100px !important;
  min-height: calc(100svh - 120px);
  padding: 150px 24px 80px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
}
.error-container::before,
.error-container::after { display: none !important; }
.glitch-wrapper { margin-bottom: 10px !important; }
.glitch {
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: clamp(8rem, 26vw, 22rem) !important;
  font-weight: 800 !important;
  line-height: .78 !important;
  letter-spacing: -.04em !important;
  text-shadow: none !important;
  animation: none !important;
}
.glitch::before,
.glitch::after { display: none !important; }
.sub-title {
  margin-bottom: 18px !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.error-message { max-width: 580px; margin-inline: auto; color: #a5a5aa !important; }

/* Footer */
.modern-footer {
  border-top: 1px solid #303035 !important;
  background: #000 !important;
}
.footer-top { border-color: #303035 !important; }
.footer-brand h3 {
  font-size: 1rem !important;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-brand p,
.link-col a,
.footer-bottom { color: #77777d !important; }
.link-col h4 {
  color: #fff !important;
  font-family: var(--font-mono);
  font-size: .66rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.link-col a:hover { color: #fff !important; transform: none !important; }
.social-links a {
  border: 1px solid #3a3a3f !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #fff !important;
}
.social-links a:hover { border-color: #fff !important; background: #fff !important; color: #000 !important; }

@media (max-width: 992px) {
  .pill-nav,
  .pill-nav.is-scrolled { padding-inline: 20px !important; }
  .hero-grid { align-items: end !important; text-align: left !important; }
  .hero-text { text-align: left !important; }
  .dashboard-layout { grid-template-columns: 1fr !important; padding-top: 92px !important; }
  .review-summary { border-right: none !important; border-bottom: 1px solid #303035 !important; }
}

@media (max-width: 680px) {
  .pill-nav,
  .pill-nav.is-scrolled { min-height: 64px; padding: 14px 16px !important; }
  .mobile-menu { top: 66px !important; }
  .hero-section { padding-top: 100px !important; }
  .hero-text { padding-bottom: 8vh; }
  .hero-text h1 { font-size: clamp(3rem, 15vw, 4.8rem) !important; }
  html[lang="en"] .hero-text h1 { font-size: clamp(1.7rem, 8.5vw, 2.5rem) !important; line-height: 1.08 !important; }
  .hero-sub { font-size: .9rem !important; }
  .hero-trust { display: none !important; }
  .breadcrumb-section { padding-top: 82px !important; }
  :is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header) {
    min-height: 58svh;
    padding: 110px 0 48px !important;
  }
  :is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header) h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem) !important;
  }
  .support-hero { min-height: 66svh; padding: 110px 0 54px !important; }
  .support-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem) !important; }
  .document-card,
  .form-card,
  .obf-card { padding: 24px 18px !important; }
  .section { padding-block: 72px; }
  .section-header h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  html[lang="en"] .section-header h2 { font-size: clamp(1.7rem, 8.5vw, 2.6rem) !important; line-height: 1.12 !important; }
  .error-container { padding-top: 120px !important; }
  .support-chat-panel { right: 10px !important; bottom: 84px !important; left: 10px !important; width: auto !important; }
}

/* ZK color depth refresh */
.pill-nav,
.pill-nav.is-scrolled {
  border-bottom-color: rgba(228, 184, 95, .24) !important;
  background: rgba(0, 0, 0, .82) !important;
}

.nav-logo img { filter: none; }
.nav-links a { color: var(--text-primary); }
.nav-links a::after { background: var(--gold); }
.menu-toggle,
.btn-login,
.zk-auth-chip { border-color: var(--border-strong) !important; }

.btn,
.btn-home,
.btn-submit,
.btn-action,
.btn-apply-large,
.obf-btn,
.btn-dashboard,
.btn-dashboard-secondary,
.link-btn {
  border-color: var(--gold) !important;
  color: var(--gold-soft) !important;
}

.btn:hover,
.btn-home:hover,
.btn-submit:hover,
.btn-action:hover,
.btn-apply-large:hover,
.obf-btn:hover,
.btn-dashboard:hover,
.btn-dashboard-secondary:hover,
.link-btn:hover {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: var(--gold-ink) !important;
}

.badge-pill,
.support-eyebrow,
.product-badge,
.obf-owner-badge { color: var(--gold-soft) !important; }

.breadcrumb-section {
  background: rgba(0, 0, 0, .72) !important;
}

.breadcrumb,
.support-breadcrumb { color: var(--text-muted) !important; }
.breadcrumb a:hover,
.support-breadcrumb a:hover,
.breadcrumb .current { color: var(--gold-soft) !important; }

:is(.about-header, .notice-header, .terms-header, .vip-header, .recruit-header, .obf-header),
.support-hero {
  border-bottom-color: rgba(228, 184, 95, .24) !important;
  background:
    radial-gradient(780px 420px at 82% 12%, rgba(255, 255, 255, .06), transparent 70%),
    linear-gradient(135deg, #000000 0%, #0a0a0a 58%, #000000 100%) !important;
}

.document-card,
.toc-box,
.highlight-box,
.kyc-box,
.plan-grid,
.tier-card,
.role-card,
.benefits-section,
.help-box,
.form-card,
.obf-card,
.support-sidebar-card,
.support-contact-card,
.support-bottom-card,
.dashboard-card,
.sidebar-card,
.login-detail-card,
.knowledge-list > * {
  border-color: var(--border-color) !important;
  background: linear-gradient(145deg, rgba(13, 13, 13, .96), rgba(6, 6, 6, .96)) !important;
}

.tier-card:hover,
.role-card:hover,
.link-card-hover:hover { border-color: var(--gold) !important; }
.tier-icon,
.role-icon,
.link-icon,
.benefits-list i,
.tier-card li i {
  color: var(--gold) !important;
  filter: none;
}

.support-hero-inner > p {
  margin: 0 0 34px !important;
}

.support-search {
  border-color: rgba(228, 184, 95, .48) !important;
  background: rgba(0, 0, 0, .82) !important;
}
.support-search:focus-within { border-color: var(--gold) !important; }
.support-search > i { color: var(--gold) !important; }
.support-contact-icon,
.category-button.active,
.category-button:hover {
  background: var(--gold) !important;
  color: var(--gold-ink) !important;
}

.modern-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top-color: rgba(228, 184, 95, .2) !important;
  background: #000 !important;
}

.modern-footer > .container {
  position: relative;
  z-index: 2;
}

.footer-film-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-film-layer .section-film-video {
  object-position: center;
  filter: saturate(.85) contrast(1.05) brightness(.42);
  transform: scale(1.015);
}

.footer-film-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .58) 30%, rgba(0, 0, 0, .74) 70%, #000 100%);
}

.link-col h4 { color: var(--gold-soft) !important; }
.link-col a:hover { color: var(--gold) !important; }
.social-links a:hover {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: var(--gold-ink) !important;
}

/* Recruitment: compact editorial hero and a deliberate 2-by-2 role grid. */
.recruitment-page .breadcrumb-section {
  border-bottom: 1px solid rgba(228, 184, 95, .12) !important;
}

.recruitment-page .fade-in-up {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(228, 184, 95, .22);
  background:
    radial-gradient(640px 360px at 86% 24%, rgba(255, 255, 255, .07), transparent 70%),
    linear-gradient(120deg, #000000, #0a0a0a 72%, #050505);
}

.recruitment-page .recruit-header {
  display: block;
  min-height: 0;
  max-width: 980px !important;
  padding: clamp(72px, 9vw, 124px) 0 clamp(76px, 10vw, 132px) !important;
  border: 0;
  background: transparent !important;
}

.recruitment-page .recruit-header h1 {
  max-width: 820px;
  margin: 20px 0 28px !important;
  font-size: clamp(3.4rem, 7.5vw, 6.8rem) !important;
  line-height: .92 !important;
}

.recruitment-page .recruit-header p {
  max-width: 700px !important;
  color: var(--text-secondary) !important;
  font-size: 1.05rem !important;
}

.recruitment-page .section {
  padding: clamp(80px, 9vw, 124px) 0;
}

.recruitment-page h2.section-header {
  margin-bottom: 42px !important;
  color: var(--text-primary) !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  text-align: left !important;
}

.recruitment-page .roles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px !important;
  margin-bottom: 0;
}

.recruitment-page .role-card {
  min-height: 270px;
  padding: 34px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recruitment-page .role-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  border-color: rgba(228, 184, 95, .34) !important;
  background: rgba(228, 184, 95, .08) !important;
}

.recruitment-page .role-card h3 {
  margin: 32px 0 10px;
  font-size: 1.22rem;
}

.recruitment-page .role-card p { color: var(--text-secondary); }

.recruitment-page > main > section.container {
  padding-bottom: clamp(80px, 9vw, 124px);
}

.recruitment-page .benefits-section {
  margin: 0;
  padding: clamp(34px, 6vw, 64px) !important;
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.4fr);
  align-items: start;
  gap: clamp(34px, 6vw, 80px);
}

.recruitment-page .benefits-header {
  margin: 0;
  text-align: left;
}

.recruitment-page .benefits-header h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.recruitment-page .benefits-list {
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: none;
}

.recruitment-page .benefits-list li {
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  box-shadow: none;
}

.recruitment-page .apply-cta {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto clamp(80px, 9vw, 124px);
  padding: clamp(46px, 7vw, 76px) 24px;
  border-color: rgba(228, 184, 95, .28) !important;
  background:
    radial-gradient(520px 220px at 50% 0%, rgba(228, 184, 95, .12), transparent 72%),
    linear-gradient(145deg, #0a0a0a, #000000) !important;
}

.recruitment-page .apply-cta h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

@media (max-width: 760px) {
  .recruitment-page .roles-grid { grid-template-columns: 1fr; }
  .recruitment-page .role-card { min-height: 240px; padding: 28px !important; }
  .recruitment-page .benefits-section { grid-template-columns: 1fr; }
  .recruitment-page .recruit-header { padding: 64px 0 78px !important; }
}

/* Recruitment: full-screen cinematic opening. */
.recruitment-page .recruitment-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(228, 184, 95, .22);
}

.recruitment-hero-video,
.recruitment-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.recruitment-hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.recruitment-hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .12) 35%, rgba(0, 0, 0, .88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .2) 65%, rgba(0, 0, 0, .38) 100%);
}

.recruitment-page .recruitment-hero-inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 116px;
  padding-bottom: clamp(74px, 10vh, 112px);
}

.recruitment-page .recruitment-hero .breadcrumb {
  position: absolute;
  top: 112px;
  left: 20px;
  color: rgba(255, 255, 255, .68);
}

.recruitment-page .recruitment-hero .breadcrumb a { color: inherit; }
.recruitment-page .recruitment-hero .breadcrumb .current { color: #fff; }

.recruitment-page .recruitment-hero .recruit-header {
  width: min(100%, 1040px);
  max-width: none !important;
  min-height: 0;
  margin: 0;
  padding: 0 !important;
  text-align: left;
  border: 0;
  background: transparent !important;
  animation: recruitmentHeroIn .9s cubic-bezier(.2, .8, .2, 1) both;
}

.recruitment-page .recruitment-hero .recruit-header h1 {
  max-width: 920px;
  margin: 20px 0 26px !important;
  color: #fff !important;
  font-size: clamp(4rem, 9.2vw, 8.5rem) !important;
  font-weight: 700;
  line-height: .88 !important;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-shadow: 0 8px 42px rgba(0, 0, 0, .62);
}

.recruitment-page .recruitment-hero .recruit-header p {
  max-width: 660px !important;
  margin: 0;
  color: rgba(255, 255, 255, .78) !important;
  font-size: clamp(.95rem, 1.5vw, 1.12rem) !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .8);
}

.recruitment-scroll-cue {
  position: absolute;
  right: 20px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.recruitment-scroll-cue i { animation: scrollCue 1.8s ease-in-out infinite; }

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

@media (max-width: 680px) {
  .recruitment-page .recruitment-hero-inner {
    padding-top: 96px;
    padding-bottom: 92px;
  }

  .recruitment-page .recruitment-hero .breadcrumb { top: 92px; }
  .recruitment-page .recruitment-hero-video { object-position: 58% center; }
  .recruitment-page .recruitment-hero .recruit-header h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem) !important;
    line-height: .92 !important;
  }
  .recruitment-scroll-cue { bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .recruitment-page .recruitment-hero .recruit-header { animation: none; }
  .recruitment-scroll-cue i { animation: none; }
  .recruitment-hero-video { display: none; }
}

/* Obfuscator: use the same full-screen hero structure as recruitment.
   These page-scoped rules intentionally override the older shared .obf-header
   band without affecting the tool, authentication, or obfuscation flow. */
.obfuscator-page .obf-hero {
  min-height: 100svh;
}

.obfuscator-page .obf-hero-inner {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding-top: 116px;
  padding-bottom: clamp(74px, 10vh, 112px);
}

.obfuscator-page .obf-hero .breadcrumb {
  position: absolute;
  top: 112px;
  left: 20px;
  color: rgba(255, 255, 255, .68) !important;
}

.obfuscator-page .obf-hero .breadcrumb a { color: inherit; }
.obfuscator-page .obf-hero .breadcrumb .current { color: #fff !important; }

.obfuscator-page .obf-hero .obf-header {
  display: block;
  width: min(100%, 1040px);
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  background: transparent !important;
  text-align: left !important;
}

.obfuscator-page .obf-hero .obf-header h1 {
  max-width: 920px;
  margin: 20px 0 26px !important;
  font-size: clamp(4rem, 9.2vw, 8.5rem) !important;
  font-weight: 700 !important;
  line-height: .88 !important;
  letter-spacing: -.065em !important;
  text-wrap: balance;
}

.obfuscator-page .obf-hero .obf-header p {
  max-width: 660px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: clamp(.95rem, 1.5vw, 1.12rem) !important;
}

.obf-scroll-cue {
  position: absolute;
  right: 20px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.obf-scroll-cue i { animation: scrollCue 1.8s ease-in-out infinite; }

@media (max-width: 680px) {
  .obfuscator-page .obf-hero,
  .obfuscator-page .obf-hero-inner {
    min-height: 100svh;
  }

  .obfuscator-page .obf-hero-inner {
    padding-top: 96px;
    padding-bottom: 92px;
  }

  .obfuscator-page .obf-hero .breadcrumb {
    top: 92px;
    left: 20px;
  }

  .obfuscator-page .obf-hero .obf-header h1 {
    font-size: clamp(3.25rem, 16vw, 5.3rem) !important;
    line-height: .92 !important;
  }

  .obfuscator-page .obf-hero .obf-header p {
    font-size: .92rem !important;
    line-height: 1.65;
  }

  .obfuscator-page .obf-wrap { margin-bottom: 56px; }
  .obfuscator-page .obf-card { padding: 22px 18px; border-radius: 16px; }
  .obfuscator-page .obf-row { align-items: stretch; }
  .obfuscator-page .obf-row .obf-btn { justify-content: center; }
  .obf-scroll-cue { right: 16px; bottom: 30px; }
}

@media (max-width: 420px) {
  .obfuscator-page .obf-row .obf-btn { width: 100%; }
  .obfuscator-page .obf-tier-option { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .obf-scroll-cue i { animation: none; }
}

/* About: match the recruitment page's full-screen cinematic opening. */
.about-page .about-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(228, 184, 95, .22);
}

.about-hero-video,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.about-hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .16) 64%, rgba(0, 0, 0, .36) 100%);
}

.about-page .about-hero-inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 116px;
  padding-bottom: clamp(74px, 10vh, 112px);
}

.about-page .about-hero .breadcrumb {
  position: absolute;
  top: 112px;
  left: 20px;
  color: rgba(255, 255, 255, .68);
}

.about-page .about-hero .breadcrumb a { color: inherit; }
.about-page .about-hero .breadcrumb .current { color: #fff !important; }

.about-page .about-hero .about-header {
  width: min(100%, 1040px);
  max-width: none !important;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  text-align: left !important;
  border: 0;
  background: transparent !important;
  animation: aboutHeroIn .9s cubic-bezier(.2, .8, .2, 1) both;
}

.about-page .about-hero .about-header h1 {
  max-width: 920px;
  margin: 20px 0 26px !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.2vw, 8.5rem) !important;
  font-weight: 700 !important;
  line-height: .88 !important;
  letter-spacing: -.065em !important;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 8px 42px rgba(0, 0, 0, .62);
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.about-page .about-hero .about-header p {
  max-width: 660px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .8) !important;
  font-size: clamp(.95rem, 1.5vw, 1.12rem) !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .8);
}

.about-scroll-cue {
  position: absolute;
  right: 20px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-scroll-cue i { animation: scrollCue 1.8s ease-in-out infinite; }

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

@media (max-width: 680px) {
  .about-page .about-hero-inner {
    padding-top: 96px;
    padding-bottom: 92px;
  }

  .about-page .about-hero .breadcrumb { top: 92px; }
  .about-page .about-hero-video { object-position: 50% center; }
  .about-page .about-hero .about-header h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem) !important;
    line-height: .92 !important;
  }
  .about-scroll-cue { bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-hero .about-header { animation: none; }
  .about-scroll-cue i { animation: none; }
  .about-hero-video { display: none; }
}

/* === Cinematic video bands: payment + CTA (photography-first, SpaceX-style) === */
.payment-cinematic,
.cta-cinematic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000 !important;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.payment-cinematic > .container,
.cta-cinematic > .container {
  position: relative;
  z-index: 2;
}

.cinematic-film-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cinematic-film-layer .section-film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.payment-cinematic .section-film-video {
  filter: saturate(.92) contrast(1.05) brightness(.66);
}

.cta-cinematic .section-film-video {
  filter: saturate(.96) contrast(1.04) brightness(.72);
}

.cinematic-film-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .34) 32%, rgba(0, 0, 0, .44) 62%, rgba(0, 0, 0, .92) 100%);
}

.cinematic-eyebrow {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-mono, "SFMono-Regular", ui-monospace, monospace);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Payment band */
.payment-cinematic {
  padding-block: clamp(120px, 22vh, 240px) !important;
}

.cinematic-lead {
  max-width: 760px;
}

.cinematic-lead h2 {
  color: #fff !important;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: .01em;
  margin-bottom: 18px;
}

.cinematic-lead p {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 400;
  line-height: 1.6;
}

.payment-methods-row {
  margin-top: clamp(58px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.payment-method {
  padding: 4px clamp(20px, 2.6vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.payment-method:first-child {
  padding-left: 0;
  border-left: none;
}

.payment-method h3 {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 650;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.payment-method p {
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.75;
}

/* CTA band */
.cta-cinematic {
  padding-block: clamp(150px, 27vh, 320px) !important;
  min-height: 84vh;
  display: flex;
  align-items: center;
}

.cta-cinematic .cta-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-cinematic .cinematic-eyebrow {
  margin-bottom: 26px;
}

.cta-cinematic h2 {
  color: #fff !important;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .004em;
  margin-bottom: 26px;
}

.cta-cinematic p {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 44px;
}

@media (max-width: 860px) {
  .payment-methods-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 0;
  }
  .payment-method:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 480px) {
  .payment-methods-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .payment-method {
    padding-left: 0;
    border-left: none;
  }
}

/* Giveaway page -------------------------------------------------------------
   Two full-bleed video bands (hero + join), no card grids — matches the
   SpaceX-inspired system: photography/video does the work, chrome is a
   single ghost pill CTA per band. */
.giveaway-page .giveaway-hero,
.giveaway-page .giveaway-join {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(228, 184, 95, .22);
  display: flex;
  align-items: flex-end;
}

.giveaway-hero-video,
.giveaway-hero-shade,
.giveaway-join-video,
.giveaway-join-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.giveaway-hero-video,
.giveaway-join-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.giveaway-hero-shade,
.giveaway-join-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .18) 64%, rgba(0, 0, 0, .38) 100%);
}

.giveaway-page .giveaway-hero-inner,
.giveaway-page .giveaway-join-inner {
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 116px;
  padding-bottom: clamp(74px, 10vh, 112px);
}

.giveaway-page .giveaway-hero .breadcrumb,
.giveaway-page .giveaway-join .breadcrumb {
  position: absolute;
  top: 112px;
  left: 20px;
  color: rgba(255, 255, 255, .68);
}
.giveaway-page .breadcrumb a { color: inherit; }
.giveaway-page .breadcrumb .current { color: #fff !important; }

.giveaway-header { width: min(100%, 1040px); }

.giveaway-header h1 {
  max-width: 920px;
  margin: 20px 0 26px !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.2vw, 8.5rem) !important;
  font-weight: 700 !important;
  line-height: .88 !important;
  letter-spacing: -.065em !important;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 8px 42px rgba(0, 0, 0, .62);
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.giveaway-header p {
  max-width: 660px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .8) !important;
  font-size: clamp(.95rem, 1.5vw, 1.12rem) !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .8);
}

.giveaway-scroll-cue {
  position: absolute;
  right: 20px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.giveaway-scroll-cue i { animation: scrollCue 1.8s ease-in-out infinite; }

.giveaway-panel { width: min(100%, 720px); }

.giveaway-panel h2 {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: .98 !important;
  letter-spacing: -.03em !important;
  margin: 0 0 22px !important;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .6);
}

.giveaway-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px 32px;
  margin: 0 0 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.giveaway-meta-item span {
  display: block;
  color: rgba(255, 255, 255, .56);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.giveaway-meta-item strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.giveaway-status-msg {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  margin: 0 0 24px;
  max-width: 560px;
}
.giveaway-status-msg.is-error { color: #ff8a8a; }
.giveaway-status-msg.is-success { color: #7be0a0; }

.giveaway-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.giveaway-empty { width: min(100%, 720px); }
.giveaway-empty h2 {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem) !important;
  margin: 0 0 16px !important;
}
.giveaway-empty p {
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 0 26px;
}

/* History — plain hairline-divided rows, deliberately not a card grid. */
.giveaway-history { border-top: 1px solid var(--border-color); }
.giveaway-history-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) minmax(120px, 1fr) minmax(90px, .6fr) minmax(140px, 1fr) minmax(160px, 1.6fr);
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-color);
}
.giveaway-history-row.is-head {
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-bottom: 14px;
}
.giveaway-history-row .col-name { color: #fff; font-weight: 700; }
.giveaway-history-row .col-winners { color: var(--text-secondary); font-size: .88rem; }

@media (max-width: 900px) {
  .giveaway-history-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
  }
  .giveaway-history-row.is-head { display: none; }
  .giveaway-history-row > div::before {
    content: attr(data-label);
    display: block;
    color: var(--text-muted);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
}

@media (max-width: 680px) {
  .giveaway-page .giveaway-hero-inner,
  .giveaway-page .giveaway-join-inner {
    padding-top: 96px;
    padding-bottom: 92px;
  }
  .giveaway-page .breadcrumb { top: 92px; }
  .giveaway-hero-video, .giveaway-join-video { object-position: 50% center; }
  .giveaway-header h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem) !important;
    line-height: .92 !important;
  }
  .giveaway-scroll-cue { bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .giveaway-hero-video, .giveaway-join-video, .vip-hero-video, .faq-hero-video { display: none; }
}

/* VIP page ------------------------------------------------------------------
   Same full-bleed video-hero band as the giveaway page's first section. */
.vip-page .vip-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(228, 184, 95, .22);
  display: flex;
  align-items: flex-end;
}

.vip-hero-video,
.vip-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vip-hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.vip-hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .18) 64%, rgba(0, 0, 0, .38) 100%);
}

.vip-page .vip-hero-inner {
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 116px;
  padding-bottom: clamp(74px, 10vh, 112px);
}

.vip-page .vip-hero .breadcrumb {
  position: absolute;
  top: 112px;
  left: 20px;
  color: rgba(255, 255, 255, .68);
}
.vip-page .vip-hero .breadcrumb a { color: inherit; }
.vip-page .vip-hero .breadcrumb .current { color: #fff !important; }

@media (max-width: 680px) {
  .vip-page .vip-hero-inner { padding-top: 96px; padding-bottom: 92px; }
  .vip-page .vip-hero .breadcrumb { top: 92px; }
  .vip-hero-video { object-position: 50% center; }
}

/* FAQ page (系統設定問題) --------------------------------------------------
   Same full-bleed video-hero band as the vip/giveaway pages' first section;
   reuses .giveaway-header/.giveaway-scroll-cue for the header text. */
.faq-page .faq-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(228, 184, 95, .22);
  display: flex;
  align-items: flex-end;
}

.faq-hero-video,
.faq-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.faq-hero-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.faq-hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .18) 64%, rgba(0, 0, 0, .38) 100%);
}

.faq-page .faq-hero-inner {
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 116px;
  padding-bottom: clamp(74px, 10vh, 112px);
}

.faq-page .faq-hero .breadcrumb {
  position: absolute;
  top: 112px;
  left: 20px;
  color: rgba(255, 255, 255, .68);
}
.faq-page .faq-hero .breadcrumb a { color: inherit; }
.faq-page .faq-hero .breadcrumb .current { color: #fff !important; }

@media (max-width: 680px) {
  .faq-page .faq-hero-inner { padding-top: 96px; padding-bottom: 92px; }
  .faq-page .faq-hero .breadcrumb { top: 92px; }
  .faq-hero-video { object-position: 50% center; }
}

/* VIP page — plans band. Same full-bleed video treatment as the giveaway
   page's second section, deliberately not a card grid. */
.vip-page .vip-plans {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  padding: clamp(90px, 14vh, 140px) 0;
}

.vip-plans-video,
.vip-plans-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vip-plans-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.vip-plans-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .32) 40%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .55) 100%);
}

.vip-plans-inner { width: 100%; }

.vip-plans-inner > .badge-pill { color: var(--gold-soft) !important; }

.vip-plans-inner h2 {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem) !important;
  font-weight: 700 !important;
  letter-spacing: -.03em !important;
  margin: 14px 0 56px !important;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .6);
}

.vip-plan-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  align-items: start;
}

.vip-plan-divider {
  align-self: stretch;
  background: rgba(255, 255, 255, .18);
}

.vip-plan-col h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
}

.vip-plan-col.is-vip h3 i { color: var(--gold-soft); }
.vip-plan-col.is-supporter h3 i { color: #5865F2; }

.vip-plan-condition {
  color: rgba(255, 255, 255, .58);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.vip-plan-condition strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 6px;
}

.vip-plan-perks { list-style: none; padding: 0; margin: 0 0 34px; }
.vip-plan-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: .96rem;
  margin-bottom: 13px;
}
.vip-plan-perks li i { color: #00b84c; font-size: .9rem; margin-top: 4px; }

@media (max-width: 900px) {
  .vip-plan-row { grid-template-columns: 1fr; gap: 44px; }
  .vip-plan-divider { width: 100%; height: 1px; }
}

@media (max-width: 680px) {
  .vip-page .vip-plans { padding: 70px 0; }
  .vip-plans-video { object-position: 50% center; }
}

@media (prefers-reduced-motion: reduce) {
  .vip-plans-video { display: none; }
}
