/* ── RESET & TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C8001E;
  --red-dark:   #8C0015;
  --red-deeper: #5A000D;
  --red-tint:   #FFF2F4;
  --red-tint2:  #FFE0E4;
  --gold:       #B8860B;
  --gold-light: #F5E9C8;
  --surface:    #FAFAF8;
  --white:      #FFFFFF;
  --ink:        #1C1C1C;
  --ink-mid:    #3A3A3A;
  --muted:      #717171;
  --line:       rgba(0,0,0,0.07);
  --line-red:   rgba(200,0,30,0.15);
  --r:          12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── LANGUAGE TOGGLE ────────────────────────────────────── */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(28,28,28,0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px; height: 84px;
}
.nav-logos {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.lang-logo {
  height: 56px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.nav-times {
  margin: 0;
  padding: 0 10px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
}

@media(max-width:768px){
  .lang-bar { padding: 0 16px; }
  .lang-logo { height: 32px; }
  .nav-times { padding: 0 4px; }
}
.lang-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.lang-brand strong { color: var(--red); }

.lang-switch {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 4px;
}

.lang-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 4px 14px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  background: transparent;
}

.lang-btn.active {
  background: var(--red);
  color: #fff;
}

/* Language content visibility */
[data-lang="zh"] { display: none; }
body.zh [data-lang="en"] { display: none; }
body.zh [data-lang="zh"] { display: block; }
body.zh [data-lang="zh"].inline { display: inline; }
body.zh [data-lang="en"].inline { display: none; }
[data-lang="en"].inline { display: inline; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: 44px;
}

@media(max-width:768px){
  .hero { grid-template-columns: 1fr; }
}

/* Left: Red panel */
.hero-left {
  background: var(--red);
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 48px;
  overflow: hidden;
}

/* Diagonal cut into right panel */
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -119px; bottom: 0;
  width: 120px;
  background: var(--red);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* Watermark */
.hero-watermark {
  position: absolute;
  bottom: -20px; right: -20px;
  font-family: 'Newsreader', serif;
  font-size: 180px; font-weight: 800; font-style: italic;
  color: rgba(255,255,255,0.06);
  line-height: 1; white-space: nowrap;
  user-select: none; pointer-events: none;
  z-index: 0;
}

/* Subtle grid */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 60px);
  z-index: 0;
}

.hero-left-content { position: relative; z-index: 1; }

.hero-collab {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 13px;
  animation: fadeUp 0.7s ease both;
}

.collab-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-eyebrow {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em; text-transform: uppercase;
  /* margin-bottom: 12px; */
  padding: 0 0 0 20px;
  animation: fadeUp 0.7s ease both 0.08s;
}

.hero-eyebrow-inline {
  font-size: 27px; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.30em; text-transform: uppercase;
  margin-bottom: 24px;
  padding: 0 0 0 11px;
  animation: fadeUp 0.7s ease both 0.08s;
}

.hero-h1 {
  font-family: 'Newsreader', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.0;
  color: #fff;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease both 0.12s;
}

.hero-h1 .amount {
  display: block;
  font-style: italic;
  color: #fff;
  text-shadow: 0 0 80px rgba(255,255,255,0.25);
}

.hero-subtitle {
  font-size: clamp(14px, 1.6vw, 16px); font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 360px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease both 0.18s;
}

.hero-subtitle strong { color: #fff; font-weight: 600; }

.hero-cta-wrap {
  display: flex; flex-direction: column; gap: 14px;
  animation: fadeUp 0.7s ease both 0.24s;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 15px 36px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
  margin-right: 12px;
}

.btn-hero-post {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1877F2;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 15px 18px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.28); }
.btn-hero svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-hero-post:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.28); }
.btn-hero-post svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-fine {
  font-size: 11px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* Right: White panel */
.hero-right {
  background: var(--surface);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 72px 48px 72px 96px;
  position: relative;
}

@media(max-width:768px){
  .hero-left { padding: 80px 28px 60px; }
  .hero-left::after { display: none; }
  .hero-right { padding: 48px 28px 60px; }
  .hero-watermark { font-size: 100px; }
}

.hero-deadline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-tint);
  border: 1px solid var(--red-tint2);
  color: var(--red);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 36px;
  width: fit-content;
  animation: fadeUp 0.7s ease both 0.1s;
}

.eligibility-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
  animation: fadeUp 0.7s ease both 0.14s;
}

.elig-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease both 0.18s;
}

.elig-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.55; color: var(--ink-mid);
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.elig-list li:hover { border-color: var(--red); }

.elig-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px; margin-top: 1px;
}

.req-tag {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--gold-light);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 10px; padding: 14px 16px;
  animation: fadeUp 0.7s ease both 0.22s;
}

.req-tag .ico { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.req-tag p { font-size: 13px; line-height: 1.6; color: var(--ink-mid); }
.req-tag p strong { color: var(--ink); font-weight: 600; }

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

/* ── STATS BAND ─────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 0 24px;
}

.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

@media(max-width:640px){ .stats-inner { grid-template-columns: repeat(2,1fr); } }

.stat-cell {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-cell .num {
  font-family: 'Newsreader', serif;
  font-size: 36px; font-weight: 800; font-style: italic;
  color: #fff; display: block; line-height: 1;
  margin-bottom: 4px;
}

.stat-cell .num.red { color: var(--red); }

.stat-cell .lbl {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* ── BENTO SECTION ──────────────────────────────────────── */
.bento-section {
  background: var(--white);
  padding: 96px 24px;
}

.container { max-width: 1000px; margin: 0 auto; }

.section-header { margin-bottom: 52px; }

.section-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-tint);
  border: 1px solid var(--line-red);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px;
}

.section-h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--ink); line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 600px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

@media(max-width:768px){ .bento-grid { grid-template-columns:1fr; } }

.bento-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden;
}

.bento-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,0,30,0.08);
}

.bento-card.span2 { grid-column: span 2; }
.bento-card.tall  { grid-row: span 2; }

@media(max-width:768px){
  .bento-card.span2 { grid-column: span 1; }
  .bento-card.tall  { grid-row: span 1; }
}

.bento-card .card-num {
  font-family: 'Newsreader', serif;
  font-size: 80px; font-weight: 800; font-style: italic;
  color: var(--red-tint2);
  position: absolute; top: -12px; right: 12px;
  line-height: 1; user-select: none;
}

.card-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}

.bento-card p {
  font-size: 14px; line-height: 1.7; color: var(--ink-mid);
}

.bento-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.bento-card ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; line-height: 1.55; color: var(--ink-mid);
}

.bento-card ul li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 8px;
}

/* Warning card */
.bento-card.warn {
  background: var(--red-tint);
  border-color: var(--red-tint2);
}

.bento-card.warn:hover { border-color: var(--red); }
.bento-card.warn h3 { color: var(--red-dark); }
.bento-card.warn p, .bento-card.warn li { color: var(--ink-mid); }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.steps-section {
  background: var(--ink);
  padding: 80px 24px;
}

.steps-section .section-h2 { color: #fff; }
.steps-section .section-sub { color: rgba(255,255,255,0.5); }
.steps-section .section-kicker { background: rgba(200,0,30,0.2); border-color: rgba(200,0,30,0.3); }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden;
  margin-top: 48px;
}

@media(max-width:640px){ .steps-grid { grid-template-columns:1fr; } }

.step-cell {
  background: var(--ink);
  padding: 36px 28px;
}

.step-num {
  font-family: 'Newsreader', serif;
  font-size: 52px; font-weight: 800; font-style: italic;
  color: rgba(200,0,30,0.3);
  line-height: 1; margin-bottom: 12px;
}

.step-cell h3 {
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px;
}

.step-cell p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.5); }

/* ── FORM SECTION ───────────────────────────────────────── */
.form-section {
  background: var(--surface);
  padding: 96px 24px;
}

.form-layout {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: start;
}

@media(max-width:860px){ .form-layout { grid-template-columns:1fr; gap:48px; } }

.form-intro h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  color: var(--ink); line-height: 1.15; margin-bottom: 14px;
}

.form-intro p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.trust-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.trust-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-mid);
}

.trust-list li .tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red-tint); border: 1px solid var(--red-tint2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--red); font-size: 11px; font-weight: 700;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
}

@media(max-width:480px){ .form-card { padding: 24px 18px; } }

.form-card-header {
  background: var(--red);
  margin: -36px -32px 28px;
  padding: 20px 28px;
  border-radius: 20px 20px 0 0;
}

@media(max-width:480px){ .form-card-header { margin: -24px -18px 24px; padding: 16px 18px; } }

.form-card-header h3 {
  font-family: 'Newsreader', serif;
  font-size: 20px; font-weight: 800; font-style: italic; color: #fff;
}

.form-card-header p { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--ink); margin-bottom: 6px;
}

.form-group label span { color: var(--red); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-size: 14px; color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 10px; padding: 11px 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px; cursor: pointer;
}

.form-group textarea { min-height: 80px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,0,30,0.1);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #C0C0C0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:480px){ .form-row { grid-template-columns: 1fr; } }

.form-divider { height: 1px; background: var(--line); margin: 18px 0; }

.consent-row {
  display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px;
}

.consent-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--red); cursor: pointer;
}

.consent-row label { font-size: 12px; color: var(--muted); line-height: 1.6; cursor: pointer; }

.btn-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; /* WhatsApp Green */
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 15px 20px; border-radius: 100px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: #128C7E; /* WhatsApp dark green */
  box-shadow: 0 10px 36px rgba(37,211,102,0.45);
}

.form-lock {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; color: var(--muted); margin-top: 12px;
}

/* Success state */
.success-state { display: none; text-align: center; padding: 32px 16px; }
.success-state.show { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.success-circle {
  width: 68px; height: 68px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}

.success-state h3 {
  font-family: 'Newsreader', serif;
  font-size: 22px; font-weight: 800; color: var(--ink);
}

.success-state p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 300px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--red-deeper);
  padding: 52px 24px;
  text-align: center;
}

.footer-logos {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 14px;
}

.f-logo {
  font-family: 'Newsreader', serif;
  font-size: 17px; font-weight: 800; font-style: italic; color: #fff;
}

.f-sep { color: rgba(255,255,255,0.2); font-size: 16px; }

.f-deadline {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}

footer p { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.8; }
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.75); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
