:root {
  --bg: #0a0a0b;
  --bg-elev: #111113;
  --bg-card: #131316;
  --bg-card-hover: #1a1a1f;
  --bg-input: #16161a;
  --border: #ffffff14;
  --border-strong: #ffffff24;
  --border-focus: #ff4d2e73;
  --text: #f5f5f7;
  --text-soft: #a1a1aa;
  --text-mute: #71717a;
  --accent: #ff4d2e;
  --accent-glow: #ff4d2e66;
  --accent-soft: #ff4d2e1a;
  --green: #4ade80;
  --green-soft: #4ade801f;
  --gold: #f4c752;
  --gold-soft: #f4c7521f;
  --blue: #6b8aff;
  --blue-soft: #6b8aff1f;
  --purple: #c084fc;
  --purple-soft: #c084fc1f;
  --pink: #f472b6;
  --pink-soft: #f472b61f;
  --error: #ff5757;
  --error-soft: #ff57571f;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-x: none;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-geist-sans), system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overscroll-behavior-x: none;
  font-feature-settings: "ss01", "ss02", "cv11";
  max-width: 100%;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

.bg-fx, .grid-bg {
  pointer-events: none;
  z-index: 0;
  position: fixed;
  inset: 0;
}

.bg-fx:before {
  content: "";
  filter: blur(60px);
  background: radial-gradient(circle, #ff4d2e33, #0000 60%);
  width: 700px;
  height: 700px;
  position: absolute;
  top: -200px;
  right: -200px;
}

.bg-fx:after {
  content: "";
  filter: blur(80px);
  background: radial-gradient(circle, #4ade800d, #0000 60%);
  width: 700px;
  height: 700px;
  position: absolute;
  top: 60%;
  left: -300px;
}

.grid-bg {
  background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0, #000 0%, #0000 80%);
  mask-image: radial-gradient(80% 60% at 50% 0, #000 0%, #0000 80%);
}

.container {
  max-width: var(--max);
  z-index: 2;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.serif {
  font-family: var(--font-instrument-serif), serif;
  font-weight: 400;
}

.urdu {
  font-family: var(--font-noto-urdu), serif;
}

.eyebrow {
  font-family: var(--font-geist-mono), ui-monospace, monospace;
  letter-spacing: .02em;
  color: var(--text-mute);
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--accent);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px var(--accent-glow);
  border-radius: 50%;
}

.announce {
  border-bottom: 1px solid var(--border);
  z-index: 50;
  background: linear-gradient(90deg, #0000, #ff4d2e1a, #0000);
  padding: 10px 0;
  position: relative;
}

.announce-inner {
  color: var(--text-soft);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  display: flex;
}

.announce-pill {
  background: var(--accent);
  color: #fff;
  letter-spacing: .02em;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
}

.announce a {
  color: var(--text);
  align-items: center;
  gap: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.announce a:hover {
  color: var(--accent);
}

nav {
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 40;
  background: #0a0a0bb3;
  padding: 14px 0;
  position: sticky;
  top: 0;
}

.nav-inner {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  display: flex;
}

.logo {
  color: var(--text);
  letter-spacing: -.01em;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.logo-mark {
  background: linear-gradient(135deg, var(--accent), #ff7a4d);
  color: #fff;
  width: 28px;
  height: 28px;
  box-shadow: 0 4px 16px var(--accent-glow), inset 0 0 0 1px #fff3;
  border-radius: 8px;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  display: grid;
}

.nav-links {
  align-items: center;
  gap: 4px;
  list-style: none;
  display: flex;
}

.nav-links a {
  color: var(--text-soft);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.nav-links a:hover {
  color: var(--text);
  background: #ffffff0d;
}

.nav-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: inset 0 1px #ffffff80, 0 0 0 1px #ffffff1a;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px #ffffff1a inset, 0 8px 24px -8px var(--accent-glow);
}

.btn-accent:hover {
  box-shadow: 0 0 0 1px #ffffff26 inset, 0 12px 32px -8px var(--accent-glow);
  background: tomato;
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: #ffffff0d;
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  background: #ffffff14;
}

.btn-lg {
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 15px;
}

.btn-xl {
  border-radius: 14px;
  padding: 18px 28px;
  font-size: 16px;
}

.btn .arrow {
  transition: transform .2s;
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.menu-btn {
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: none;
}

.menu-btn:hover {
  border-color: var(--border-strong);
  background: #ffffff0f;
}

body.nav-drawer-open {
  overflow: hidden;
}

@media (width <= 768px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 48px 0 80px;
  }

  .announce-inner {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0;
  }

  .announce-inner > span:nth-of-type(2) {
    font-size: 12px;
    line-height: 1.45;
  }

  .nav-inner {
    grid-template-rows: auto auto;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0 10px;
    display: grid;
  }

  .logo {
    grid-area: 1 / 1;
    min-width: 0;
  }

  .nav-actions {
    grid-area: 1 / 2;
    justify-self: end;
  }

  .menu-btn {
    grid-area: 1 / 3;
    display: flex;
  }

  .nav-links {
    border-top: 1px solid var(--border);
    flex-direction: column;
    grid-area: 2 / 1 / auto / -1;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 8px 0 4px;
    list-style: none;
    display: none;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    border-radius: 10px;
    padding: 14px 12px;
    font-size: 15px;
    display: block;
  }

  .site-nav.nav-open .nav-links {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    flex-direction: column;
    position: relative;
    display: flex !important;
  }

  .site-nav.nav-open {
    z-index: 100;
    box-shadow: 0 24px 48px #00000073;
  }

  .nav-actions .btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-ctas .btn {
    flex: auto;
    justify-content: center;
  }

  .final-card {
    padding: 60px 28px;
  }

  .mid-cta-card {
    padding: 48px 28px;
  }

  .dc-body {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .dc-frame {
    padding: 28px 24px;
  }

  .delegation-card {
    margin-top: 48px;
  }

  .hero-trust {
    padding: 10px 16px;
    font-size: 12px;
  }
}

.btn-accent:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.2);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chinachallo-page--home {
  & .hero {
    text-align: center;
    padding: 80px 0 100px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 6px 6px 6px 16px;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
  }

  & .hero-pill:hover {
    background: #ff4d2e1a;
    border-color: #ff4d2e59;
    transform: translateY(-1px);
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-pill .arrow {
    color: var(--accent);
    transition: transform .2s;
  }

  & .hero-pill:hover .arrow {
    transform: translateX(2px);
  }

  & h1.hero-title {
    letter-spacing: -.04em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 920px;
    margin: 0 auto 28px;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 500;
    line-height: .98;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    letter-spacing: -.02em;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-size: clamp(20px, 2.4vw, 28px);
    font-style: italic;
    display: inline-flex;
  }

  & .hero-tagline:before, & .hero-tagline:after {
    content: "";
    background: linear-gradient(90deg, transparent, var(--accent));
    width: 32px;
    height: 1px;
    display: inline-block;
  }

  & .hero-tagline:after {
    background: linear-gradient(90deg, var(--accent), transparent);
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 660px;
    margin: 0 auto 44px;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
  }

  & .hero-sub strong {
    color: var(--text);
    font-weight: 500;
  }

  & .hero-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    display: flex;
  }

  & .hero-trust {
    border: 1px solid var(--border);
    color: var(--text-soft);
    background: #ffffff08;
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-trust .dot {
    background: var(--green);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    animation: 2s infinite pulse;
    box-shadow: 0 0 12px #4ade8099;
  }

  & .hero-trust strong {
    color: var(--text);
    font-weight: 500;
  }

  & .delegation-card {
    background: linear-gradient(#ffffff0f, #ffffff05);
    border-radius: 24px;
    max-width: 980px;
    margin: 64px auto 0;
    padding: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px #ff4d2e1f, 0 30px 60px -20px #0009;
  }

  & .delegation-card:before {
    content: "";
    background: radial-gradient(ellipse at 50% 50%, var(--accent-glow), transparent 60%);
    filter: blur(40px);
    z-index: -1;
    opacity: .5;
    position: absolute;
    inset: -100px;
  }

  & .dc-frame {
    background: var(--bg-elev);
    text-align: left;
    border-radius: 23px;
    padding: 36px 40px;
  }

  & .dc-head {
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    display: flex;
  }

  & .dc-label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 11px;
    display: flex;
  }

  & .dc-label:before {
    content: "";
    background: var(--accent);
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px var(--accent-glow);
    border-radius: 50%;
  }

  & .dc-title {
    letter-spacing: -.02em;
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
  }

  & .dc-title .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .dc-subtitle {
    color: var(--text-soft);
    font-size: 14px;
  }

  & .dc-status {
    background: var(--green-soft);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--green);
    letter-spacing: .02em;
    border: 1px solid #4ade8040;
    border-radius: 100px;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
  }

  & .dc-status .live-dot {
    background: var(--green);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    animation: 2s infinite pulse;
    box-shadow: 0 0 8px #4ade8099;
  }

  & .dc-body {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    display: grid;
  }

  & .dc-cell {
    flex-direction: column;
    gap: 6px;
    display: flex;
  }

  & .dc-cell .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: 11px;
  }

  & .dc-cell .val {
    letter-spacing: -.02em;
    color: var(--text);
    font-size: 22px;
    font-weight: 600;
  }

  & .dc-cell .val .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & section {
    padding: 120px 0;
    position: relative;
  }

  & .section-head {
    text-align: center;
    max-width: 720px;
    margin-bottom: 72px;
    margin-left: auto;
    margin-right: auto;
  }

  & .section-head .eyebrow {
    justify-content: center;
    margin-bottom: 20px;
  }

  & .section-head h2 {
    letter-spacing: -.03em;
    margin-bottom: 20px;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
  }

  & .section-head h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    font-style: italic;
    font-weight: 400;
  }

  & .section-head .deck {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.55;
  }

  & .proof-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
    padding: 120px 0;
  }

  & .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .proof-story {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
  }

  & .proof-story:before {
    content: "";
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    filter: blur(50px);
    width: 300px;
    height: 300px;
    position: absolute;
    top: -100px;
    right: -50px;
  }

  & .proof-story > * {
    z-index: 1;
    position: relative;
  }

  & .proof-story h3 {
    letter-spacing: -.02em;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .proof-story h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .proof-story p {
    color: var(--text-soft);
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.65;
  }

  & .proof-story p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .proof-story p:last-child {
    margin-bottom: 0;
  }

  & .proof-stats {
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    display: grid;
  }

  & .proof-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .proof-stat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
  }

  & .proof-stat-card:before {
    content: "";
    background: var(--accent);
    opacity: .6;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .proof-stat-card .left {
    flex-direction: column;
    gap: 2px;
    display: flex;
  }

  & .proof-stat-card .ico-label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: 11px;
  }

  & .proof-stat-card .strength {
    color: var(--text);
    letter-spacing: -.01em;
    font-size: 16px;
    font-weight: 500;
  }

  & .proof-stat-card .ico {
    background: var(--accent-soft);
    border-radius: 10px;
    flex-shrink: 0;
    place-items: center;
    width: 36px;
    height: 36px;
    display: grid;
  }

  & .proof-stat-card .ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8px;
  }

  & .voices-section {
    padding: 120px 0;
  }

  & .voices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
  }

  & .video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 20px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }

  & .video-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px #00000080, 0 0 40px -10px #ff4d2e33;
  }

  & .video-thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(#1a1a1f 0%, #0a0a0b 100%);
    position: relative;
    overflow: hidden;
  }

  & .video-thumb.placeholder {
    background: radial-gradient(at 50% 30%, #ff4d2e2e, #0000 60%), linear-gradient(#1a1a1f 0%, #0a0a0b 100%);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  & .video-thumb.placeholder:before {
    content: "";
    background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
    background-size: 24px 24px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(80% 60%, #000 0%, #0000 90%);
    mask-image: radial-gradient(80% 60%, #000 0%, #0000 90%);
  }

  & .video-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }

  & .video-thumb:after {
    content: "";
    pointer-events: none;
    background: linear-gradient(#0000 0% 50%, #0a0a0bb3 85%, #0a0a0bf2 100%);
    position: absolute;
    inset: 0;
  }

  & .video-duration {
    z-index: 3;
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #fff;
    letter-spacing: .02em;
    background: #0009;
    border: 1px solid #ffffff26;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    top: 14px;
    right: 14px;
  }

  & .video-play {
    z-index: 3;
    background: var(--accent);
    width: 64px;
    height: 64px;
    box-shadow: 0 0 0 1px #ffffff26 inset, 0 12px 32px -8px var(--accent-glow), 0 0 80px -10px var(--accent-glow);
    border-radius: 50%;
    place-items: center;
    transition: transform .3s, box-shadow .3s;
    display: grid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  & .video-card:hover .video-play {
    box-shadow: 0 0 0 1px #ffffff40 inset, 0 16px 40px -8px var(--accent-glow), 0 0 100px -10px var(--accent-glow);
    transform: translate(-50%, -50%) scale(1.08);
  }

  & .video-play svg {
    fill: #fff;
    width: 22px;
    height: 22px;
    margin-left: 4px;
  }

  & .video-thumb-avatar {
    z-index: 2;
    background: linear-gradient(135deg, var(--accent), #ff7a4d);
    color: #fff;
    width: 88px;
    height: 88px;
    box-shadow: 0 0 0 4px #ff4d2e26, 0 0 60px -10px var(--accent-glow);
    border-radius: 50%;
    place-items: center;
    font-size: 32px;
    font-weight: 600;
    display: grid;
    position: relative;
  }

  & .video-attr-overlay {
    z-index: 3;
    padding: 18px 18px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  & .video-attr-overlay .name {
    color: #fff;
    letter-spacing: -.005em;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 500;
    display: block;
  }

  & .video-attr-overlay .meta {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #ffffffb3;
    letter-spacing: .02em;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    display: flex;
  }

  & .video-attr-overlay .meta .dot {
    background: #fff6;
    border-radius: 50%;
    flex-shrink: 0;
    width: 3px;
    height: 3px;
  }

  & .video-quote-pull {
    border-top: 1px solid var(--border);
    padding: 22px;
  }

  & .video-quote-pull .stars {
    gap: 3px;
    margin-bottom: 12px;
    display: flex;
  }

  & .video-quote-pull .stars svg {
    fill: #ffb800;
    width: 13px;
    height: 13px;
  }

  & .video-quote-pull blockquote {
    color: var(--text);
    letter-spacing: -.005em;
    font-size: 15px;
    line-height: 1.45;
  }

  & .video-quote-pull blockquote .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .video-coming-soon {
    z-index: 3;
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: #ff4d2e26;
    border: 1px solid #ff4d2e59;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    top: 14px;
    left: 14px;
  }

  & .voices-foot {
    text-align: center;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    margin-top: 32px;
    font-size: 11px;
  }

  & .video-modal {
    z-index: 1000;
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    background: #000000d9;
    justify-content: center;
    align-items: center;
    padding: 24px;
    transition: opacity .25s;
    display: none;
    position: fixed;
    inset: 0;
  }

  & .video-modal.open {
    opacity: 1;
    display: flex;
  }

  & .video-modal-inner {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: min(960px, 92vw);
    box-shadow: 0 30px 80px #0009, 0 0 120px -20px var(--accent-glow);
    background: #000;
    border-radius: 20px;
    transition: transform .25s;
    position: relative;
    overflow: hidden;
    transform: scale(.95);
  }

  & .video-modal.open .video-modal-inner {
    transform: scale(1);
  }

  & .video-modal-inner #videoModalContent, & .video-modal-inner .video-modal-content {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  & .video-modal-inner iframe, & .video-modal-inner video, & .video-modal-inner #videoModalContent iframe, & .video-modal-inner .video-modal-content iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
  }

  & .video-modal-close {
    color: #fff;
    cursor: pointer;
    background: #ffffff14;
    border: 1px solid #ffffff26;
    border-radius: 50%;
    place-items: center;
    width: 36px;
    height: 36px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: all .2s;
    display: grid;
    position: absolute;
    top: -48px;
    right: 0;
  }

  & .video-modal-close:hover {
    background: #ffffff26;
    border-color: #ffffff4d;
    transform: rotate(90deg);
  }

  & .included-section {
    background: var(--bg);
    padding: 120px 0;
  }

  & .included-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px;
    position: relative;
    overflow: hidden;
  }

  & .included-wrap:before {
    content: "";
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    filter: blur(60px);
    opacity: .5;
    width: 400px;
    height: 400px;
    position: absolute;
    top: -100px;
    right: -100px;
  }

  & .included-wrap > * {
    z-index: 1;
    position: relative;
  }

  & .included-head {
    text-align: center;
    margin-bottom: 48px;
  }

  & .included-head h3 {
    letter-spacing: -.02em;
    margin-bottom: 12px;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    line-height: 1.1;
  }

  & .included-head h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .included-head p {
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.55;
  }

  & .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    display: grid;
  }

  & .incl-row {
    align-items: flex-start;
    gap: 16px;
    display: flex;
  }

  & .incl-check {
    background: #4ade801f;
    border: 1px solid #4ade8040;
    border-radius: 8px;
    flex-shrink: 0;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-top: 1px;
    display: grid;
  }

  & .incl-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
  }

  & .incl-text strong {
    color: var(--text);
    letter-spacing: -.005em;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 500;
    display: block;
  }

  & .incl-text span {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
  }

  & .how-section {
    padding: 120px 0;
  }

  & .how-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    display: grid;
    position: relative;
  }

  & .how-grid:before {
    content: "";
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
    z-index: 0;
    height: 1px;
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
  }

  & .how-card {
    z-index: 1;
    text-align: center;
    padding: 0 12px;
    position: relative;
  }

  & .how-num {
    background: var(--bg);
    border: 1px solid var(--border);
    width: 56px;
    height: 56px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text);
    border-radius: 50%;
    place-items: center;
    margin: 0 auto 24px;
    font-size: 16px;
    font-weight: 600;
    display: grid;
    position: relative;
  }

  & .how-num:after {
    content: "";
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    filter: blur(12px);
    z-index: -1;
    opacity: .5;
    border-radius: 50%;
    position: absolute;
    inset: -3px;
  }

  & .how-card h4 {
    letter-spacing: -.01em;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 500;
  }

  & .how-card p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5;
  }

  & .mid-cta-section {
    padding: 100px 0;
  }

  & .mid-cta-card {
    border: 1px solid var(--border-strong);
    text-align: center;
    background: linear-gradient(135deg, #1a0f0c 0%, #0f0908 100%);
    border-radius: 28px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
  }

  & .mid-cta-card:before {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e40, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: -100px;
  }

  & .mid-cta-card:after {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e26, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    bottom: -300px;
    right: -100px;
  }

  & .mid-cta-card > * {
    z-index: 1;
    position: relative;
  }

  & .mid-cta-card .eyebrow {
    justify-content: center;
    margin-bottom: 16px;
  }

  & .mid-cta-card h2 {
    letter-spacing: -.03em;
    margin-bottom: 20px;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 500;
    line-height: 1.05;
  }

  & .mid-cta-card h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .mid-cta-card p {
    color: var(--text-soft);
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.55;
  }

  & .mid-cta-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    display: flex;
  }

  & .vision-section {
    background: var(--bg);
    padding: 120px 0;
  }

  & .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .vision-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
  }

  & .vision-card:hover {
    border-color: var(--border-strong);
  }

  & .vision-card:before {
    content: "";
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    filter: blur(50px);
    width: 300px;
    height: 300px;
    position: absolute;
    top: -100px;
    right: -50px;
  }

  & .vision-card > * {
    z-index: 1;
    position: relative;
  }

  & .vision-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
    font-size: 11px;
  }

  & .vision-card h3 {
    letter-spacing: -.02em;
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .vision-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .vision-card p {
    color: var(--text-soft);
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  & .vision-card p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .corridor-section {
    padding: 120px 0;
  }

  & .corridor-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
  }

  & .corridor-card:before {
    content: "";
    background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 70%);
    filter: blur(60px);
    opacity: .5;
    z-index: 0;
    position: absolute;
    inset: 0;
  }

  & .corridor-inner {
    z-index: 1;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    display: grid;
    position: relative;
  }

  & .corridor-side {
    text-align: center;
  }

  & .corridor-side .flag-mark {
    width: 64px;
    height: 64px;
    font-family: var(--font-instrument-serif), serif;
    color: #fff;
    border-radius: 16px;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-style: italic;
    display: grid;
    position: relative;
  }

  & .corridor-side .flag-mark:after {
    content: "";
    opacity: .18;
    filter: blur(16px);
    z-index: -1;
    background: currentColor;
    border-radius: 22px;
    position: absolute;
    inset: -6px;
  }

  & .corridor-side.pk .flag-mark {
    color: #4ade80;
    background: linear-gradient(135deg, #1f6b3c, #0e4d27);
  }

  & .corridor-side.pk .flag-mark span {
    color: #fff;
  }

  & .corridor-side.cn .flag-mark {
    color: #ff4d2e;
    background: linear-gradient(135deg, #c8102e, #8b0e20);
  }

  & .corridor-side.cn .flag-mark span {
    color: #fff;
  }

  & .corridor-side h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
  }

  & .corridor-side .stat {
    letter-spacing: -.02em;
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-instrument-serif), serif;
    margin-bottom: 6px;
    font-style: italic;
  }

  & .corridor-side .stat-lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 16px;
    font-size: 11px;
  }

  & .corridor-side ul {
    text-align: left;
    list-style: none;
    display: inline-block;
  }

  & .corridor-side ul li {
    color: var(--text-soft);
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 13px;
    display: flex;
  }

  & .corridor-side ul li:before {
    content: "•";
    color: var(--text-mute);
    margin-top: -2px;
  }

  & .corridor-bridge {
    text-align: center;
    width: 140px;
    position: relative;
  }

  & .corridor-bridge svg {
    width: 100%;
    height: auto;
  }

  & .corridor-bridge-label {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  & .govt-section {
    background: var(--bg);
    padding: 120px 0;
  }

  & .govt-strip {
    border: 1px solid var(--border-strong);
    background: linear-gradient(135deg, #ff4d2e0a, #4ade8008);
    border-radius: 24px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  & .govt-strip:before {
    content: "";
    background: linear-gradient(180deg, var(--green), var(--accent));
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .govt-strip-head {
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    margin-bottom: 36px;
    display: flex;
  }

  & .govt-flags-pair {
    align-items: center;
    gap: 12px;
    display: flex;
  }

  & .govt-flag-mini {
    color: #fff;
    border-radius: 12px;
    flex-shrink: 0;
    place-items: center;
    width: 44px;
    height: 44px;
    display: grid;
  }

  & .govt-flag-mini.pk {
    background: linear-gradient(135deg, #1f6b3c, #0e4d27);
  }

  & .govt-flag-mini.cn {
    background: linear-gradient(135deg, #c8102e, #8b0e20);
  }

  & .govt-flag-mini svg {
    width: 22px;
    height: 22px;
  }

  & .govt-strip-head h3 {
    letter-spacing: -.02em;
    flex: 1;
    min-width: 280px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .govt-strip-head h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .govt-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    display: grid;
  }

  & .govt-row {
    align-items: flex-start;
    gap: 14px;
    display: flex;
  }

  & .govt-row-num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    flex-shrink: 0;
    min-width: 32px;
    font-size: 26px;
    font-style: italic;
    line-height: 1;
  }

  & .govt-row-content strong {
    letter-spacing: -.005em;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 500;
    display: block;
  }

  & .govt-row-content p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
  }

  & .govt-foot {
    border-top: 1px solid var(--border);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .02em;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    font-size: 11px;
    display: flex;
  }

  & .govt-foot a {
    color: var(--accent);
    text-decoration: none;
  }

  & .ecosystem-section {
    padding: 120px 0;
  }

  & .eco-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    display: grid;
  }

  & .eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }

  & .eco-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  & .eco-card:before {
    content: "";
    background: var(--accent);
    opacity: .7;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .eco-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 11px;
  }

  & .eco-tag .later {
    background: var(--accent-soft);
    letter-spacing: .05em;
    color: var(--accent);
    border: 1px solid #ff4d2e40;
    border-radius: 100px;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 9px;
    display: inline-block;
  }

  & .eco-card h4 {
    letter-spacing: -.02em;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .eco-card p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
  }

  & .faq-section {
    background: var(--bg);
    padding: 120px 0;
  }

  & .faq-list {
    flex-direction: column;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
  }

  & .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 16px;
    padding: 24px 28px;
    transition: all .3s;
  }

  & .faq-item:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  & .faq-item summary {
    color: var(--text);
    letter-spacing: -.005em;
    cursor: pointer;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    list-style: none;
    display: flex;
  }

  & .faq-item summary::-webkit-details-marker {
    display: none;
  }

  & .faq-item summary:after {
    content: "+";
    border: 1px solid var(--border);
    width: 24px;
    height: 24px;
    color: var(--text-soft);
    background: #ffffff0d;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    font-size: 16px;
    transition: transform .2s, background .2s;
    display: grid;
  }

  & .faq-item[open] summary:after {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: #ff4d2e4d;
    transform: rotate(45deg);
  }

  & .faq-item p {
    color: var(--text-soft);
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  & .final-cta {
    padding: 140px 0;
    position: relative;
  }

  & .final-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    border-radius: 28px;
    max-width: 880px;
    margin: 0 auto;
    padding: 80px 56px;
    position: relative;
    overflow: hidden;
  }

  & .final-card:before {
    content: "";
    background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 60%);
    filter: blur(60px);
    opacity: .4;
    position: absolute;
    inset: 0;
  }

  & .final-card > * {
    z-index: 1;
    position: relative;
  }

  & .final-card .eyebrow {
    justify-content: center;
    margin-bottom: 24px;
  }

  & .final-card .urdu-line {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 16px;
    font-size: clamp(20px, 2.4vw, 28px);
    font-style: italic;
  }

  & .final-card h2 {
    letter-spacing: -.03em;
    margin-bottom: 24px;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.05;
  }

  & .final-card h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .final-card p {
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.55;
  }

  & .final-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    display: flex;
  }

  & .reveal {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
    transform: translateY(20px);
  }

  & .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  @media (width <= 1024px) {
    & .proof-grid, & .voices-grid {
      grid-template-columns: 1fr;
    }

    & .video-thumb {
      aspect-ratio: 16 / 9;
    }

    & .vision-grid, & .eco-grid {
      grid-template-columns: 1fr;
    }

    & .corridor-inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    & .corridor-bridge {
      width: 80px;
      transform: rotate(90deg);
    }

    & .corridor-bridge svg {
      display: none;
    }

    & .corridor-bridge-label {
      display: inline-block;
      position: relative;
      top: auto;
      left: auto;
      transform: none;
    }

    & .how-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    & .how-grid:before {
      display: none;
    }

    & .included-grid {
      grid-template-columns: 1fr;
    }

    & .corridor-card, & .included-wrap, & .govt-strip {
      padding: 40px 28px;
    }

    & .dc-body {
      grid-template-columns: repeat(2, 1fr);
    }

    & .govt-strip-grid {
      grid-template-columns: 1fr;
    }

    & .vision-card, & .proof-story {
      padding: 36px 28px;
    }
  }
}

.chinachallo-page--apply {
  & .hero {
    text-align: center;
    padding: 60px 0 32px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 18px;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
  }

  & h1.hero-title {
    letter-spacing: -.035em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 700px;
    margin: 0 auto 18px;
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 500;
    line-height: 1;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 auto;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.55;
  }

  & .trust-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 920px;
    margin: 32px auto 0;
    padding: 0 24px;
    display: grid;
  }

  & .trust-item {
    color: var(--text-soft);
    font-size: 12px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    align-items: center;
    gap: 8px;
    display: flex;
  }

  & .trust-item .check {
    background: var(--green-soft);
    border: 1px solid #4ade8040;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 18px;
    height: 18px;
    display: grid;
  }

  & .trust-item .check svg {
    width: 10px;
    height: 10px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
  }

  & .pricing-note {
    border: 1px solid var(--border);
    max-width: 720px;
    color: var(--text-soft);
    text-align: left;
    background: #ffffff08;
    border-radius: 100px;
    align-items: center;
    gap: 12px;
    margin: 18px auto 0;
    padding: 12px 18px;
    font-size: 12.5px;
    line-height: 1.5;
    display: flex;
  }

  & .pricing-note strong {
    color: var(--text);
    font-weight: 500;
  }

  & .pricing-note .dot {
    background: var(--accent);
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px var(--accent-glow);
    border-radius: 50%;
    flex-shrink: 0;
  }

  & .paths-section {
    padding: 32px 0 16px;
  }

  & .paths-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
    display: grid;
  }

  & .path-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    color: inherit;
    border-radius: 18px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    text-decoration: none;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .path-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  & .path-card.primary {
    background: linear-gradient(135deg, #ff4d2e1a, #ff4d2e05);
    border-color: #ff4d2e4d;
  }

  & .path-card.primary:before {
    content: "";
    background: radial-gradient(circle at 0% 0%, var(--accent-soft), transparent 60%);
    opacity: .6;
    pointer-events: none;
    position: absolute;
    inset: 0;
  }

  & .path-card > * {
    z-index: 1;
    position: relative;
  }

  & .path-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 10.5px;
    font-weight: 500;
    display: inline-flex;
  }

  & .path-card:not(.primary) .path-tag {
    color: var(--text-mute);
  }

  & .path-card h3 {
    letter-spacing: -.02em;
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .path-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .path-card p {
    color: var(--text-soft);
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  & .path-card .path-cta {
    color: var(--accent);
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
  }

  & .path-card.primary .path-cta {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 0 0 1px #ffffff1a inset, 0 8px 24px -8px var(--accent-glow);
    border-radius: 10px;
    align-self: flex-start;
    padding: 10px 16px;
  }

  & .wizard-section {
    padding: 24px 0 60px;
  }

  & .wizard-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px #0009;
  }

  & .wizard-wrap:before {
    content: "";
    background: radial-gradient(ellipse at 50% 0%, var(--accent-glow), transparent 60%);
    filter: blur(40px);
    z-index: -1;
    opacity: .4;
    position: absolute;
    inset: -100px;
  }

  & .wizard-head {
    border-bottom: 1px solid var(--border);
    background: var(--bg-elev);
    padding: 24px 32px 20px;
  }

  & .wizard-head-top {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    display: flex;
  }

  & .wizard-step-label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 11px;
    font-weight: 500;
  }

  & .wizard-step-name {
    color: var(--text-soft);
    font-size: 13px;
  }

  & .wizard-step-name strong {
    color: var(--text);
    font-weight: 500;
  }

  & .progress-bar {
    background: #ffffff0f;
    border-radius: 100px;
    width: 100%;
    height: 4px;
    overflow: hidden;
  }

  & .progress-fill {
    background: linear-gradient(90deg, var(--accent), #ff7a4d);
    height: 100%;
    box-shadow: 0 0 12px var(--accent-glow);
    border-radius: 100px;
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
  }

  & .progress-dots {
    justify-content: space-between;
    margin-top: 14px;
    display: flex;
  }

  & .progress-dot {
    flex-direction: column;
    flex: 1;
    align-items: center;
    gap: 6px;
    display: flex;
    position: relative;
  }

  & .progress-dot .dot {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    width: 22px;
    height: 22px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    z-index: 2;
    border-radius: 50%;
    place-items: center;
    font-size: 10px;
    font-weight: 500;
    transition: all .3s;
    display: grid;
    position: relative;
  }

  & .progress-dot.active .dot {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 4px var(--accent-soft), 0 0 16px var(--accent-glow);
  }

  & .progress-dot.complete .dot {
    background: var(--green);
    border-color: var(--green);
    color: var(--bg);
  }

  & .progress-dot .label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 9.5px;
    transition: color .3s;
  }

  & .progress-dot.active .label {
    color: var(--text);
  }

  & .progress-dot.complete .label {
    color: var(--green);
  }

  & .wizard-body {
    min-height: 400px;
    padding: 36px 32px 28px;
    position: relative;
  }

  & .wizard-step {
    animation: .35s cubic-bezier(.4, 0, .2, 1) fadeIn;
    display: none;
  }

  & .wizard-step.active {
    display: block;
  }

  & .wizard-step h2 {
    letter-spacing: -.02em;
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .wizard-step h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .wizard-step .step-deck {
    color: var(--text-soft);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
  }

  & .field-group {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
    display: grid;
  }

  & .field-group.single {
    grid-template-columns: 1fr;
  }

  & .field {
    flex-direction: column;
    gap: 7px;
    display: flex;
  }

  & .field-full {
    grid-column: 1 / -1;
  }

  & .field label {
    color: var(--text);
    letter-spacing: -.005em;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    display: flex;
  }

  & .field label .opt {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: 9.5px;
    font-weight: 400;
  }

  & .field label .req {
    color: var(--accent);
    font-size: 14px;
    font-weight: 400;
  }

  & .field input[type="text"], & .field input[type="email"], & .field input[type="tel"], & .field select, & .field textarea {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    outline: none;
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    transition: all .2s;
  }

  & .field input::placeholder, & .field textarea::placeholder {
    color: var(--text-mute);
  }

  & .field input:focus, & .field select:focus, & .field textarea:focus {
    border-color: var(--border-focus);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }

  & .field input:hover:not(:focus), & .field select:hover:not(:focus), & .field textarea:hover:not(:focus) {
    border-color: var(--border-strong);
  }

  & .field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    padding-right: 36px;
  }

  & .field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
  }

  & .phone-wrap {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all .2s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .phone-wrap:focus-within {
    border-color: var(--border-focus);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }

  & .phone-prefix {
    color: var(--text);
    border-right: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    background: #ffffff0a;
    align-items: center;
    gap: 8px;
    padding: 12px 12px 12px 14px;
    display: flex;
  }

  & .phone-flag {
    background: linear-gradient(#fff 50%, #1f6b3c 50%);
    border: 1px solid #fff3;
    border-radius: 2px;
    width: 18px;
    height: 13px;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }

  & .phone-flag:before {
    content: "";
    background: #fff;
    width: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }

  & .phone-wrap input {
    min-width: 0;
    color: var(--text);
    background: none;
    border: none;
    outline: none;
    flex: 1;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
  }

  & .phone-wrap input::placeholder {
    color: var(--text-mute);
  }

  & .phone-wrap select.phone-cc {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-right: 1px solid var(--border);
    color: #0000;
    cursor: pointer;
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    text-overflow: ellipsis;
    z-index: 1;
    background-color: #ffffff0a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371717a' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-position: right 8px center;
    background-repeat: no-repeat;
    outline: none;
    flex: 0 0 118px;
    padding: 12px 22px 12px 10px;
    font-size: 1px;
    font-weight: 500;
    position: relative;
  }

  & .phone-wrap select.phone-cc option {
    color: #000;
    font-size: 14px;
  }

  & .phone-cc-flag {
    pointer-events: none;
    z-index: 4;
    object-fit: cover;
    border-radius: 2px;
    width: 24px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    box-shadow: 0 0 0 1px #ffffff1a;
  }

  & .phone-cc-display {
    pointer-events: none;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text);
    z-index: 5;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
  }

  & .option-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    display: grid;
  }

  & .option-grid.cols-1 {
    grid-template-columns: 1fr;
  }

  & .check-card {
    cursor: pointer;
    display: block;
    position: relative;
  }

  & .check-card input[type="checkbox"] {
    opacity: 0;
    pointer-events: none;
    position: absolute;
  }

  & .check-card .face {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 12px 14px;
    transition: all .2s;
    display: flex;
  }

  & .check-card:hover .face {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  & .check-card input:checked + .face {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: #ff4d2e0f;
  }

  & .check-card .check-box {
    border: 1.5px solid var(--border-strong);
    border-radius: 5px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    transition: all .2s;
    position: relative;
  }

  & .check-card input:checked + .face .check-box {
    border-color: var(--accent);
    background: var(--accent);
  }

  & .check-card input:checked + .face .check-box:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='3 8 7 12 13 5'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    position: absolute;
    inset: 0;
  }

  & .check-card .check-content {
    flex: 1;
  }

  & .check-card .check-title {
    letter-spacing: -.005em;
    margin-bottom: 2px;
    font-size: 13.5px;
    font-weight: 500;
  }

  & .check-card .check-desc {
    color: var(--text-soft);
    font-size: 11.5px;
    line-height: 1.4;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
  }

  & .subsection {
    margin-bottom: 22px;
  }

  & .subsection:last-child {
    margin-bottom: 0;
  }

  & .subsection-head {
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    display: flex;
  }

  & .subsection-head .ico {
    border-radius: 7px;
    flex-shrink: 0;
    place-items: center;
    width: 26px;
    height: 26px;
    display: grid;
  }

  & .subsection-head .ico.business {
    background: var(--accent-soft);
    border: 1px solid #ff4d2e40;
  }

  & .subsection-head .ico.business svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8px;
  }

  & .subsection-head .ico.travel {
    background: #6b8aff1a;
    border: 1px solid #6b8aff40;
  }

  & .subsection-head .ico.travel svg {
    stroke: #6b8aff;
    fill: none;
    stroke-width: 1.8px;
    width: 14px;
    height: 14px;
  }

  & .subsection-head h3 {
    letter-spacing: -.005em;
    flex: 1;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
  }

  & .subsection-head .tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 9.5px;
  }

  & .video-teaser {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
  }

  & .video-teaser-thumb {
    aspect-ratio: 16 / 9;
    cursor: pointer;
    background: linear-gradient(#1a1a1f 0%, #0a0a0b 100%);
    position: relative;
    overflow: hidden;
  }

  & .video-teaser-thumb:before {
    content: "";
    background: radial-gradient(#ff4d2e2e, #0000 70%);
    position: absolute;
    inset: 0;
  }

  & .video-teaser-thumb:after {
    content: "";
    background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
    background-size: 30px 30px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(80% 60%, #000 0%, #0000 90%);
    mask-image: radial-gradient(80% 60%, #000 0%, #0000 90%);
  }

  & .video-teaser-iframe-wrap {
    display: none;
    position: absolute;
    inset: 0;
  }

  & .video-teaser-iframe-wrap iframe {
    border: 0;
    width: 100%;
    height: 100%;
  }

  & .video-teaser.playing .video-teaser-iframe-wrap {
    display: block;
  }

  & .video-teaser.playing .video-teaser-thumb-content {
    display: none;
  }

  & .video-teaser-thumb-content {
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0;
  }

  & .video-teaser-play {
    background: var(--accent);
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 1px #ffffff26 inset, 0 8px 24px -4px var(--accent-glow), 0 0 60px -10px var(--accent-glow);
    border-radius: 50%;
    place-items: center;
    transition: transform .2s;
    display: grid;
  }

  & .video-teaser-thumb:hover .video-teaser-play {
    transform: scale(1.08);
  }

  & .video-teaser-play svg {
    fill: #fff;
    width: 18px;
    height: 18px;
    margin-left: 3px;
  }

  & .video-teaser-overlay-text {
    z-index: 3;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    display: flex;
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
  }

  & .video-teaser-overlay-text .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #ffffffd9;
    letter-spacing: .06em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    background: #00000080;
    border: 1px solid #ffffff1a;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 10px;
  }

  & .video-teaser-overlay-text .duration {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #ffffffb3;
    -webkit-backdrop-filter: blur(10px);
    background: #00000080;
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 10px;
  }

  & .video-teaser-cap {
    color: var(--text-soft);
    font-size: 11.5px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    border-top: 1px solid var(--border);
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    display: flex;
  }

  & .video-teaser-cap:before {
    content: "";
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
  }

  & .option-card {
    cursor: pointer;
    display: block;
    position: relative;
  }

  & .option-card input[type="radio"] {
    opacity: 0;
    pointer-events: none;
    position: absolute;
  }

  & .option-card .face {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    align-items: center;
    gap: 12px;
    padding: 14px;
    transition: all .2s;
    display: flex;
  }

  & .option-card:hover .face {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  & .option-card input:checked + .face {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: #ff4d2e0f;
  }

  & .option-card .radio-dot {
    border: 1.5px solid var(--border-strong);
    border-radius: 50%;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: all .2s;
    position: relative;
  }

  & .option-card input:checked + .face .radio-dot {
    border-color: var(--accent);
  }

  & .option-card input:checked + .face .radio-dot:after {
    content: "";
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    border-radius: 50%;
    position: absolute;
    inset: 3px;
  }

  & .option-card .opt-content {
    flex: 1;
  }

  & .option-card .opt-title {
    letter-spacing: -.005em;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
  }

  & .option-card .opt-desc {
    color: var(--text-soft);
    font-size: 12.5px;
    line-height: 1.4;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
  }

  & .field-error {
    color: var(--error);
    font-size: 12px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    display: none;
  }

  & .field-error.show {
    display: flex;
  }

  & .field.has-error input, & .field.has-error select, & .field.has-error textarea, & .field.has-error .phone-wrap {
    border-color: var(--error);
    background: var(--error-soft);
  }

  & .wizard-foot {
    border-top: 1px solid var(--border);
    background: var(--bg-elev);
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 32px 24px;
    display: flex;
  }

  & .wizard-foot .saved-note {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    flex: 1;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    display: flex;
  }

  & .wizard-foot .saved-note .saved-dot {
    background: var(--green);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px #4ade8099;
  }

  & .review-grid {
    gap: 12px;
    display: grid;
  }

  & .review-block {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
  }

  & .review-block-head {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    display: flex;
  }

  & .review-block-head h4 {
    letter-spacing: -.005em;
    font-size: 12.5px;
    font-weight: 500;
  }

  & .review-edit {
    border: 1px solid var(--border);
    color: var(--accent);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    cursor: pointer;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: none;
    border-radius: 100px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 500;
    transition: all .2s;
  }

  & .review-edit:hover {
    background: var(--accent-soft);
    border-color: #ff4d2e4d;
  }

  & .review-row {
    grid-template-columns: 130px 1fr;
    gap: 12px;
    padding: 5px 0;
    font-size: 13px;
    display: grid;
  }

  & .review-row .lab {
    color: var(--text-mute);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .02em;
    font-size: 11px;
  }

  & .review-row .val {
    color: var(--text);
  }

  & .review-row .val.empty {
    color: var(--text-mute);
    font-style: italic;
  }

  & .consent-row {
    background: var(--bg-input);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 10px;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 14px;
    display: flex;
  }

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

  & .consent-row label {
    color: var(--text-soft);
    cursor: pointer;
    font-size: 12.5px;
    line-height: 1.5;
  }

  & .consent-row label strong {
    color: var(--text);
    font-weight: 500;
  }

  & .success-state {
    text-align: center;
    padding: 24px 0 12px;
    display: none;
  }

  & .success-state.show {
    animation: .4s fadeIn;
    display: block;
  }

  & .success-icon {
    background: var(--green-soft);
    border: 1px solid #4ade8040;
    border-radius: 50%;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: grid;
    position: relative;
  }

  & .success-icon:after {
    content: "";
    background: var(--green);
    opacity: .15;
    filter: blur(16px);
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    inset: -8px;
  }

  & .success-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
  }

  & .success-state h2 {
    letter-spacing: -.025em;
    margin-bottom: 12px;
    font-size: 28px;
  }

  & .success-state h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .success-state p {
    color: var(--text-soft);
    max-width: 440px;
    margin: 0 auto 22px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  & .success-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    display: flex;
  }

  & .success-meta {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 10.5px;
    display: inline-flex;
  }

  & .success-meta strong {
    color: var(--text);
    font-weight: 500;
  }

  & .next-section {
    padding: 60px 0 24px;
  }

  & .next-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    max-width: 720px;
    margin: 0 auto;
    padding: 28px;
  }

  & .next-card h3 {
    letter-spacing: -.015em;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 500;
  }

  & .next-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .next-steps {
    gap: 14px;
    display: grid;
  }

  & .next-step {
    align-items: flex-start;
    gap: 14px;
    display: flex;
  }

  & .next-step-num {
    background: var(--accent-soft);
    width: 28px;
    height: 28px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    border: 1px solid #ff4d2e40;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
    display: grid;
  }

  & .next-step-content h4 {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
  }

  & .next-step-content p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
  }

  & .faq-section {
    padding: 60px 0;
  }

  & .faq-section .section-head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 36px;
  }

  & .faq-section .section-head h2 {
    letter-spacing: -.025em;
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 500;
    line-height: 1.1;
  }

  & .faq-section .section-head h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .faq-section .section-head p {
    color: var(--text-soft);
    font-size: 14.5px;
  }

  & .faq-list {
    flex-direction: column;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
  }

  & .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 14px;
    padding: 18px 22px;
    transition: all .3s;
  }

  & .faq-item:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  & .faq-item summary {
    color: var(--text);
    cursor: pointer;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 14.5px;
    font-weight: 500;
    list-style: none;
    display: flex;
  }

  & .faq-item summary::-webkit-details-marker {
    display: none;
  }

  & .faq-item summary:after {
    content: "+";
    border: 1px solid var(--border);
    width: 22px;
    height: 22px;
    color: var(--text-soft);
    background: #ffffff0d;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    font-size: 14px;
    transition: all .2s;
    display: grid;
  }

  & .faq-item[open] summary:after {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: #ff4d2e4d;
    transform: rotate(45deg);
  }

  & .faq-item p {
    color: var(--text-soft);
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  & .shortcut-section {
    padding: 12px 0 80px;
  }

  & .shortcut-card {
    background: linear-gradient(135deg, #25d3660f, #25d36605);
    border: 1px solid #25d3662e;
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
  }

  & .shortcut-card .left {
    flex: 1;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    display: flex;
  }

  & .shortcut-icon {
    background: #25d366;
    border-radius: 12px;
    flex-shrink: 0;
    place-items: center;
    width: 40px;
    height: 40px;
    display: grid;
  }

  & .shortcut-icon svg {
    fill: #fff;
    width: 22px;
    height: 22px;
  }

  & .shortcut-text strong {
    letter-spacing: -.005em;
    margin-bottom: 1px;
    font-size: 14.5px;
    font-weight: 500;
    display: block;
  }

  & .shortcut-text span {
    color: var(--text-soft);
    font-size: 12.5px;
  }

  & .btn-whatsapp {
    color: #fff;
    background: #25d366;
    font-weight: 500;
  }

  & .btn-whatsapp:hover {
    background: #1faa54;
    transform: translateY(-1px);
  }

  @media (width <= 768px) {
    & .container {
      padding: 0 16px;
    }

    & .hero {
      padding: 32px 0 18px;
    }

    & .trust-strip {
      grid-template-columns: 1fr 1fr;
      gap: 10px 16px;
    }

    & .paths-grid {
      grid-template-columns: 1fr;
    }

    & .wizard-head {
      padding: 18px 20px 16px;
    }

    & .wizard-body {
      padding: 24px 20px 18px;
    }

    & .wizard-foot {
      padding: 16px 20px 18px;
    }

    & .field-group {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    & .progress-dot .label {
      display: none;
    }

    & .progress-dot.active .label {
      white-space: nowrap;
      display: block;
      position: absolute;
      top: 28px;
    }

    & .option-grid {
      grid-template-columns: 1fr;
    }

    & .review-row {
      grid-template-columns: 1fr;
      gap: 2px;
    }

    & .review-row .lab {
      font-size: 10px;
    }

    & .wizard-step h2 {
      font-size: 20px;
    }

    & .next-card, & .shortcut-card {
      padding: 20px;
    }
  }
}

.chinachallo-page--canton-fair {
  & .hero {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 18px;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
  }

  & h1.hero-title {
    letter-spacing: -.035em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 880px;
    margin: 0 auto 22px;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 500;
    line-height: 1;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.55;
  }

  & .hero-sub strong {
    color: var(--text);
    font-weight: 500;
  }

  & .hero-meta {
    border: 1px solid var(--border);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .02em;
    background: #ffffff08;
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 8px 18px;
    font-size: 12px;
    display: inline-flex;
  }

  & .hero-meta strong {
    color: var(--text);
    font-weight: 500;
  }

  & .hero-meta .sep {
    color: var(--border-strong);
  }

  & .facts-section {
    padding: 30px 0 80px;
  }

  & .facts-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .fact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: left;
    border-radius: 14px;
    padding: 22px 18px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }

  & .fact-card:before {
    content: "";
    background: var(--accent);
    opacity: .6;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .fact-card .num {
    letter-spacing: -.02em;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    margin-bottom: 8px;
    font-style: italic;
  }

  & .fact-card .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 10px;
  }

  & .fact-card .det {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.4;
  }

  & section {
    padding: 80px 0;
    position: relative;
  }

  & .section-head {
    text-align: center;
    max-width: 760px;
    margin-bottom: 56px;
    margin-left: auto;
    margin-right: auto;
  }

  & .section-head .eyebrow {
    justify-content: center;
    margin-bottom: 18px;
  }

  & .section-head h2 {
    letter-spacing: -.025em;
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.08;
  }

  & .section-head h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    font-style: italic;
    font-weight: 400;
  }

  & .section-head .deck {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.55;
  }

  & .what-section {
    padding: 60px 0 80px;
  }

  & .what-content {
    max-width: 760px;
    margin: 0 auto;
  }

  & .what-content .lead-para {
    color: var(--text);
    letter-spacing: -.005em;
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.55;
  }

  & .what-content .lead-para .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .what-content p {
    color: var(--text-soft);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  & .what-content p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .callout {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    margin: 24px 0;
    padding: 20px 22px;
  }

  & .callout-label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent);
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 500;
  }

  & .callout p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.55;
  }

  & .phases-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
    padding: 100px 0;
  }

  & .phase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 24px;
    padding: 0;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }

  & .phase-card:hover {
    border-color: var(--border-strong);
  }

  & .phase-card:before {
    content: "";
    background: var(--accent);
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .phase-head {
    border-bottom: 1px solid var(--border);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
    display: grid;
  }

  & .phase-num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.03em;
    font-size: 64px;
    font-style: italic;
    line-height: 1;
  }

  & .phase-info h3 {
    letter-spacing: -.02em;
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .phase-dates {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
  }

  & .phase-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .05em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    white-space: nowrap;
    background: #ffffff0a;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 11px;
  }

  & .phase-body {
    padding: 28px 36px 32px;
  }

  & .phase-body > p {
    color: var(--text-soft);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  & .phase-body > p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .phase-cats-title {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 11px;
    display: flex;
  }

  & .phase-cats-title:before {
    content: "";
    background: var(--accent);
    width: 8px;
    height: 1px;
  }

  & .phase-cats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    margin-bottom: 22px;
    display: grid;
  }

  & .phase-cat {
    color: var(--text-soft);
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 13.5px;
    line-height: 1.4;
    display: flex;
  }

  & .phase-cat:before {
    content: "";
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    margin-top: 8px;
  }

  & .phase-cat strong {
    color: var(--text);
    font-weight: 500;
  }

  & .phase-fit {
    background: var(--bg-input, var(--bg-elev));
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 18px;
    display: flex;
  }

  & .phase-fit .ico {
    background: var(--accent-soft);
    border: 1px solid #ff4d2e40;
    border-radius: 7px;
    flex-shrink: 0;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    display: grid;
  }

  & .phase-fit .ico svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8px;
  }

  & .phase-fit-text {
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.5;
  }

  & .phase-fit-text strong {
    font-weight: 500;
  }

  & .phase-fit-text .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-size: 10px;
    display: block;
  }

  & .venue-section {
    padding: 80px 0;
  }

  & .venue-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .venue-text {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
  }

  & .venue-text h3 {
    letter-spacing: -.02em;
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .venue-text h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .venue-text p {
    color: var(--text-soft);
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  & .venue-text p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .venue-stats {
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    display: grid;
  }

  & .venue-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    display: flex;
  }

  & .venue-stat-card .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-size: 10px;
  }

  & .venue-stat-card .det {
    color: var(--text);
    font-size: 13.5px;
    font-weight: 500;
  }

  & .venue-stat-card .num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-size: 22px;
    font-style: italic;
    line-height: 1;
  }

  & .who-section {
    padding: 80px 0;
  }

  & .who-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
  }

  & .who-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 26px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }

  & .who-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  & .who-card:before {
    content: "";
    background: var(--accent);
    opacity: .7;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .who-card .tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-size: 10px;
    font-weight: 500;
  }

  & .who-card h4 {
    letter-spacing: -.01em;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
  }

  & .who-card p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  & .who-rec {
    border-top: 1px solid var(--border);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .02em;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    font-size: 11px;
    display: flex;
  }

  & .who-rec strong {
    color: var(--accent);
    font-weight: 500;
  }

  & .prepare-section {
    padding: 80px 0;
  }

  & .prepare-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 880px;
    margin: 0 auto;
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
  }

  & .prepare-wrap:before {
    content: "";
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    filter: blur(60px);
    opacity: .5;
    width: 400px;
    height: 400px;
    position: absolute;
    top: -100px;
    right: -100px;
  }

  & .prepare-wrap > * {
    z-index: 1;
    position: relative;
  }

  & .prepare-head h3 {
    letter-spacing: -.02em;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 500;
  }

  & .prepare-head h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .prepare-head p {
    color: var(--text-soft);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.55;
  }

  & .checklist {
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    display: grid;
  }

  & .checklist-item {
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    display: flex;
  }

  & .checklist-item .check {
    background: var(--green-soft);
    border: 1px solid #4ade8040;
    border-radius: 6px;
    flex-shrink: 0;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: grid;
  }

  & .checklist-item .check svg {
    width: 12px;
    height: 12px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
  }

  & .checklist-item .ct strong {
    color: var(--text);
    letter-spacing: -.005em;
    margin-bottom: 2px;
    font-size: 14.5px;
    font-weight: 500;
    display: block;
  }

  & .checklist-item .ct span {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
  }

  & .costs-section {
    padding: 80px 0;
  }

  & .costs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .cost-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 30px;
    position: relative;
    overflow: hidden;
  }

  & .cost-card.accent {
    background: linear-gradient(135deg, #ff4d2e0f, #ff4d2e03);
    border-color: #ff4d2e40;
  }

  & .cost-card.accent:before {
    content: "";
    background: radial-gradient(ellipse at 0% 0%, var(--accent-soft), transparent 60%);
    opacity: .6;
    pointer-events: none;
    position: absolute;
    inset: 0;
  }

  & .cost-card > * {
    z-index: 1;
    position: relative;
  }

  & .cost-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 500;
  }

  & .cost-card.accent .cost-tag {
    color: var(--accent);
  }

  & .cost-card h4 {
    letter-spacing: -.015em;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .cost-card h4 .accent-italic {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .cost-items {
    margin-bottom: 18px;
    list-style: none;
  }

  & .cost-items li {
    border-bottom: 1px solid var(--border);
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 13.5px;
    display: flex;
  }

  & .cost-items li:last-child {
    border-bottom: none;
  }

  & .cost-items li .name {
    color: var(--text-soft);
  }

  & .cost-items li .price {
    color: var(--text);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    white-space: nowrap;
    font-size: 12.5px;
  }

  & .cost-total {
    border-top: 1.5px solid var(--border-strong);
    justify-content: space-between;
    align-items: baseline;
    padding-top: 12px;
    display: flex;
  }

  & .cost-total .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 11px;
  }

  & .cost-total .val {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
  }

  & .cost-note {
    color: var(--text-mute);
    font-size: 12.5px;
    line-height: 1.5;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    margin-top: 14px;
  }

  & .pak-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
    padding: 80px 0;
  }

  & .pak-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
  }

  & .pak-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    transition: all .3s;
  }

  & .pak-card:hover {
    border-color: var(--border-strong);
  }

  & .pak-card-head {
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    display: flex;
  }

  & .pak-card-ico {
    background: var(--accent-soft);
    border: 1px solid #ff4d2e40;
    border-radius: 10px;
    flex-shrink: 0;
    place-items: center;
    width: 36px;
    height: 36px;
    display: grid;
  }

  & .pak-card-ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8px;
  }

  & .pak-card h4 {
    letter-spacing: -.005em;
    font-size: 15px;
    font-weight: 500;
  }

  & .pak-card p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
  }

  & .pak-card p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .mistakes-section {
    padding: 80px 0;
  }

  & .mistakes-list {
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
    display: grid;
  }

  & .mistake {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 26px;
    transition: all .3s;
    display: grid;
  }

  & .mistake:hover {
    border-color: var(--border-strong);
    transform: translateX(2px);
  }

  & .mistake-num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    text-align: right;
    width: 36px;
    font-size: 28px;
    font-style: italic;
    line-height: 1;
  }

  & .mistake-content h4 {
    letter-spacing: -.005em;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 500;
  }

  & .mistake-content p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
  }

  & .mistake-content p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .mistake-content p .fix {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--green-soft);
    border: 1px solid #4ade8033;
    border-radius: 100px;
    margin-right: 6px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 500;
    display: inline-block;
  }

  & .faq-section {
    padding: 80px 0;
  }

  & .faq-list {
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
  }

  & .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 14px;
    padding: 20px 24px;
    transition: all .3s;
  }

  & .faq-item:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  & .faq-item summary {
    color: var(--text);
    cursor: pointer;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    list-style: none;
    display: flex;
  }

  & .faq-item summary::-webkit-details-marker {
    display: none;
  }

  & .faq-item summary:after {
    content: "+";
    border: 1px solid var(--border);
    width: 22px;
    height: 22px;
    color: var(--text-soft);
    background: #ffffff0d;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    font-size: 14px;
    transition: all .2s;
    display: grid;
  }

  & .faq-item[open] summary:after {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: #ff4d2e4d;
    transform: rotate(45deg);
  }

  & .faq-item p {
    color: var(--text-soft);
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  & .faq-item p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .final-cta {
    padding: 100px 0 120px;
  }

  & .final-card {
    border: 1px solid var(--border-strong);
    text-align: center;
    background: linear-gradient(135deg, #1a0f0c 0%, #0f0908 100%);
    border-radius: 28px;
    max-width: 920px;
    margin: 0 auto;
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
  }

  & .final-card:before {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e40, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: -100px;
  }

  & .final-card:after {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e26, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    bottom: -300px;
    right: -100px;
  }

  & .final-card > * {
    z-index: 1;
    position: relative;
  }

  & .final-card .eyebrow {
    justify-content: center;
    margin-bottom: 16px;
  }

  & .final-card .urdu {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    margin-bottom: 18px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-style: italic;
  }

  & .final-card h2 {
    letter-spacing: -.03em;
    margin-bottom: 18px;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 500;
    line-height: 1.05;
  }

  & .final-card h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .final-card p {
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.55;
  }

  & .final-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    display: flex;
  }

  & .toc-wrapper {
    align-self: flex-start;
    position: sticky;
    top: 80px;
  }

  & .reveal {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
    transform: translateY(20px);
  }

  & .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  @media (width <= 1024px) {
    & .facts-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    & .who-grid {
      grid-template-columns: 1fr;
    }

    & .pak-grid {
      grid-template-columns: 1fr 1fr;
    }

    & .costs-grid, & .venue-grid, & .checklist {
      grid-template-columns: 1fr;
    }

    & .phase-head {
      grid-template-columns: auto 1fr;
      gap: 18px;
      padding: 24px 26px;
    }

    & .phase-num {
      font-size: 48px;
    }

    & .phase-tag {
      grid-column: 1 / -1;
      justify-self: start;
    }

    & .phase-cats {
      grid-template-columns: 1fr;
    }

    & .phase-body {
      padding: 22px 26px 26px;
    }
  }

  @media (width <= 768px) {
    & .container {
      padding: 0 16px;
    }

    & section {
      padding: 56px 0;
    }

    & .hero {
      padding: 48px 0 32px;
    }

    & .nav-links {
      display: none;
    }

    & .facts-grid, & .pak-grid {
      grid-template-columns: 1fr;
    }

    & .final-card {
      padding: 48px 24px;
    }

    & .prepare-wrap {
      padding: 32px 24px;
    }

    & .venue-text {
      padding: 24px;
    }

    & .mistake {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 20px;
    }

    & .mistake-num {
      text-align: left;
    }
  }

  & .reveal, & .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.chinachallo-page--events {
  & .btn-whatsapp {
    color: #fff;
    background: #25d366;
    font-weight: 500;
  }

  & .btn-whatsapp:hover {
    background: #1faa54;
    transform: translateY(-1px);
  }

  & .hero {
    text-align: center;
    padding: 70px 0 40px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
  }

  & h1.hero-title {
    letter-spacing: -.035em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 820px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.02;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto;
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.55;
  }

  & .hero-sub strong {
    color: var(--text);
    font-weight: 500;
  }

  & .featured-section {
    padding: 40px 0;
  }

  & .featured-card {
    max-width: 1080px;
    box-shadow: 0 30px 60px -20px #00000080, 0 0 60px -10px var(--accent-glow);
    background: linear-gradient(135deg, #ff4d2e1a, #ff4d2e05);
    border: 1.5px solid #ff4d2e4d;
    border-radius: 28px;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  & .featured-card:before {
    content: "";
    background: radial-gradient(ellipse at 0% 0%, var(--accent-soft), transparent 50%);
    opacity: .6;
    pointer-events: none;
    position: absolute;
    inset: 0;
  }

  & .featured-card > * {
    z-index: 1;
    position: relative;
  }

  & .featured-visual {
    background: radial-gradient(at 30% 30%, #ff4d2e40, #0000 60%), linear-gradient(#1a1218 0%, #0a0a0b 100%);
    border-right: 1px solid #ff4d2e26;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .featured-visual:before {
    content: "";
    background-image: linear-gradient(to right, #ffffff08 1px, #0000 1px), linear-gradient(#ffffff08 1px, #0000 1px);
    background-size: 28px 28px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(80% 70%, #000 0%, #0000 90%);
    mask-image: radial-gradient(80% 70%, #000 0%, #0000 90%);
  }

  & .featured-date-block {
    z-index: 2;
    text-align: center;
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 32px -8px var(--accent-glow);
    background: #0a0a0bb3;
    border: 1px solid #ff4d2e4d;
    border-radius: 20px;
    padding: 24px 32px;
    position: relative;
  }

  & .featured-date-month {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
  }

  & .featured-date-day {
    font-family: var(--font-instrument-serif), serif;
    color: var(--text);
    letter-spacing: -.04em;
    margin-bottom: 4px;
    font-size: 88px;
    font-style: italic;
    line-height: 1;
  }

  & .featured-date-year {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .08em;
    font-size: 11px;
  }

  & .featured-time-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text);
    letter-spacing: .06em;
    z-index: 2;
    background: #00000073;
    border: 1px solid #ffffff1a;
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 10.5px;
    position: absolute;
    bottom: 22px;
    left: 22px;
  }

  & .featured-loc-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text);
    letter-spacing: .06em;
    z-index: 2;
    background: #00000073;
    border: 1px solid #ffffff1a;
    border-radius: 100px;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 10.5px;
    display: flex;
    position: absolute;
    bottom: 22px;
    right: 22px;
  }

  & .featured-loc-tag:before {
    content: "";
    background: var(--green);
    border-radius: 50%;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px #4ade8080;
  }

  & .featured-content {
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px;
    display: flex;
  }

  & .featured-tag {
    background: var(--accent-soft);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid #ff4d2e40;
    border-radius: 100px;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    display: inline-flex;
  }

  & .featured-content h2 {
    letter-spacing: -.025em;
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
  }

  & .featured-content h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .featured-content p {
    color: var(--text-soft);
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  & .featured-content p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .featured-meta {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    display: flex;
  }

  & .featured-meta .item {
    color: var(--text-soft);
    font-size: 12px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .02em;
    border: 1px solid var(--border);
    background: #ffffff08;
    border-radius: 100px;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    display: inline-flex;
  }

  & .featured-meta .item svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2px;
    flex-shrink: 0;
  }

  & .featured-meta .item.seats {
    color: var(--green);
    background: var(--green-soft);
    border-color: #4ade8040;
  }

  & .featured-meta .item.seats svg {
    stroke: var(--green);
  }

  & .featured-ctas {
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
  }

  & .filter-section {
    padding: 30px 0 16px;
  }

  & .filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px;
    display: flex;
  }

  & .filter-btn {
    color: var(--text-soft);
    cursor: pointer;
    letter-spacing: -.005em;
    background: none;
    border: none;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    display: inline-flex;
  }

  & .filter-btn:hover {
    color: var(--text);
    background: #ffffff0a;
  }

  & .filter-btn.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px -4px var(--accent-glow);
  }

  & .filter-btn .count {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .04em;
    background: #ffffff1a;
    border-radius: 100px;
    padding: 1px 7px;
    font-size: 10.5px;
  }

  & .filter-btn.active .count {
    background: #ffffff40;
  }

  & .events-section {
    padding: 30px 0 60px;
  }

  & .section-head {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto 28px;
    padding: 0 4px;
    display: flex;
  }

  & .section-head h2 {
    letter-spacing: -.02em;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.1;
  }

  & .section-head h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .section-head .deck {
    color: var(--text-mute);
    font-size: 13.5px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .02em;
  }

  & .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    flex-direction: column;
    padding: 0;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .event-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  & .event-header {
    border-bottom: 1px solid var(--border);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 22px 24px 18px;
    display: grid;
  }

  & .event-date-box {
    background: var(--bg-input, var(--bg-elev));
    border: 1px solid var(--border);
    border-radius: 14px;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    display: flex;
  }

  & .event-date-box .month {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 9.5px;
    font-weight: 500;
  }

  & .event-date-box .day {
    font-family: var(--font-instrument-serif), serif;
    color: var(--text);
    letter-spacing: -.03em;
    margin: 2px 0;
    font-size: 30px;
    font-style: italic;
    line-height: 1;
  }

  & .event-date-box .year {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .08em;
    font-size: 8px;
  }

  & .event-type-area {
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    display: flex;
  }

  & .event-type-pill {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 100px;
    align-self: flex-start;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 500;
    display: inline-flex;
  }

  & .event-type-pill.seminar {
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid #ff4d2e40;
  }

  & .event-type-pill.webinar {
    color: var(--blue);
    background: var(--blue-soft);
    border: 1px solid #6b8aff40;
  }

  & .event-type-pill.partnership {
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid #f4c75240;
  }

  & .event-type-pill.showcase {
    color: var(--purple);
    background: var(--purple-soft);
    border: 1px solid #c084fc40;
  }

  & .event-time {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-soft);
    letter-spacing: .02em;
    font-size: 11px;
  }

  & .event-price-tag {
    text-align: right;
    flex-shrink: 0;
  }

  & .event-price-tag .label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 9px;
  }

  & .event-price-tag .value {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    margin-top: 2px;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
  }

  & .event-price-tag .value.free {
    color: var(--green);
  }

  & .event-body {
    flex-direction: column;
    flex-grow: 1;
    padding: 18px 24px 22px;
    display: flex;
  }

  & .event-body h3 {
    letter-spacing: -.015em;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
  }

  & .event-body h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .event-body p.desc {
    color: var(--text-soft);
    flex-grow: 1;
    margin-bottom: 16px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  & .event-meta {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    display: flex;
  }

  & .event-meta .item {
    color: var(--text-soft);
    font-size: 11.5px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .02em;
    border: 1px solid var(--border);
    background: #ffffff06;
    border-radius: 100px;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    display: inline-flex;
  }

  & .event-meta .item svg {
    width: 11px;
    height: 11px;
    stroke: var(--text-mute);
    fill: none;
    stroke-width: 2px;
    flex-shrink: 0;
  }

  & .event-meta .item.online svg {
    stroke: var(--blue);
  }

  & .event-meta .item.seats {
    color: var(--green);
    background: var(--green-soft);
    border-color: #4ade8033;
  }

  & .event-meta .item.seats svg {
    stroke: var(--green);
  }

  & .event-meta .item.filling {
    color: var(--gold);
    background: var(--gold-soft);
    border-color: #f4c75233;
  }

  & .event-meta .item.filling svg {
    stroke: var(--gold);
  }

  & .event-cta {
    gap: 8px;
    margin-top: auto;
    display: flex;
  }

  & .event-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 11px 14px;
    font-size: 13px;
  }

  & .past-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
    padding: 50px 0;
  }

  & .past-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .past-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    opacity: .85;
    border-radius: 16px;
    padding: 18px 20px;
    transition: all .3s;
  }

  & .past-card:hover {
    border-color: var(--border-strong);
    opacity: 1;
    transform: translateY(-2px);
  }

  & .past-card-head {
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    display: flex;
  }

  & .past-card-date {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 10.5px;
  }

  & .past-card .event-type-pill {
    padding: 2px 7px;
    font-size: 9px;
  }

  & .past-card h4 {
    letter-spacing: -.005em;
    margin-bottom: 8px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.35;
  }

  & .past-card .past-meta {
    color: var(--text-mute);
    font-size: 11.5px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .02em;
    border-top: 1px solid var(--border);
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    display: flex;
  }

  & .past-card .past-meta .sep {
    color: var(--border-strong);
  }

  & .past-card .past-link {
    color: var(--accent);
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    display: inline-flex;
  }

  & .past-card .past-link:hover {
    color: #ff7a4d;
  }

  & .past-card .past-link svg {
    width: 12px;
    height: 12px;
  }

  & .newsletter-section {
    padding: 70px 0;
  }

  & .newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
    padding: 44px 48px;
    display: grid;
    position: relative;
    overflow: visible;
  }

  & .newsletter-card:before {
    content: "";
    background: radial-gradient(circle, var(--accent-soft), transparent 60%);
    filter: blur(60px);
    opacity: .5;
    width: 400px;
    height: 400px;
    position: absolute;
    top: -100px;
    right: -100px;
  }

  & .newsletter-card > * {
    z-index: 1;
    position: relative;
  }

  & .newsletter-card .eyebrow {
    margin-bottom: 14px;
  }

  & .newsletter-card h3 {
    letter-spacing: -.02em;
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .newsletter-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .newsletter-card p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
  }

  & .newsletter-form {
    flex-direction: column;
    gap: 10px;
    display: flex;
    overflow: visible;
  }

  & .newsletter-form .field-row {
    z-index: 1;
    gap: 8px;
    display: flex;
    position: relative;
    overflow: visible;
  }

  & .newsletter-form input {
    background: var(--bg-input, var(--bg-elev));
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    outline: none;
    flex: 1;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 13.5px;
    transition: all .2s;
  }

  & .newsletter-form input::placeholder {
    color: var(--text-mute);
  }

  & .newsletter-form input:focus {
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--accent-soft);
    border-color: #ff4d2e73;
  }

  & .newsletter-form .btn {
    padding: 12px 18px;
    font-size: 13.5px;
  }

  & .newsletter-form .city-select {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--bg-input, var(--bg-elev));
    border: 1px solid var(--border);
    width: 130px;
    color: var(--text);
    cursor: pointer;
    color-scheme: dark;
    accent-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    border-radius: 10px;
    outline: none;
    flex-shrink: 0;
    padding: 12px 32px 12px 14px;
    font-family: inherit;
    font-size: 13.5px;
    transition: all .2s;
  }

  & .newsletter-form .city-select:focus {
    background-color: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--accent-soft);
    border-color: #ff4d2e73;
  }

  & .newsletter-form .city-select option {
    background-color: var(--bg-card);
    color: var(--text);
  }

  & .newsletter-form .city-select-ui {
    flex-shrink: 0;
    width: 130px;
    position: relative;
  }

  & .newsletter-form .city-select-ui.is-open {
    z-index: 50;
  }

  & .newsletter-form .city-select--native {
    opacity: 0;
    pointer-events: none;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    position: absolute;
    overflow: hidden;
  }

  & .newsletter-form .city-select-trigger {
    text-align: left;
    background-color: var(--bg-input, var(--bg-elev));
    border: 1px solid var(--border);
    width: 100%;
    color: var(--text);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    border-radius: 10px;
    outline: none;
    padding: 12px 32px 12px 14px;
    font-family: inherit;
    font-size: 13.5px;
    transition: all .2s;
  }

  & .newsletter-form .city-select-trigger:hover, & .newsletter-form .city-select-trigger:focus {
    background-color: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--accent-soft);
    border-color: #ff4d2e73;
  }

  & .newsletter-form .city-select-menu {
    z-index: 30;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin: 0;
    padding: 4px;
    list-style: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    overflow: visible;
    box-shadow: 0 12px 32px #00000073;
  }

  & .newsletter-form .city-select-menu[hidden] {
    display: none;
  }

  & .newsletter-form .city-select-menu li {
    cursor: pointer;
    color: var(--text);
    white-space: nowrap;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  & .newsletter-form .city-select-menu li:hover, & .newsletter-form .city-select-menu li.is-active {
    background: var(--accent);
    color: #fff;
  }

  & .newsletter-form .legal {
    color: var(--text-mute);
    font-size: 11px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    margin-top: 2px;
    line-height: 1.4;
  }

  & .newsletter-success {
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid #4ade8040;
    border-radius: 12px;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    display: none;
  }

  & .newsletter-success.show {
    display: flex;
  }

  & .newsletter-success svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
    flex-shrink: 0;
  }

  & .cohost-section {
    padding: 70px 0;
  }

  & .cohost-card {
    border: 1px solid var(--border-strong);
    background: linear-gradient(135deg, #1a0f0c 0%, #0f0908 100%);
    border-radius: 28px;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 36px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 52px;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  & .cohost-card:before {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e38, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: -100px;
  }

  & .cohost-card > * {
    z-index: 1;
    position: relative;
  }

  & .cohost-card .eyebrow {
    margin-bottom: 14px;
  }

  & .cohost-card h3 {
    letter-spacing: -.025em;
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
  }

  & .cohost-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .cohost-card p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  & .cohost-card p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .cohost-list {
    gap: 10px;
    display: grid;
  }

  & .cohost-item {
    color: var(--text);
    border: 1px solid var(--border);
    background: #ffffff08;
    border-radius: 12px;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    display: flex;
  }

  & .cohost-item .ic {
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: grid;
  }

  & .cohost-item .ic svg {
    stroke: #fff;
    fill: none;
    stroke-width: 2.5px;
    width: 11px;
    height: 11px;
  }

  @media (width <= 1024px) {
    & .featured-card {
      grid-template-columns: 1fr;
    }

    & .featured-visual {
      border-bottom: 1px solid #ff4d2e26;
      border-right: none;
      min-height: 240px;
    }

    & .events-grid {
      grid-template-columns: 1fr;
    }

    & .past-grid {
      grid-template-columns: 1fr 1fr;
    }

    & .newsletter-card {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    & .cohost-card {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 32px;
    }
  }

  @media (width <= 768px) {
    & .container {
      padding: 0 16px;
    }

    & section {
      padding: 56px 0;
    }

    & .hero {
      padding: 40px 0 24px;
    }

    & .nav-links {
      display: none;
    }

    & .past-grid {
      grid-template-columns: 1fr;
    }

    & .featured-content, & .newsletter-card {
      padding: 28px 24px;
    }

    & .newsletter-form .field-row {
      flex-direction: column;
    }

    & .newsletter-form .city-select-ui {
      width: 100%;
    }

    & .filter-bar {
      padding: 6px;
    }

    & .filter-btn {
      padding: 8px 12px;
      font-size: 12px;
    }

    & .event-header {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    & .event-price-tag {
      text-align: left;
    }

    & .featured-date-day {
      font-size: 64px;
    }

    & .hero-title {
      font-size: clamp(32px, 9vw, 48px);
    }

    & .hero-sub {
      font-size: 13px;
    }

    & .filter-section {
      margin-bottom: 24px;
    }

    & .filter-bar {
      justify-content: flex-start;
      width: 100%;
    }

    & .event-cta {
      flex-direction: column;
    }

    & .event-cta .btn {
      width: 100%;
    }

    & .featured-actions {
      flex-direction: column;
    }

    & .featured-actions .btn {
      width: 100%;
    }
  }

  & .event-card.event-card--hidden {
    display: none !important;
  }

  & .reveal, & .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.chinachallo-page--packages {
  & .hero {
    text-align: center;
    padding: 70px 0 40px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
  }

  & h1.hero-title {
    letter-spacing: -.035em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 880px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.02;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.55;
  }

  & .hero-sub strong {
    color: var(--text);
    font-weight: 500;
  }

  & .pricing-range-pill {
    border: 1px solid var(--border);
    color: var(--text-soft);
    letter-spacing: -.005em;
    background: #ffffff08;
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13.5px;
    display: inline-flex;
  }

  & .pricing-range-pill .label {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--accent-soft);
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 10.5px;
  }

  & .pricing-range-pill .text strong {
    color: var(--text);
    font-weight: 500;
  }

  & .tiers-section {
    padding: 40px 0 60px;
  }

  & .tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
  }

  & .tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    flex-direction: column;
    padding: 32px 28px;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .tier-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
  }

  & .tier-card.featured {
    box-shadow: 0 30px 60px -20px #00000080, 0 0 60px -10px var(--accent-glow);
    background: linear-gradient(#ff4d2e0f, #ff4d2e03);
    border: 1.5px solid #ff4d2e59;
    transform: translateY(-8px);
  }

  & .tier-card.featured:hover {
    transform: translateY(-12px);
  }

  & .tier-card.featured:before {
    content: "";
    background: radial-gradient(ellipse at 50% 0%, var(--accent-soft), transparent 70%);
    opacity: .6;
    pointer-events: none;
    position: absolute;
    inset: 0;
  }

  & .tier-card > * {
    z-index: 1;
    position: relative;
  }

  & .tier-badge {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px -2px var(--accent-glow);
    border-radius: 0 0 8px 8px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
  }

  & .tier-head {
    margin-bottom: 22px;
  }

  & .tier-card.featured .tier-head {
    margin-top: 14px;
  }

  & .tier-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 12px;
    font-size: 10.5px;
    font-weight: 500;
  }

  & .tier-card.featured .tier-tag {
    color: var(--accent);
  }

  & .tier-name {
    letter-spacing: -.025em;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
  }

  & .tier-name .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .tier-tagline {
    color: var(--text-soft);
    min-height: 42px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  & .tier-price {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 22px;
    padding: 14px 0;
    display: flex;
  }

  & .tier-price .currency {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 11px;
  }

  & .tier-price .amount {
    letter-spacing: -.02em;
    color: var(--text);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
  }

  & .tier-card.featured .tier-price .amount {
    color: var(--accent);
  }

  & .tier-price .amount .from {
    font-family: var(--font-instrument-serif), serif;
    color: var(--text-mute);
    margin-right: 6px;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
  }

  & .tier-price .note {
    color: var(--text-mute);
    font-size: 12px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .01em;
    margin-top: 6px;
  }

  & .tier-fits {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 10.5px;
  }

  & .tier-features {
    flex-grow: 1;
    margin-bottom: 26px;
    list-style: none;
  }

  & .tier-features li {
    color: var(--text-soft);
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    line-height: 1.5;
    display: flex;
  }

  & .tier-features li .ic {
    background: var(--green-soft);
    border: 1px solid #4ade8033;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    display: grid;
  }

  & .tier-features li .ic svg {
    width: 8px;
    height: 8px;
    stroke: var(--green);
    fill: none;
    stroke-width: 3px;
  }

  & .tier-features li strong {
    color: var(--text);
    font-weight: 500;
  }

  & .tier-cta {
    cursor: pointer;
    border: 1px solid var(--border);
    width: 100%;
    color: var(--text);
    text-align: center;
    background: #ffffff0a;
    border-radius: 12px;
    justify-content: center;
    padding: 13px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    display: flex;
  }

  & .tier-cta:hover {
    border-color: var(--border-strong);
    background: #ffffff14;
  }

  & .tier-card.featured .tier-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px -8px var(--accent-glow);
  }

  & .tier-card.featured .tier-cta:hover {
    background: tomato;
  }

  & .compare-section {
    padding: 80px 0;
  }

  & .section-head {
    text-align: center;
    max-width: 760px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  & .section-head .eyebrow {
    justify-content: center;
    margin-bottom: 16px;
  }

  & .section-head h2 {
    letter-spacing: -.025em;
    margin-bottom: 14px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.1;
  }

  & .section-head h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .section-head .deck {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.55;
  }

  & .compare-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
  }

  & .compare-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-size: 13.5px;
  }

  & .compare-table thead th {
    background: var(--bg-elev);
    text-align: center;
    border-bottom: 1px solid var(--border);
    letter-spacing: -.005em;
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 500;
    position: static;
  }

  & .compare-table thead th:first-child {
    text-align: left;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
  }

  & .compare-table thead th.featured {
    color: var(--accent);
    background: linear-gradient(#ff4d2e1a, #ff4d2e05);
    position: relative;
  }

  & .compare-table thead th.featured:after {
    content: "";
    background: var(--accent);
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  & .compare-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background .15s;
  }

  & .compare-table tbody tr:last-child {
    border-bottom: none;
  }

  & .compare-table tbody tr:hover {
    background: #ffffff04;
  }

  & .compare-table tbody td {
    vertical-align: middle;
    color: var(--text-soft);
    text-align: center;
    padding: 14px 20px;
  }

  & .compare-table tbody td:first-child {
    color: var(--text);
    text-align: left;
    letter-spacing: -.005em;
    font-weight: 500;
  }

  & .compare-table tbody td.featured {
    color: var(--text);
    background: linear-gradient(#ff4d2e0a, #ff4d2e03);
    font-weight: 500;
  }

  & .compare-table .row-section td {
    background: var(--bg-elev);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 500;
  }

  & .check-yes {
    background: var(--green-soft);
    border: 1px solid #4ade804d;
    border-radius: 50%;
    place-items: center;
    width: 22px;
    height: 22px;
    margin: 0 auto;
    display: grid;
  }

  & .check-yes svg {
    width: 11px;
    height: 11px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
  }

  & .check-no {
    color: var(--text-mute);
    font-size: 17px;
    font-weight: 300;
    line-height: 1;
  }

  & .extensions-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
    padding: 80px 0;
  }

  & .extensions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
  }

  & .extension-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    transition: all .3s;
  }

  & .extension-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  & .extension-card .ext-head {
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    display: flex;
  }

  & .extension-card .ext-head h4 {
    letter-spacing: -.005em;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
  }

  & .extension-card .ext-head h4 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .extension-card .ext-cat {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    white-space: nowrap;
    background: #ffffff0a;
    border-radius: 100px;
    flex-shrink: 0;
    padding: 3px 8px;
    font-size: 9.5px;
  }

  & .extension-card.business .ext-cat {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: #ff4d2e33;
  }

  & .extension-card.leisure .ext-cat {
    color: var(--blue);
    background: var(--blue-soft);
    border-color: #6b8aff40;
  }

  & .extension-card p {
    color: var(--text-soft);
    min-height: 36px;
    margin-bottom: 14px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  & .extension-card .ext-price {
    border-top: 1px solid var(--border);
    justify-content: space-between;
    align-items: baseline;
    padding-top: 12px;
    display: flex;
  }

  & .extension-card .ext-price .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 10px;
  }

  & .extension-card .ext-price .val {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
  }

  & .ext-note {
    max-width: 760px;
    color: var(--text-mute);
    font-size: 12.5px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    text-align: center;
    letter-spacing: .01em;
    margin: 26px auto 0;
    line-height: 1.5;
  }

  & .honest-section {
    padding: 80px 0;
  }

  & .honest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
  }

  & .honest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 30px;
  }

  & .honest-card.in {
    background: linear-gradient(#4ade800d, #0000);
    border-color: #4ade8026;
  }

  & .honest-card.out {
    background: linear-gradient(#f4c7520d, #0000);
    border-color: #f4c75226;
  }

  & .honest-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 100px;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 4px 10px;
    font-size: 10.5px;
    font-weight: 500;
    display: inline-flex;
  }

  & .honest-card.in .honest-tag {
    color: var(--green);
    background: var(--green-soft);
    border: 1px solid #4ade8040;
  }

  & .honest-card.out .honest-tag {
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid #f4c75240;
  }

  & .honest-card h3 {
    letter-spacing: -.015em;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
  }

  & .honest-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .honest-card ul {
    list-style: none;
  }

  & .honest-card ul li {
    color: var(--text-soft);
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    line-height: 1.55;
    display: flex;
  }

  & .honest-card ul li .ic {
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    display: grid;
  }

  & .honest-card.in ul li .ic {
    background: var(--green-soft);
    border: 1px solid #4ade8033;
  }

  & .honest-card.in ul li .ic svg {
    width: 10px;
    height: 10px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5px;
  }

  & .honest-card.out ul li .ic {
    background: var(--gold-soft);
    color: var(--gold);
    border: 1px solid #f4c75233;
    font-size: 11px;
    font-weight: 600;
  }

  & .honest-card ul li strong {
    color: var(--text);
    font-weight: 500;
  }

  & .group-section {
    padding: 80px 0;
  }

  & .group-card {
    background: linear-gradient(135deg, #ff4d2e0f, #ff4d2e03);
    border: 1px solid #ff4d2e40;
    border-radius: 24px;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 36px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 44px 48px;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  & .group-card:before {
    content: "";
    background: radial-gradient(circle, var(--accent-soft), transparent 60%);
    filter: blur(40px);
    opacity: .6;
    width: 400px;
    height: 400px;
    position: absolute;
    top: -100px;
    left: -100px;
  }

  & .group-card > * {
    z-index: 1;
    position: relative;
  }

  & .group-card .eyebrow {
    margin-bottom: 14px;
  }

  & .group-card h3 {
    letter-spacing: -.025em;
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
  }

  & .group-card h3 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .group-card p {
    color: var(--text-soft);
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  & .group-card p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .group-perks {
    gap: 10px;
    display: grid;
  }

  & .group-perk {
    color: var(--text);
    border: 1px solid var(--border);
    background: #ffffff08;
    border-radius: 12px;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    line-height: 1.5;
    display: flex;
  }

  & .group-perk .ic {
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    display: grid;
  }

  & .group-perk .ic svg {
    stroke: #fff;
    fill: none;
    stroke-width: 2.5px;
    width: 10px;
    height: 10px;
  }

  & .why-section {
    padding: 80px 0;
  }

  & .why-content {
    max-width: 760px;
    margin: 0 auto;
  }

  & .why-content .lead {
    color: var(--text);
    letter-spacing: -.01em;
    margin-bottom: 22px;
    font-size: 22px;
    line-height: 1.5;
  }

  & .why-content .lead .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .why-content p {
    color: var(--text-soft);
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.7;
  }

  & .why-content p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .why-factors {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0;
    display: grid;
  }

  & .why-factor {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    display: flex;
  }

  & .why-factor .num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 24px;
    font-style: italic;
    line-height: 1;
  }

  & .why-factor .text strong {
    color: var(--text);
    margin-bottom: 2px;
    font-size: 13.5px;
    font-weight: 500;
    display: block;
  }

  & .why-factor .text span {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.45;
  }

  & .faq-section {
    padding: 80px 0;
  }

  & .faq-list {
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
  }

  & .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 14px;
    padding: 20px 24px;
    transition: all .3s;
  }

  & .faq-item:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  & .faq-item summary {
    color: var(--text);
    cursor: pointer;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 14.5px;
    font-weight: 500;
    list-style: none;
    display: flex;
  }

  & .faq-item summary::-webkit-details-marker {
    display: none;
  }

  & .faq-item summary:after {
    content: "+";
    border: 1px solid var(--border);
    width: 22px;
    height: 22px;
    color: var(--text-soft);
    background: #ffffff0d;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    font-size: 14px;
    transition: all .2s;
    display: grid;
  }

  & .faq-item[open] summary:after {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: #ff4d2e4d;
    transform: rotate(45deg);
  }

  & .faq-item p {
    color: var(--text-soft);
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.65;
  }

  & .faq-item p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .final-cta {
    padding: 80px 0 100px;
  }

  & .final-card {
    border: 1px solid var(--border-strong);
    text-align: center;
    background: linear-gradient(135deg, #1a0f0c 0%, #0f0908 100%);
    border-radius: 28px;
    max-width: 920px;
    margin: 0 auto;
    padding: 56px;
    position: relative;
    overflow: hidden;
  }

  & .final-card:before {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e38, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: -100px;
  }

  & .final-card:after {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e26, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    bottom: -300px;
    right: -100px;
  }

  & .final-card > * {
    z-index: 1;
    position: relative;
  }

  & .final-card .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
  }

  & .final-card h2 {
    letter-spacing: -.025em;
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.1;
  }

  & .final-card h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .final-card p {
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.55;
  }

  & .final-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    display: flex;
  }

  @media (width <= 1024px) {
    & .tiers-grid {
      grid-template-columns: 1fr;
    }

    & .tier-card.featured {
      transform: none;
    }

    & .extensions-grid {
      grid-template-columns: 1fr 1fr;
    }

    & .honest-grid {
      grid-template-columns: 1fr;
    }

    & .group-card {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 32px;
    }

    & .why-factors {
      grid-template-columns: 1fr;
    }
  }

  @media (width <= 768px) {
    & .container {
      padding: 0 16px;
    }

    & section {
      padding: 56px 0;
    }

    & .hero {
      padding: 40px 0 24px;
    }

    & .nav-links {
      display: none;
    }

    & .extensions-grid {
      grid-template-columns: 1fr;
    }

    & .final-card {
      padding: 36px 24px;
    }

    & .group-card {
      padding: 28px 24px;
    }

    & .compare-table {
      font-size: 12px;
    }

    & .compare-table thead th, & .compare-table tbody td {
      padding: 12px 10px;
    }
  }

  & .reveal, & .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.chinachallo-page--partners {
  & .btn-whatsapp {
    color: #fff;
    background: #25d366;
    border: none;
    font-weight: 500;
  }

  & .btn-whatsapp:hover {
    background: #1faa54;
    transform: translateY(-1px);
  }

  & .hero {
    text-align: center;
    padding: 70px 0 40px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
  }

  & h1.hero-title {
    letter-spacing: -.035em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 880px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.02;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.55;
  }

  & .hero-sub strong {
    color: var(--text);
    font-weight: 500;
  }

  & .stat-strip {
    border: 1px solid var(--border);
    background: #ffffff08;
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    display: inline-flex;
  }

  & .stat-strip .stat {
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    display: inline-flex;
  }

  & .stat-strip .stat .num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    font-size: 22px;
    font-style: italic;
    line-height: 1;
  }

  & .stat-strip .stat .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
    font-size: 9.5px;
  }

  & .stat-strip .sep {
    background: var(--border);
    width: 1px;
    height: 28px;
    margin: 0 4px;
  }

  & .jump-nav {
    padding: 28px 0 20px;
  }

  & .jump-nav-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px;
    display: flex;
  }

  & .jump-nav-inner a {
    color: var(--text-soft);
    letter-spacing: -.005em;
    border-radius: 100px;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
  }

  & .jump-nav-inner a:hover {
    color: var(--text);
    background: #ffffff0a;
  }

  & .jump-nav-inner a .dot {
    background: var(--accent);
    border-radius: 50%;
    width: 6px;
    height: 6px;
  }

  & .jump-nav-inner a.media .dot {
    background: var(--blue);
  }

  & .jump-nav-inner a.gov .dot {
    background: var(--green);
  }

  & .jump-nav-inner a.trade .dot {
    background: var(--gold);
  }

  & .jump-nav-inner a.bank .dot {
    background: var(--purple);
  }

  & .jump-nav-inner a.freight .dot {
    background: var(--pink);
  }

  & .category-section {
    padding: 60px 0;
  }

  & .category-head {
    border-bottom: 1px solid var(--border);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 30px;
    padding-bottom: 28px;
    display: grid;
  }

  & .category-icon {
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    flex-shrink: 0;
    place-items: center;
    width: 64px;
    height: 64px;
    display: grid;
  }

  & .category-icon svg {
    stroke-width: 1.6px;
    fill: none;
    width: 28px;
    height: 28px;
  }

  & .category-icon.media {
    background: var(--blue-soft);
    border-color: #6b8aff40;
  }

  & .category-icon.media svg {
    stroke: var(--blue);
  }

  & .category-icon.gov {
    background: var(--green-soft);
    border-color: #4ade8040;
  }

  & .category-icon.gov svg {
    stroke: var(--green);
  }

  & .category-icon.trade {
    background: var(--gold-soft);
    border-color: #f4c75240;
  }

  & .category-icon.trade svg {
    stroke: var(--gold);
  }

  & .category-icon.bank {
    background: var(--purple-soft);
    border-color: #c084fc40;
  }

  & .category-icon.bank svg {
    stroke: var(--purple);
  }

  & .category-icon.freight {
    background: var(--pink-soft);
    border-color: #f472b640;
  }

  & .category-icon.freight svg {
    stroke: var(--pink);
  }

  & .category-meta {
    min-width: 0;
  }

  & .category-meta .v-tag {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 6px;
    font-size: 10.5px;
    font-weight: 500;
  }

  & .category-meta.media .v-tag {
    color: var(--blue);
  }

  & .category-meta.gov .v-tag {
    color: var(--green);
  }

  & .category-meta.trade .v-tag {
    color: var(--gold);
  }

  & .category-meta.bank .v-tag {
    color: var(--purple);
  }

  & .category-meta.freight .v-tag {
    color: var(--pink);
  }

  & .category-meta h2 {
    letter-spacing: -.02em;
    margin-bottom: 8px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.15;
  }

  & .category-meta h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .category-meta p {
    color: var(--text-soft);
    max-width: 580px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  & .category-meta p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .category-counts {
    text-align: right;
    flex-shrink: 0;
  }

  & .category-counts .num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    margin-bottom: 4px;
    font-size: 38px;
    font-style: italic;
    line-height: 1;
  }

  & .category-counts .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: 10px;
  }

  & .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
  }

  & .partners-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  & .partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    flex-direction: column;
    min-height: 200px;
    padding: 22px 22px 20px;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .partner-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  & .partner-card.confirmed:before {
    content: "";
    background: var(--accent);
    opacity: .7;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .partner-card.tbc {
    background: var(--bg-elev);
    opacity: .78;
    border-style: dashed;
    border-color: #ffffff1a;
  }

  & .partner-card.tbc:hover {
    opacity: 1;
  }

  & .partner-status {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 500;
    position: absolute;
    top: 14px;
    right: 14px;
  }

  & .partner-status.confirmed {
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid #4ade8040;
  }

  & .partner-status.tbc {
    color: var(--text-mute);
    border: 1px solid var(--border);
    background: #ffffff0a;
  }

  & .partner-logo {
    border-radius: 14px;
    flex-shrink: 0;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  & .partner-logo .initials {
    font-family: var(--font-instrument-serif), serif;
    letter-spacing: -.02em;
    color: var(--text);
    z-index: 2;
    font-size: 22px;
    font-style: italic;
    line-height: 1;
    position: relative;
  }

  & .partner-logo img.real-logo {
    object-fit: contain;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 8px;
    position: absolute;
    inset: 0;
  }

  & .partner-logo.blue {
    background: var(--blue-soft);
    border: 1px solid #6b8aff4d;
  }

  & .partner-logo.green {
    background: var(--green-soft);
    border: 1px solid #4ade804d;
  }

  & .partner-logo.gold {
    background: var(--gold-soft);
    border: 1px solid #f4c7524d;
  }

  & .partner-logo.purple {
    background: var(--purple-soft);
    border: 1px solid #c084fc4d;
  }

  & .partner-logo.pink {
    background: var(--pink-soft);
    border: 1px solid #f472b64d;
  }

  & .partner-logo.orange {
    background: var(--accent-soft);
    border: 1px solid #ff4d2e4d;
  }

  & .partner-card h3 {
    letter-spacing: -.005em;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.25;
  }

  & .partner-card .partner-role {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 10.5px;
  }

  & .partner-card p.partner-desc {
    color: var(--text-soft);
    flex-grow: 1;
    margin-bottom: 14px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  & .partner-card .partner-link {
    font-size: 12px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .02em;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    text-decoration: none;
    transition: color .2s;
    display: inline-flex;
  }

  & .partner-card .partner-link:hover {
    color: #ff7a4d;
  }

  & .partner-card.tbc .partner-link {
    color: var(--text-mute);
    cursor: default;
  }

  & .section-separator {
    border-top: 1px solid var(--border);
    border-image: linear-gradient(to right, transparent, var(--border-strong), transparent) 1;
    border-style: solid;
    border-width: 1px 0 0;
    max-width: 880px;
    margin: 0 auto;
  }

  & .trust-note {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 0 20px;
  }

  & .trust-note p {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .02em;
    font-size: 11.5px;
    line-height: 1.7;
  }

  & .trust-note p .accent {
    color: var(--accent);
  }

  & .cta-section {
    padding: 60px 0 100px;
  }

  & .cta-card {
    border: 1px solid var(--border-strong);
    background: linear-gradient(135deg, #1a0f0c 0%, #0f0908 100%);
    border-radius: 28px;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 36px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  & .cta-card:before {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e38, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: -100px;
  }

  & .cta-card:after {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e1a, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    bottom: -300px;
    right: -100px;
  }

  & .cta-card > * {
    z-index: 1;
    position: relative;
  }

  & .cta-card .eyebrow {
    margin-bottom: 14px;
  }

  & .cta-card h2 {
    letter-spacing: -.025em;
    margin-bottom: 14px;
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 500;
    line-height: 1.15;
  }

  & .cta-card h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .cta-card p {
    color: var(--text-soft);
    max-width: 480px;
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  & .cta-card p strong {
    color: var(--text);
    font-weight: 500;
  }

  & .cta-ctas {
    flex-wrap: wrap;
    gap: 10px;
    display: flex;
  }

  & .cta-perks {
    gap: 10px;
    display: grid;
  }

  & .cta-perk {
    color: var(--text);
    border: 1px solid var(--border);
    background: #ffffff08;
    border-radius: 12px;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    display: flex;
  }

  & .cta-perk .ic {
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: grid;
  }

  & .cta-perk .ic svg {
    stroke: #fff;
    fill: none;
    stroke-width: 2.5px;
    width: 11px;
    height: 11px;
  }

  @media (width <= 1024px) {
    & .partners-grid, & .partners-grid.cols-3 {
      grid-template-columns: repeat(2, 1fr);
    }

    & .category-head {
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 18px;
    }

    & .category-counts {
      text-align: left;
      border-top: 1px solid var(--border);
      grid-column: 1 / -1;
      align-items: baseline;
      gap: 10px;
      padding-top: 16px;
      display: flex;
    }

    & .category-counts .num {
      font-size: 28px;
    }

    & .cta-card {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 36px;
    }
  }

  @media (width <= 768px) {
    & .container {
      padding: 0 16px;
    }

    & section {
      padding: 40px 0;
    }

    & .hero {
      padding: 40px 0 24px;
    }

    & .nav-links {
      display: none;
    }

    & .partners-grid, & .partners-grid.cols-3 {
      grid-template-columns: 1fr;
    }

    & .cta-card {
      padding: 28px 24px;
    }

    & .stat-strip {
      padding: 10px 14px;
    }

    & .stat-strip .stat {
      padding: 0 10px;
    }

    & .category-head {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 16px;
    }

    & .category-counts {
      text-align: left;
      border-top: none;
      grid-column: auto;
      padding-top: 0;
    }
  }

  & .reveal, & .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.chinachallo-page--success-stories {
  & .hero {
    text-align: center;
    padding: 70px 0 40px;
    position: relative;
  }

  & .hero-pill {
    color: var(--text);
    background: #ff4d2e0f;
    border: 1px solid #ff4d2e33;
    border-radius: 100px;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px 16px;
    font-size: 13px;
    display: inline-flex;
  }

  & .hero-pill .tag {
    background: var(--accent);
    color: #fff;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
  }

  & .hero-tagline {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
  }

  & h1.hero-title {
    letter-spacing: -.035em;
    background: linear-gradient(#fff 0%, #c0c0c5 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 880px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.02;
  }

  & h1.hero-title .accent {
    font-family: var(--font-instrument-serif), serif;
    background: linear-gradient(#ff6e50 0%, #ff4d2e 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
  }

  & .hero-sub {
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.55;
  }

  & .hero-sub strong {
    color: var(--text);
    font-weight: 500;
  }

  & .stat-strip {
    border: 1px solid var(--border);
    background: #ffffff08;
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    display: inline-flex;
  }

  & .stat-strip .stat {
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    display: inline-flex;
  }

  & .stat-strip .stat .num {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    letter-spacing: -.01em;
    font-size: 22px;
    font-style: italic;
    line-height: 1;
  }

  & .stat-strip .stat .lab {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
    font-size: 9.5px;
  }

  & .stat-strip .sep {
    background: var(--border);
    width: 1px;
    height: 28px;
    margin: 0 4px;
  }

  & .featured-section {
    padding: 40px 0 50px;
  }

  & .featured-card {
    max-width: 1080px;
    box-shadow: 0 30px 60px -20px #00000080, 0 0 60px -10px var(--accent-glow);
    cursor: pointer;
    background: linear-gradient(135deg, #ff4d2e14, #ff4d2e03);
    border: 1.5px solid #ff4d2e47;
    border-radius: 28px;
    grid-template-columns: .7fr 1fr;
    gap: 0;
    margin: 0 auto;
    transition: all .3s;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  & .featured-card:hover {
    transform: translateY(-3px);
  }

  & .featured-card:before {
    content: "";
    background: radial-gradient(ellipse at 0% 0%, var(--accent-soft), transparent 50%);
    opacity: .6;
    pointer-events: none;
    position: absolute;
    inset: 0;
  }

  & .featured-card > * {
    z-index: 1;
    position: relative;
  }

  & .featured-video-thumb {
    aspect-ratio: 9 / 13;
    background: linear-gradient(#1a1a1f 0%, #0a0a0b 100%);
    border-right: 1px solid #ff4d2e26;
    min-height: 380px;
    position: relative;
    overflow: hidden;
  }

  & .featured-video-thumb:before {
    content: "";
    background: radial-gradient(at 50% 30%, #ff4d2e38, #0000 60%);
    position: absolute;
    inset: 0;
  }

  & .featured-video-thumb:after {
    content: "";
    pointer-events: none;
    background: linear-gradient(#0000 0% 60%, #0a0a0bd9 100%);
    position: absolute;
    inset: 0;
  }

  & .featured-video-thumb .grid-overlay {
    background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
    background-size: 28px 28px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(80% 70%, #000 0%, #0000 90%);
    mask-image: radial-gradient(80% 70%, #000 0%, #0000 90%);
  }

  & .featured-video-thumb img.real-photo {
    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  & .featured-avatar {
    background: linear-gradient(135deg, var(--accent), #ff7a4d);
    color: #fff;
    width: 104px;
    height: 104px;
    box-shadow: 0 0 0 5px #ff4d2e2e, 0 0 80px -10px var(--accent-glow);
    z-index: 2;
    border-radius: 50%;
    place-items: center;
    font-size: 40px;
    font-weight: 600;
    display: grid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 30px));
  }

  & .featured-play {
    background: var(--accent);
    z-index: 3;
    width: 64px;
    height: 64px;
    box-shadow: 0 0 0 1px #ffffff26 inset, 0 12px 32px -8px var(--accent-glow), 0 0 80px -10px var(--accent-glow);
    border-radius: 50%;
    place-items: center;
    transition: transform .3s;
    display: grid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(50px - 50%));
  }

  & .featured-card:hover .featured-play {
    transform: translate(-50%, calc(50px - 50%)) scale(1.08);
  }

  & .featured-play svg {
    fill: #fff;
    width: 22px;
    height: 22px;
    margin-left: 4px;
  }

  & .featured-duration {
    z-index: 4;
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #fff;
    letter-spacing: .02em;
    background: #0009;
    border: 1px solid #ffffff26;
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    top: 18px;
    right: 18px;
  }

  & .featured-tag {
    z-index: 4;
    background: var(--accent-soft);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid #ff4d2e59;
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    top: 18px;
    left: 18px;
  }

  & .featured-photo-tag {
    z-index: 4;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #ffffffbf;
    letter-spacing: .04em;
    background: #00000073;
    border: 1px solid #ffffff1a;
    border-radius: 100px;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 10.5px;
    display: inline-flex;
    position: absolute;
    bottom: 18px;
    left: 18px;
  }

  & .featured-photo-tag:before {
    content: "";
    background: var(--green);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    box-shadow: 0 0 6px #4ade8099;
  }

  & .featured-content {
    flex-direction: column;
    justify-content: center;
    padding: 44px 48px;
    display: flex;
  }

  & .featured-content .badge {
    background: var(--accent-soft);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid #ff4d2e40;
    border-radius: 100px;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 500;
    display: inline-flex;
  }

  & .featured-content .stars {
    gap: 3px;
    margin-bottom: 14px;
    display: flex;
  }

  & .featured-content .stars svg {
    fill: #ffb800;
    width: 14px;
    height: 14px;
  }

  & .featured-quote {
    color: var(--text);
    letter-spacing: -.01em;
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
  }

  & .featured-quote .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .featured-author {
    border-top: 1px solid var(--border);
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    display: flex;
  }

  & .featured-author .author-avatar {
    background: linear-gradient(135deg, var(--accent), #ff7a4d);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 16px;
    font-weight: 600;
    display: grid;
  }

  & .featured-author .author-info strong {
    color: var(--text);
    letter-spacing: -.005em;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 500;
    display: block;
  }

  & .featured-author .author-info span {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-soft);
    letter-spacing: .02em;
    font-size: 11.5px;
  }

  & .featured-author .author-info span .dot {
    color: var(--text-mute);
    margin: 0 4px;
  }

  & .filter-section {
    padding: 30px 0 18px;
  }

  & .filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px;
    display: flex;
  }

  & .filter-btn {
    color: var(--text-soft);
    cursor: pointer;
    letter-spacing: -.005em;
    background: none;
    border: none;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    display: inline-flex;
  }

  & .filter-btn:hover {
    color: var(--text);
    background: #ffffff0a;
  }

  & .filter-btn.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px -4px var(--accent-glow);
  }

  & .filter-btn .count {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .04em;
    background: #ffffff1a;
    border-radius: 100px;
    padding: 1px 7px;
    font-size: 10.5px;
  }

  & .filter-btn.active .count {
    background: #ffffff40;
  }

  & .stories-section {
    padding: 30px 0 70px;
  }

  & .section-head {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 28px;
    padding: 0 4px;
    display: flex;
  }

  & .section-head h2 {
    letter-spacing: -.02em;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    line-height: 1.1;
  }

  & .section-head h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .section-head .deck {
    color: var(--text-mute);
    font-size: 13.5px;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .02em;
  }

  & .stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
  }

  & .story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    border-radius: 20px;
    flex-direction: column;
    transition: all .3s;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  & .story-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px #00000080, 0 0 40px -10px #ff4d2e33;
  }

  & .story-thumb {
    aspect-ratio: 9 / 14;
    background: linear-gradient(#1a1a1f 0%, #0a0a0b 100%);
    position: relative;
    overflow: hidden;
  }

  & .story-thumb.placeholder {
    background: radial-gradient(at 50% 30%, #ff4d2e2e, #0000 60%), linear-gradient(#1a1a1f 0%, #0a0a0b 100%);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  & .story-thumb.placeholder:before {
    content: "";
    background-image: linear-gradient(to right, #ffffff06 1px, #0000 1px), linear-gradient(#ffffff06 1px, #0000 1px);
    background-size: 24px 24px;
    position: absolute;
    inset: 0;
    -webkit-mask-image: radial-gradient(80% 60%, #000 0%, #0000 90%);
    mask-image: radial-gradient(80% 60%, #000 0%, #0000 90%);
  }

  & .story-thumb img.real-photo {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }

  & .story-thumb:after {
    content: "";
    pointer-events: none;
    background: linear-gradient(#0000 0% 50%, #0a0a0bb3 85%, #0a0a0bf2 100%);
    position: absolute;
    inset: 0;
  }

  & .story-duration {
    z-index: 3;
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #fff;
    letter-spacing: .02em;
    background: #0009;
    border: 1px solid #ffffff26;
    border-radius: 100px;
    padding: 3px 9px;
    font-size: 10.5px;
    font-weight: 500;
    position: absolute;
    top: 12px;
    right: 12px;
  }

  & .story-cat-pill {
    z-index: 3;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    letter-spacing: .06em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 3px 9px;
    font-size: 9.5px;
    font-weight: 500;
    position: absolute;
    top: 12px;
    left: 12px;
  }

  & .story-cat-pill.retail {
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid #ff4d2e40;
  }

  & .story-cat-pill.ecommerce {
    color: var(--blue);
    background: var(--blue-soft);
    border: 1px solid #6b8aff40;
  }

  & .story-cat-pill.manufacturer {
    color: var(--green);
    background: var(--green-soft);
    border: 1px solid #4ade8040;
  }

  & .story-cat-pill.wholesaler {
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid #f4c75240;
  }

  & .story-cat-pill.importer {
    color: var(--purple);
    background: var(--purple-soft);
    border: 1px solid #c084fc40;
  }

  & .story-play {
    z-index: 3;
    background: var(--accent);
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 1px #ffffff26 inset, 0 12px 32px -8px var(--accent-glow), 0 0 80px -10px var(--accent-glow);
    border-radius: 50%;
    place-items: center;
    transition: transform .3s, box-shadow .3s;
    display: grid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  & .story-card:hover .story-play {
    box-shadow: 0 0 0 1px #ffffff40 inset, 0 16px 40px -8px var(--accent-glow), 0 0 100px -10px var(--accent-glow);
    transform: translate(-50%, -50%) scale(1.08);
  }

  & .story-play svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    margin-left: 3px;
  }

  & .story-thumb-avatar {
    z-index: 2;
    background: linear-gradient(135deg, var(--accent), #ff7a4d);
    color: #fff;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 4px #ff4d2e26, 0 0 60px -10px var(--accent-glow);
    border-radius: 50%;
    place-items: center;
    font-size: 28px;
    font-weight: 600;
    display: grid;
    position: relative;
  }

  & .story-attr-overlay {
    z-index: 3;
    padding: 16px 16px 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  & .story-attr-overlay .name {
    color: #fff;
    letter-spacing: -.005em;
    text-shadow: 0 1px 4px #0006;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
    display: block;
  }

  & .story-attr-overlay .meta {
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: #ffffffb3;
    letter-spacing: .02em;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    display: flex;
  }

  & .story-attr-overlay .meta .dot {
    background: #fff6;
    border-radius: 50%;
    flex-shrink: 0;
    width: 3px;
    height: 3px;
  }

  & .story-quote-pull {
    border-top: 1px solid var(--border);
    flex-direction: column;
    flex-grow: 1;
    padding: 18px 20px 20px;
    display: flex;
  }

  & .story-quote-pull .stars {
    gap: 3px;
    margin-bottom: 10px;
    display: flex;
  }

  & .story-quote-pull .stars svg {
    fill: #ffb800;
    width: 11px;
    height: 11px;
  }

  & .story-quote-pull blockquote {
    color: var(--text);
    letter-spacing: -.005em;
    font-size: 13.5px;
    line-height: 1.5;
  }

  & .story-quote-pull blockquote .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }

  & .story-coming-soon {
    z-index: 4;
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: #ff4d2e26;
    border: 1px solid #ff4d2e59;
    border-radius: 100px;
    padding: 3px 9px;
    font-size: 9.5px;
    font-weight: 500;
    position: absolute;
    top: 12px;
    left: 12px;
  }

  & .story-card.has-coming-soon .story-cat-pill {
    top: 36px;
  }

  & .load-more-wrap {
    text-align: center;
    margin-top: 36px;
  }

  & .load-more-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--text);
    cursor: pointer;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    display: inline-flex;
  }

  & .load-more-btn:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
  }

  & .load-more-btn .ic {
    background: var(--accent-soft);
    border-radius: 50%;
    place-items: center;
    width: 18px;
    height: 18px;
    display: grid;
  }

  & .load-more-btn .ic svg {
    width: 10px;
    height: 10px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5px;
  }

  & .consent-note {
    text-align: center;
    font-family: var(--font-geist-mono), ui-monospace, monospace;
    color: var(--text-mute);
    letter-spacing: .02em;
    margin-top: 36px;
    font-size: 11px;
  }

  & .final-cta {
    padding: 80px 0 100px;
  }

  & .final-card {
    border: 1px solid var(--border-strong);
    text-align: center;
    background: linear-gradient(135deg, #1a0f0c 0%, #0f0908 100%);
    border-radius: 28px;
    max-width: 920px;
    margin: 0 auto;
    padding: 56px;
    position: relative;
    overflow: hidden;
  }

  & .final-card:before {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e38, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: -100px;
  }

  & .final-card:after {
    content: "";
    filter: blur(80px);
    background: radial-gradient(circle, #ff4d2e26, #0000 60%);
    width: 600px;
    height: 600px;
    position: absolute;
    bottom: -300px;
    right: -100px;
  }

  & .final-card > * {
    z-index: 1;
    position: relative;
  }

  & .final-card .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
  }

  & .final-card .urdu {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    margin-bottom: 16px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-style: italic;
  }

  & .final-card h2 {
    letter-spacing: -.03em;
    margin-bottom: 18px;
    font-size: clamp(34px, 4.5vw, 50px);
    font-weight: 500;
    line-height: 1.05;
  }

  & .final-card h2 .accent {
    font-family: var(--font-instrument-serif), serif;
    color: var(--accent);
    font-style: italic;
  }

  & .final-card p {
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.55;
  }

  & .final-ctas {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    display: flex;
  }

  & .video-modal {
    z-index: 1000;
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    background: #000000d9;
    justify-content: center;
    align-items: center;
    padding: 24px;
    transition: opacity .25s;
    display: none;
    position: fixed;
    inset: 0;
  }

  & .video-modal.open {
    opacity: 1;
    display: flex;
  }

  & .video-modal-inner {
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 80px #0009, 0 0 120px -20px var(--accent-glow);
    background: #000;
    border-radius: 20px;
    transition: transform .25s;
    position: relative;
    overflow: hidden;
    transform: scale(.95);
  }

  & .video-modal.open .video-modal-inner {
    transform: scale(1);
  }

  & .video-modal-inner iframe, & .video-modal-inner video {
    border: 0;
    width: 100%;
    height: 100%;
  }

  & .video-modal-close {
    color: #fff;
    cursor: pointer;
    background: #ffffff14;
    border: 1px solid #ffffff26;
    border-radius: 50%;
    place-items: center;
    width: 36px;
    height: 36px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: all .2s;
    display: grid;
    position: absolute;
    top: -48px;
    right: 0;
  }

  & .video-modal-close:hover {
    background: #ffffff26;
    border-color: #ffffff4d;
    transform: rotate(90deg);
  }

  @media (width <= 1024px) {
    & .featured-card {
      grid-template-columns: 1fr;
    }

    & .featured-video-thumb {
      border-bottom: 1px solid #ff4d2e26;
      border-right: none;
      min-height: 320px;
    }

    & .stories-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (width <= 768px) {
    & .container {
      padding: 0 16px;
    }

    & section {
      padding: 56px 0;
    }

    & .hero {
      padding: 40px 0 24px;
    }

    & .nav-links {
      display: none;
    }

    & .stories-grid {
      grid-template-columns: 1fr;
    }

    & .featured-content {
      padding: 28px 24px;
    }

    & .featured-quote {
      font-size: 18px;
    }

    & .final-card {
      padding: 36px 24px;
    }

    & .stat-strip {
      padding: 10px 14px;
    }

    & .stat-strip .stat {
      padding: 0 10px;
    }

    & .filter-bar {
      padding: 6px;
    }

    & .filter-btn {
      padding: 8px 12px;
      font-size: 12px;
    }
  }

  & .story-card.story-card--hidden {
    display: none !important;
  }

  & .reveal, & .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === light theme (append; wins over dark CTA rules above) === */
/**
 * Light theme overrides for hardcoded dark CTA / featured panels.
 * Appended to public/chinachallo.css by build — must load after page CSS (unlayered).
 */

html[data-theme="light"] {
  --bg: #fafafa;
  --bg-elev: #f4f4f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f4f4f5;
  --bg-input: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --border-focus: rgba(255, 77, 46, 0.45);
  --text: #0a0a0b;
  --text-soft: #52525b;
  --text-mute: #71717a;
  --accent-glow: rgba(255, 77, 46, 0.28);
  --accent-soft: rgba(255, 77, 46, 0.1);
  --green-soft: rgba(74, 222, 128, 0.14);
  --gold-soft: rgba(244, 199, 82, 0.14);
  --blue-soft: rgba(107, 138, 255, 0.12);
  --purple-soft: rgba(192, 132, 252, 0.12);
  --pink-soft: rgba(244, 114, 182, 0.12);
  --error-soft: rgba(255, 87, 87, 0.12);
}

html[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

html[data-theme="light"] .grid-bg {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

html[data-theme="light"] .bg-fx::before {
  opacity: 0.35;
}

html[data-theme="light"] .bg-fx::after {
  opacity: 0.5;
}

html[data-theme="light"] .site-nav {
  background: rgba(255, 255, 255, 0.88) !important;
}

html[data-theme="light"] .nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .btn-ghost {
  background: rgba(0, 0, 0, 0.04) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

html[data-theme="light"] .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.07) !important;
}

html[data-theme="light"] .menu-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] h1.hero-title {
  background: linear-gradient(#0a0a0b 0%, #71717a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .site-nav.nav-open {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* Dark-gradient CTA cards → light surfaces */
html[data-theme="light"] :is(
  .chinachallo-page--home .mid-cta-card,
  .chinachallo-page--partners .cta-card,
  .chinachallo-page--events .cohost-card,
  .chinachallo-page--canton-fair .final-card,
  .chinachallo-page--packages .final-card,
  .chinachallo-page--events .final-card,
  .chinachallo-page--success-stories .final-card
) {
  background: linear-gradient(135deg, #fff8f6 0%, #ffffff 100%) !important;
  border-color: rgba(255, 77, 46, 0.22) !important;
  color: var(--text);
}

html[data-theme="light"] :is(
  .chinachallo-page--home .mid-cta-card,
  .chinachallo-page--partners .cta-card,
  .chinachallo-page--events .cohost-card,
  .chinachallo-page--canton-fair .final-card,
  .chinachallo-page--packages .final-card,
  .chinachallo-page--events .final-card,
  .chinachallo-page--success-stories .final-card
)
  :is(h2, h3, p) {
  color: var(--text-soft);
}

html[data-theme="light"] :is(
  .chinachallo-page--home .mid-cta-card,
  .chinachallo-page--partners .cta-card,
  .chinachallo-page--events .cohost-card,
  .chinachallo-page--canton-fair .final-card,
  .chinachallo-page--packages .final-card,
  .chinachallo-page--events .final-card,
  .chinachallo-page--success-stories .final-card
)
  :is(h2, h3) {
  color: var(--text) !important;
}

html[data-theme="light"] :is(
  .chinachallo-page--home .mid-cta-card,
  .chinachallo-page--partners .cta-card,
  .chinachallo-page--events .cohost-card,
  .chinachallo-page--canton-fair .final-card,
  .chinachallo-page--packages .final-card,
  .chinachallo-page--events .final-card,
  .chinachallo-page--success-stories .final-card
)::before,
html[data-theme="light"] :is(
  .chinachallo-page--home .mid-cta-card,
  .chinachallo-page--partners .cta-card,
  .chinachallo-page--events .cohost-card,
  .chinachallo-page--canton-fair .final-card,
  .chinachallo-page--packages .final-card,
  .chinachallo-page--events .final-card,
  .chinachallo-page--success-stories .final-card
)::after {
  background: radial-gradient(circle, rgba(255, 77, 46, 0.12), transparent 60%) !important;
  opacity: 0.45 !important;
}

html[data-theme="light"] :is(.cta-perk, .cohost-item) {
  background: rgba(0, 0, 0, 0.03) !important;
  color: var(--text) !important;
}

html[data-theme="light"] .jump-nav-inner a:hover {
  color: #0a0a0b !important;
  background: rgba(0, 0, 0, 0.05) !important;
}

html[data-theme="light"] .filter-btn:hover {
  color: #0a0a0b !important;
  background: rgba(0, 0, 0, 0.06) !important;
}

html[data-theme="light"] .filter-btn:hover .count {
  color: #52525b !important;
  background: rgba(0, 0, 0, 0.06) !important;
}

html[data-theme="light"] .stat-strip {
  background: rgba(0, 0, 0, 0.03) !important;
}

/* Partners category jump nav */
html[data-theme="light"] .chinachallo-page--partners .jump-nav {
  background: var(--bg) !important;
}

html[data-theme="light"] .chinachallo-page--partners .jump-nav-inner {
  background: #ffffff !important;
  border-color: var(--border) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

html[data-theme="light"] .chinachallo-page--partners .jump-nav-inner a {
  color: var(--text-soft) !important;
}

html[data-theme="light"] .chinachallo-page--partners .stat-strip {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: var(--border) !important;
}

/* Success stories grid cards */
html[data-theme="light"] .chinachallo-page--success-stories .story-thumb,
html[data-theme="light"] .chinachallo-page--success-stories .story-thumb.placeholder {
  background:
    radial-gradient(at 50% 30%, rgba(255, 77, 46, 0.12), transparent 60%),
    linear-gradient(#fff8f6 0%, #f4f4f5 100%) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-thumb.placeholder::before {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-thumb::after {
  background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.75) 65%, #f4f4f5 100%) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-duration {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--border) !important;
  color: var(--text-soft) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-attr-overlay .name {
  color: var(--text) !important;
  text-shadow: none !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-attr-overlay .meta {
  color: var(--text-soft) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-attr-overlay .meta .dot {
  background: var(--text-mute) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .story-card:hover {
  box-shadow:
    0 20px 40px -20px rgba(0, 0, 0, 0.12),
    0 0 40px -10px rgba(255, 77, 46, 0.15) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .filter-bar {
  background: #ffffff !important;
  border-color: var(--border) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

/* Events featured event */
html[data-theme="light"] .chinachallo-page--events .featured-visual {
  background:
    radial-gradient(at 30% 30%, rgba(255, 77, 46, 0.1), transparent 60%),
    linear-gradient(#fff8f6 0%, #f4f4f5 100%) !important;
  border-right-color: rgba(255, 77, 46, 0.15) !important;
}

html[data-theme="light"] .chinachallo-page--events .featured-visual::before {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px) !important;
}

html[data-theme="light"] .chinachallo-page--events .featured-date-block {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 77, 46, 0.35) !important;
  box-shadow: 0 12px 32px -8px rgba(255, 77, 46, 0.15);
}

html[data-theme="light"] .chinachallo-page--events .featured-date-day {
  color: var(--text) !important;
}

html[data-theme="light"] .chinachallo-page--events :is(.featured-time-tag, .featured-loc-tag) {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--border) !important;
  color: var(--text-soft) !important;
}

/* Success stories featured */
html[data-theme="light"] .chinachallo-page--success-stories .featured-video-thumb {
  background: linear-gradient(#fff8f6 0%, #f4f4f5 100%) !important;
  border-right-color: rgba(255, 77, 46, 0.15) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .featured-video-thumb::after {
  background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.92) 100%) !important;
}

html[data-theme="light"] .chinachallo-page--success-stories .featured-video-thumb .grid-overlay {
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px) !important;
}

html[data-theme="light"] :is(.chinachallo-page--events, .chinachallo-page--success-stories) .featured-card {
  box-shadow:
    0 20px 50px -20px rgba(0, 0, 0, 0.1),
    0 0 40px -10px rgba(255, 77, 46, 0.12) !important;
}

/* Team contact + founder photo */
html[data-theme="light"] .chinachallo-page--team .contact-card {
  background: linear-gradient(135deg, #fff8f6 0%, #ffffff 100%) !important;
  border-color: rgba(255, 77, 46, 0.22) !important;
}

html[data-theme="light"] .chinachallo-page--team .contact-card::before {
  background: radial-gradient(circle, rgba(255, 77, 46, 0.12), transparent 60%) !important;
  opacity: 0.45 !important;
}

html[data-theme="light"] .chinachallo-page--team .contact-item {
  background: rgba(0, 0, 0, 0.03) !important;
}

html[data-theme="light"] .chinachallo-page--team .founder-photo {
  background: linear-gradient(135deg, #fff5f2 0%, #f4f4f5 100%) !important;
  box-shadow:
    0 12px 32px -8px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 77, 46, 0.15) !important;
}

html[data-theme="light"] .chinachallo-page--team .founder-photo .photo-tag {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--border) !important;
  color: var(--text-mute) !important;
}
