  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url(/assets/fonts/inter-700.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(/assets/fonts/inter-400.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url(/assets/fonts/inter-500.woff2) format('woff2');
  }

  :root {
    --bg: #000000;
    --card: #161616;
    --card-hi: #1F1F1F;
    --line: #282828;
    --line-hi: #3A3A3A;
    --glass: rgba(255, 255, 255, 0.06);
    --heading: #FFFFFF;
    --body: #AEAEAE;
    --faint: #7C7C7C;
    --accent: #9177F0;
    --verified: #17C964;
    --pink: #F873FF;
    --cyan: #40CFFF;
    --grad: linear-gradient(45deg, #D14C9E, #8250C0, #4B7FC9);
    /* Brand sheet: warm gold / champagne is the accent for premium, revenue and
       success moments. Everything else stays on the pink-to-blue gradient. */
    --gold: #E8B95C;
    --gold-soft: #F3D79A;
    --grad-gold: linear-gradient(45deg, #C9902F, #F2CE84 52%, #DDB35E);
    --r-card: 24px;
    --r-btn: 8px;
  }

  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  body {
    background: var(--bg);
    color: var(--body);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  h1, h2, h3 { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; color: var(--heading); text-wrap: balance; margin: 0; }

  .text-gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
  }

  /* ---------- nav ---------- */
  nav {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .logo { display: inline-flex; align-items: center; text-decoration: none; }
  .logo-img { display: block; height: 26px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { color: var(--body); text-decoration: none; font-size: 15px; }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--heading); }
  .nav-links a:focus-visible, .store:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
  .btn:focus-visible, .btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

  /* ---------- language toggle ---------- */
  /* EN | 中文 pair in the nav. The current language is the non-link half, so
     there is always something to click and always something showing state. */
  /* nowrap: at 375px the bar gets tight enough to break 中文 across two lines. */
  .lang { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; white-space: nowrap; }
  .lang a { color: var(--faint); text-decoration: none; }
  .lang a:hover, .lang a:focus-visible { color: var(--heading); }
  .lang .on { color: var(--heading); }
  .lang .sep { color: var(--line-hi); }

  /* Traditional Chinese: system CJK faces only — no webfont, since a CJK
     subset would dwarf the whole page. Inter still serves the Latin runs
     (fan dance, Stripe, prices) because it comes first in the stack. */
  :lang(zh-Hant) body,
  html[lang^="zh"] body {
    font-family: 'Inter', 'PingFang TC', 'Hiragino Sans CJK TC', 'Noto Sans TC',
                 'Microsoft JhengHei', 'Helvetica Neue', Arial, sans-serif;
  }
  html[lang^="zh"] h1, html[lang^="zh"] h2, html[lang^="zh"] h3 {
    font-family: inherit;
    /* CJK has no spaces to break on: let long headings wrap anywhere rather
       than punch out of the column. */
    line-break: strict; word-break: normal;
  }
  /* CJK breaks between any two characters, which splits words like 你定價 across
     lines. Headlines mark their clauses .nb so breaks land only between them. */
  .nb { white-space: nowrap; }
  html[lang^="zh"] .eyebrow { letter-spacing: 0.08em; }
  html[lang^="zh"] .hero h1 { line-height: 1.22; }
  html[lang^="zh"] .cta h2 { line-height: 1.28; }

  /* ---------- buttons ---------- */
  /* Primary CTA mirrors the app's GradientButton: brand gradient pill, white label. */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(90deg, #D14C9E, #8250C0, #4B7FC9); color: #FFFFFF;
    border: none; border-radius: 999px;
    padding: 13px 24px; font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap;
    transition: filter 0.15s;
  }
  .btn:hover { filter: brightness(1.08); }
  .nav-links a.btn { color: #FFFFFF; }
  .nav-links a.btn:hover { color: #FFFFFF; }

  /* Secondary CTA: the fan track, deliberately quieter than "Apply to create". */
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--heading);
    border: 1px solid var(--line-hi); border-radius: 999px;
    padding: 12px 22px; font-size: 15px; font-weight: 500; text-decoration: none; white-space: nowrap;
    transition: border-color 0.15s, background 0.15s;
  }
  .btn-ghost:hover { border-color: var(--accent); background: var(--glass); }

  .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

  /* Nav CTA has two whole labels rather than one split across spans: .btn is a
     flex row with a gap, so a split label would show a double space (and in
     Chinese, a space that does not belong at all). Only one is ever rendered. */
  .btn-short { display: none; }

  .stores { display: flex; gap: 12px; flex-wrap: wrap; }
  .store {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--card-hi); border: 1px solid var(--line); border-radius: var(--r-btn);
    padding: 10px 18px 10px 14px; text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
  }
  .store:hover { background: #282828; border-color: var(--accent); }
  .store svg { flex: none; }
  .store small { display: block; font-size: 10.5px; color: var(--faint); letter-spacing: 0.04em; line-height: 1.2; }
  .store strong { display: block; font-size: 15px; color: var(--heading); font-weight: 500; line-height: 1.25; }

  /* ---------- hero ---------- */
  .hero {
    display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px; align-items: center;
    padding: 88px 0 100px;
  }
  .hero-copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
  .hero h1 { font-size: clamp(34px, 4.8vw, 68px); line-height: 1.08; letter-spacing: -0.01em; }
  .hero .lede { font-size: 19px; max-width: 30em; }
  .hero .lede strong { color: var(--heading); font-weight: 500; }

  .phone-col { display: flex; justify-content: center; }


  .store-shot {
    border-radius: 44px; overflow: hidden; line-height: 0;
    filter: drop-shadow(0 34px 70px rgba(209, 76, 158, 0.18)) drop-shadow(0 22px 50px rgba(75, 127, 201, 0.16));
  }
  .store-shot img { display: block; width: 100%; height: auto; }
  .hero .store-shot { width: 330px; max-width: 100%; animation: float 7s ease-in-out infinite; }
  @keyframes float { 50% { transform: translateY(-10px); } }
  @media (prefers-reduced-motion: reduce) { .hero .store-shot { animation: none; } }

  .shots-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .shots-row figure { margin: 0; display: flex; flex-direction: column; gap: 16px; align-items: center; }
  .shots-row .store-shot { width: 100%; max-width: 270px; border-radius: 36px; filter: none; }
  .shots-row figcaption { font-size: 14px; color: var(--faint); text-align: center; }
  /* Disclosure under the screens: they are mockups of a UI that is not shipped
     in this language yet. Keep it quiet but present. */
  .shots-note { margin: 22px 0 0; font-size: 13.5px; color: var(--faint); text-align: center; }
  .cert-col .store-shot { width: 320px; max-width: 100%; }

  .share-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 64px; align-items: center; }
  .share-cards { display: flex; flex-direction: column; gap: 18px; }
  .share-col { display: flex; justify-content: center; }
  .share-col .store-shot { width: 300px; max-width: 100%; }

  /* ---------- sections ---------- */
  section { padding: 96px 0; border-top: 1px solid rgba(255,255,255,0.05); }
  .sec-head { display: flex; flex-direction: column; gap: 14px; max-width: 39em; margin-bottom: 56px; }
  .sec-head h2 { font-size: clamp(30px, 4vw, 42px); line-height: 1.15; }
  .sec-head p { margin: 0; font-size: 18px; }

  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
    padding: 30px 28px 32px; display: flex; flex-direction: column; gap: 14px;
  }
  .step-num {
    font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--line-hi); color: var(--heading);
  }
  .step h3 { font-size: 21px; }
  .step p { margin: 0; font-size: 15.5px; }
  .step p em { color: var(--heading); font-style: normal; font-weight: 500; }

  /* earnings: the split gets a card-sized number, not a bullet */
  .figure-big {
    font-size: 44px; font-weight: 700; color: var(--heading); line-height: 1.05; letter-spacing: -0.02em;
  }
  /* Referral: the rate and the term are the whole pitch, so they get figure
     treatment instead of hiding inside a sentence in a quiet bar. */
  .referral-hero {
    margin-top: 24px;
    display: flex; align-items: center; gap: 34px; flex-wrap: wrap;
    background: linear-gradient(120deg, rgba(232,185,92,0.14), rgba(217,164,65,0.09) 58%, rgba(232,185,92,0.06));
    border: 1px solid rgba(232,185,92,0.40); border-radius: var(--r-card);
    padding: 30px 34px;
  }
  /* Referral money is a revenue moment, so it carries gold, not the brand gradient. */
  /* background-image, not background: the shorthand would reset the
     background-clip:text that .figure-grad relies on, and the number would
     render as a solid gold block. */
  .referral-hero .figure-grad { background-image: var(--grad-gold); }
  .referral-hero .step-ico { color: var(--gold); border-color: rgba(232,185,92,0.45); }
  .referral-hero .ref-copy p em { color: var(--gold-soft); }
  .ref-figure { display: flex; flex-direction: column; gap: 12px; flex: none; }
  .ref-figure .row { display: flex; align-items: center; gap: 16px; }
  .referral-hero .figure-grad { font-size: 54px; }
  .ref-term {
    align-self: flex-start;
    border: 1px solid rgba(232,185,92,0.55); border-radius: 999px;
    padding: 5px 14px; font-size: 13.5px; font-weight: 600; color: var(--gold-soft);
    white-space: nowrap;
  }
  .ref-copy { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 8px; }
  .ref-copy h3 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.25; }
  .ref-copy p { margin: 0; font-size: 16.5px; }
  .ref-copy p em { color: var(--heading); font-style: normal; font-weight: 500; }

  /* verification */
  .own { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
  .own .sec-head { margin-bottom: 28px; }
  .checks { display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; list-style: none; }
  .checks li { display: flex; gap: 14px; align-items: baseline; font-size: 16.5px; }
  .checks li strong { color: var(--heading); font-weight: 500; }
  .check { color: var(--verified); font-weight: 700; flex: none; transform: translateY(-1px); }

  .cert-col { display: flex; justify-content: center; }

  /* share */
  .share-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .share-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
    padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px;
  }
  .share-card h3 { font-size: 18px; }
  .share-card p { margin: 0; font-size: 15px; }
  .share-glyph { font-size: 20px; color: var(--accent); font-weight: 700; font-family: 'Inter', sans-serif; }

  /* fan band: the whole fan story, compressed to one section */
  .fan-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: 64px; align-items: center; }
  .fan-band .sec-head { margin-bottom: 28px; }
  .fan-steps { display: flex; flex-direction: column; gap: 14px; margin: 0 0 28px; padding: 0; list-style: none; }
  .fan-steps li { display: flex; gap: 14px; align-items: baseline; font-size: 16.5px; }
  .fan-steps b { color: var(--heading); font-weight: 500; }
  .fan-steps .n { color: var(--accent); font-weight: 700; font-size: 14px; flex: none; }
  .fan-col { display: flex; justify-content: center; }
  .fan-col .store-shot { width: 290px; max-width: 100%; }

  /* final CTA */
  .cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 120px 0; }
  .cta h2 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; }
  .cta p { margin: 0; font-size: 18px; max-width: 32em; }
  .cta .note { font-size: 15px; color: var(--faint); max-width: 34em; }

  /* footer */
  footer { border-top: 1px solid rgba(255,255,255,0.07); padding: 48px 0 56px; }
  .foot { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; font-size: 14px; }
  .foot-col { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
  .foot-col b { color: var(--heading); font-weight: 500; margin-bottom: 4px; }
  .foot a { color: var(--body); text-decoration: none; }
  .foot a:hover { color: var(--heading); }
  .foot-brand { display: flex; flex-direction: column; gap: 12px; max-width: 260px; }
  .legal { margin-top: 40px; font-size: 12.5px; color: var(--faint); }

  /* ---------- richer section furniture ----------
     Added for the Chinese homepage refresh (Aug 2026): icon-led earnings cards,
     a titled check list, icon-tiled share cards. Every selector below is a NEW
     class, so the English page keeps its current look until its copy is
     restructured to match — one stylesheet, no fork. */
  .step-top { display: flex; align-items: center; gap: 14px; }
  .step-ico {
    width: 44px; height: 44px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--line-hi); color: var(--accent);
  }
  .step-ico svg { width: 22px; height: 22px; display: block; }
  /* Same weight as .figure-big, but the number carries the brand gradient. */
  .figure-grad {
    font-size: 40px; font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }

  /* Step numeral as an accent ring rather than the default grey outline. */
  .step-num.num-ring { background: transparent; border-color: var(--accent); }

  .checks.checks-rich li { align-items: flex-start; }
  .check-ring {
    width: 26px; height: 26px; border-radius: 50%; flex: none; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--accent); color: var(--accent);
    font-size: 13px; font-weight: 700; line-height: 1;
  }
  .check-body { display: flex; flex-direction: column; gap: 4px; }
  .check-body b { color: var(--heading); font-weight: 500; font-size: 17px; }
  .check-body span { font-size: 15.5px; line-height: 1.6; }

  .share-card.card-rich { flex-direction: row; align-items: flex-start; gap: 18px; }
  .share-tile {
    width: 44px; height: 44px; border-radius: 14px; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--line-hi); color: var(--accent);
  }
  .share-tile svg { width: 22px; height: 22px; display: block; }
  .share-body { display: flex; flex-direction: column; gap: 8px; }
  .share-body p em { color: var(--heading); font-style: normal; font-weight: 500; }
  .share-n { color: var(--accent); font-weight: 700; margin-right: 10px; }
  .share-note {
    display: flex; align-items: center; gap: 12px;
    margin: 4px 0 0; font-size: 14px; color: var(--faint);
  }
  .share-note .spark { color: var(--accent); display: inline-flex; }
  .share-note .bar { color: var(--line-hi); }

  /* ---------- sticky nav + current-section marker ---------- */
  nav {
    position: sticky; top: 0; z-index: 30;
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  }
  /* Underline is absolutely positioned so switching sections never reflows the bar. */
  .nav-links a[href^="#"]:not(.btn) { position: relative; padding-bottom: 5px; }
  .nav-links a.on { color: var(--heading); }
  .nav-links a.on::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; border-radius: 2px; background: var(--grad);
  }
  /* Anchor jumps must clear the sticky bar. */
  section[id], header[id] { scroll-margin-top: 96px; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  @media (max-width: 900px) {
    /* Message first on mobile: headline + CTA above the fold, phone after. */
    .hero { grid-template-columns: 1fr; padding: 40px 0 64px; gap: 44px; }
    .hero .store-shot { width: 270px; }
    .steps { grid-template-columns: 1fr; }
    .shots-row { grid-template-columns: 1fr; }
    .share-grid { grid-template-columns: 1fr; gap: 40px; }
    .own { grid-template-columns: 1fr; gap: 48px; }
    .fan-band { grid-template-columns: 1fr; gap: 40px; }
    .nav-links .hide-sm { display: none; }
    section { padding: 72px 0; }
    /* "Apply to create" is wider than the old nav label — shrink the bar so the
       logo and the button still fit side by side on a 375px screen. */
    nav { gap: 12px; }
    .logo-img { height: 22px; }
    .nav-links { gap: 16px; }
    .nav-links a.btn { padding: 11px 16px; font-size: 14px; }
    .btn-long { display: none; }
    .btn-short { display: inline; }
  }
