:root {
  /* iCook 品牌暖橙（承接 icookcloud，明亮基调）*/
  --brand: #F36A12;
  --brand-d: #E15B0D;
  --brand-l: #FF8A3D;
  --brand-t: #FFF3E6;   /* 暖奶油 tint */
  --ink: #1A1A1A;
  --ink-2: #3A342E;
  --stone: #7A7168;     /* 暖中性灰 */
  --sand: #F8F1E7;
  --paper: #FCF9F4;     /* 暖白 */
  --card: #ffffff;
  --line: #EFE4D5;      /* 暖描边 */
  --line-2: #E4D5C2;
  /* 分级柔和阴影 */
  --sh-1: 0 1px 2px rgba(40, 26, 12, .04), 0 2px 6px rgba(40, 26, 12, .03);
  --sh-2: 0 2px 6px rgba(40, 26, 12, .05), 0 12px 28px -16px rgba(40, 26, 12, .14);
  --sh-3: 0 4px 10px rgba(40, 26, 12, .06), 0 30px 60px -30px rgba(40, 26, 12, .24);
  --sh-brand: 0 12px 30px -12px rgba(243, 106, 18, .5);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --wrap: 1200px;
  --gutter: 48px;
  --display: Manrope, "Noto Sans SC", system-ui, sans-serif;
  --sans: Inter, "Noto Sans SC", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); font-weight: 800; }
h1 { letter-spacing: -.032em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(243, 106, 18, .18); }
svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: min(var(--wrap), calc(100vw - var(--gutter))); margin-inline: auto; }

/* Eyebrow — 精致标签，前置短横 */
.eyebrow {
  margin: 0 0 16px; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-d); font-weight: 700;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--brand); border-radius: 2px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 249, 244, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(40, 26, 12, .35); background: rgba(252, 249, 244, .92); }
.nav { min-height: 76px; display: flex; align-items: center; gap: 20px; }
.brand { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 12px; align-items: center; margin-right: auto; min-width: 200px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; position: relative;
  background: linear-gradient(140deg, var(--brand-l), var(--brand) 55%, var(--brand-d));
  box-shadow: inset 0 -8px 14px rgba(40, 16, 4, .28), 0 6px 16px -8px rgba(243, 106, 18, .7);
}
.brand__mark::after { content: ""; position: absolute; inset: 10px; border: 2px solid rgba(255,255,255,.92); border-radius: 4px; }
.brand strong { display: block; font-family: var(--display); font-weight: 800; font-size: 17.5px; color: var(--ink); white-space: nowrap; letter-spacing: -.02em; }
.brand small { display: block; margin-top: 1px; color: var(--stone); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav__links { display: flex; align-items: center; gap: 16px; }
.nav__link { position: relative; padding: 8px 0; font-size: 13.5px; font-weight: 650; color: var(--ink-2); white-space: nowrap; transition: color .2s; }
.nav__link:hover { color: var(--ink); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 2px; background: var(--brand); border-radius: 2px; transition: width .25s var(--ease-out); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--brand-d); }

.nav__cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 11px 18px; border-radius: var(--radius-sm);
  border: 1px solid transparent; font-weight: 750; font-size: 14px; cursor: pointer;
  font-family: var(--sans); letter-spacing: -.01em; white-space: nowrap;
  transition: transform .22s var(--ease-out), background .22s, border-color .22s, color .22s, box-shadow .22s;
}
.nav__cta svg, .btn svg { transition: transform .22s var(--ease-out); }
.nav__cta:hover svg, .btn:hover svg { transform: translateX(3px); }
.nav__cta, .btn--primary { background: linear-gradient(135deg, var(--brand-l), var(--brand)); color: #fff; box-shadow: var(--sh-brand); }
.nav__cta:hover, .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(243, 106, 18, .7); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn--ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.btn--light { color: var(--ink); border-color: var(--line-2); background: var(--card); box-shadow: var(--sh-1); }
.btn--light:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand-d); box-shadow: var(--sh-2); }
.lang-toggle, .nav__toggle {
  min-height: 38px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--card); color: var(--ink); font-weight: 750; cursor: pointer; transition: border-color .2s, color .2s;
}
.lang-toggle { padding: 8px 13px; font-size: 13px; }
.lang-toggle:hover { border-color: var(--brand); color: var(--brand-d); }
.nav__toggle { display: none; width: 42px; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 10px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s; }
.nav__toggle span { top: 18px; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 700px; position: relative; display: flex; align-items: center;
  overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #2e1c0e, var(--ink));
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #2e1c0e, var(--ink)); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) contrast(1.02); }
.hero__media.img-missing img { opacity: 0; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 12% 30%, rgba(243, 106, 18, .16), transparent 55%),
    linear-gradient(96deg, rgba(20,12,5,.93), rgba(20,12,5,.62) 46%, rgba(20,12,5,.16)),
    linear-gradient(0deg, rgba(20,12,5,.55), transparent 55%);
}
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, var(--paper) 0%, transparent 12%);
  opacity: .0;
}
.hero__inner { position: relative; z-index: 1; max-width: 880px; padding: 128px 0 108px; }
.hero .eyebrow { color: #ffbc85; }
.hero .eyebrow::before { background: var(--brand-l); }
.hero h1 { max-width: 15ch; color: #fff; font-size: clamp(44px, 6.6vw, 84px); font-weight: 800; line-height: 1.04; }
.lead { max-width: 62ch; margin-top: 24px; color: rgba(255,255,255,.85); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* ---------- Stat band ---------- */
.stat-band { margin-top: -54px; position: relative; z-index: 3; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); background: var(--card);
  box-shadow: var(--sh-3); border-radius: var(--radius); overflow: hidden;
}
.stat { min-height: 138px; padding: 28px 26px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--line); }
.stat b { display: block; font-family: var(--mono); font-size: clamp(26px, 3.2vw, 40px); line-height: 1; color: var(--brand-d); font-weight: 700; letter-spacing: -.02em; }
.stat span { display: block; margin-top: 12px; color: var(--stone); font-weight: 650; font-size: 13.5px; line-height: 1.4; }

/* ---------- Section ---------- */
.section { padding: 104px 0; position: relative; }
.section--tint { background: linear-gradient(180deg, var(--brand-t), #FFF7EE); }
.section--tint + .section--tint { background: var(--brand-t); }
.section__head { max-width: 820px; margin-bottom: 48px; }
.section__head h2 { font-size: clamp(30px, 4vw, 52px); color: var(--ink); line-height: 1.08; }
.section__head p { margin: 18px 0 0; color: var(--stone); font-size: 18.5px; line-height: 1.6; max-width: 70ch; }
.section__more { margin-top: 34px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.image-card, .module-card, .market, .supply-col, .vcard, .brand-card, .tier {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--card);
  box-shadow: var(--sh-1);
  transition: transform .28s var(--ease-out), box-shadow .28s, border-color .28s;
}
.image-card:hover, .module-card:hover, .market:hover, .supply-col:hover, .vcard:hover, .brand-card:hover, .tier:hover {
  transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(243, 106, 18, .4);
}
.image-card { overflow: hidden; display: flex; flex-direction: column; }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: linear-gradient(135deg, var(--brand-t), var(--sand)); }
.image-card.img-missing img { opacity: 0; }
.image-card > div { padding: 24px; }
.card__kicker { font-family: var(--mono); color: var(--brand-d); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.image-card h3, .module-card h3, .case-card h3 { margin: 12px 0 10px; font-size: 21px; letter-spacing: -.02em; }
.image-card p, .module-card p, .case-card p, .market p, .supply-col p { color: var(--stone); font-size: 15px; line-height: 1.62; }
.module-card { padding: 26px; min-height: 100%; display: flex; flex-direction: column; }
.module-card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(140deg, rgba(243,106,18,.14), rgba(243,106,18,.06)); color: var(--brand-d); margin-bottom: 6px;
  transition: transform .28s var(--ease-out), background .28s;
}
.module-card:hover .module-card__icon { transform: scale(1.06) rotate(-3deg); }
.module-card__icon svg { width: 22px; height: 22px; }
.module-card__res { margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 700; color: var(--stone); letter-spacing: .01em; }
.module-card h3 .star, .star { color: var(--brand); font-style: normal; font-size: 14px; }
.module-list { margin-top: 32px; }

/* ---------- Split / Figure ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--top { align-items: start; }
.figure { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--sh-3); background: linear-gradient(135deg, var(--brand-t), var(--sand)); min-height: 340px; }
.figure img { width: 100%; min-height: 340px; height: 100%; object-fit: cover; }
.figure.img-missing img { opacity: 0; }

/* ---------- Owned band ---------- */
.owned-band { background: linear-gradient(135deg, #2e1c0e, var(--ink)); color: rgba(255,255,255,.82); position: relative; overflow: hidden; }
.owned-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 70% at 88% 20%, rgba(243,106,18,.16), transparent 60%); pointer-events: none; }
.owned-band > .wrap { position: relative; }
.owned-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 46px); }
.owned-band p { color: rgba(255,255,255,.78); }
.owned-band .eyebrow { color: #ffbc85; }
.owned-band .eyebrow::before { background: var(--brand-l); }
.owned-figures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; align-self: start; }
.ofig { background: rgba(255,255,255,.035); padding: 26px; transition: background .25s; }
.ofig:hover { background: rgba(243,106,18,.08); }
.ofig b { display: block; font-family: var(--mono); font-size: clamp(23px, 3vw, 32px); color: #ff9a4d; line-height: 1; font-weight: 700; letter-spacing: -.02em; }
.ofig span { display: block; margin-top: 10px; font-size: 13px; font-weight: 650; color: rgba(255,255,255,.72); line-height: 1.45; }

/* ---------- Tier stack ---------- */
.tier-stack { display: grid; gap: 16px; }
.tier { display: grid; grid-template-columns: 74px 58px 1fr; align-items: center; gap: 20px; padding: 26px 30px; }
.tier__rank { font-family: var(--mono); font-weight: 700; font-size: 12px; color: var(--stone); letter-spacing: .1em; text-transform: uppercase; }
.tier__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(140deg, rgba(243,106,18,.14), rgba(243,106,18,.05)); color: var(--brand-d); }
.tier__icon svg { width: 26px; height: 26px; }
.tier__body h3 { font-size: 22px; margin-bottom: 6px; }
.tier__body p { color: var(--stone); margin: 0 0 12px; font-size: 15px; line-height: 1.6; }
.tier--realestate { border-color: rgba(243, 106, 18, .45); background: linear-gradient(100deg, rgba(243,106,18,.08), var(--card) 58%); box-shadow: var(--sh-2); }
.tier--realestate .tier__rank { color: var(--brand-d); }
.tier--realestate .tier__icon { background: linear-gradient(140deg, var(--brand-l), var(--brand)); color: #fff; box-shadow: var(--sh-brand); }
.tier--realestate .tier__body h3 { color: var(--brand-d); }

/* ---------- pill / hub ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }
.pill-row span { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 13px; border-radius: 999px; border: 1px solid rgba(243, 106, 18, .28); color: var(--brand-d); font-weight: 650; font-size: 12.5px; background: rgba(243, 106, 18, .045); transition: background .2s, border-color .2s; }
.pill-row span:hover { background: rgba(243, 106, 18, .1); border-color: rgba(243, 106, 18, .5); }
.pill-row--lg span { min-height: 42px; padding: 10px 18px; font-size: 14px; }
.hub-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.hub-grid__label { color: var(--stone); font-size: 11.5px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; margin-right: 4px; }
.hub-grid span { display: inline-flex; align-items: center; min-height: 38px; padding: 9px 16px; border-radius: var(--radius-sm); background: var(--sand); color: var(--ink); font-weight: 750; font-size: 13px; border: 1px solid var(--line); }

/* ---------- check list ---------- */
.check-list { display: grid; gap: 11px; margin-top: 16px; }
.check-list--2 { grid-template-columns: repeat(2, 1fr); gap: 11px 26px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.check-list li svg { width: 18px; height: 18px; color: var(--brand); margin-top: 3px; }

/* ---------- Real estate blocks ---------- */
.re-list { display: grid; gap: 26px; }
.re-block { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--sh-1); transition: box-shadow .28s, border-color .28s, transform .28s var(--ease-out); }
.re-block:hover { box-shadow: var(--sh-3); border-color: rgba(243, 106, 18, .4); transform: translateY(-4px); }
.re-block--alt { grid-template-columns: 1.08fr 0.92fr; }
.re-block--alt .re-block__media { order: 2; }
.re-block__media { min-height: 340px; border: 0; border-radius: 0; box-shadow: none; }
.re-block__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.re-block__no { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-d); margin-bottom: 14px; }
.re-block__no svg { width: 28px; height: 28px; }
.re-block__no em { font-family: var(--mono); font-style: normal; font-weight: 700; font-size: 13px; letter-spacing: .12em; }
.re-block__body h3 { font-size: 27px; margin-bottom: 12px; letter-spacing: -.02em; }
.re-block__body > p { color: var(--stone); line-height: 1.62; }
.re-closing { margin-top: 40px; font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.5vw, 30px); color: var(--ink); max-width: 42ch; line-height: 1.32; letter-spacing: -.02em; }
.re-closing::before { content: ""; display: block; width: 44px; height: 3px; background: var(--brand); border-radius: 2px; margin-bottom: 22px; }

/* ---------- Supply columns ---------- */
.supply-col { padding: 28px; }
.supply-col h3 { font-size: 20px; margin: 8px 0 6px; letter-spacing: -.02em; }
.coverage-note { margin-top: 32px; padding: 20px 24px; border-left: 3px solid var(--brand); background: linear-gradient(100deg, var(--brand-t), transparent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-weight: 650; color: var(--ink); font-size: 15.5px; }

/* ---------- Verticals band + cards ---------- */
.vband { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.vband__item { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 26px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); color: var(--ink); font-weight: 750; font-size: 13px; text-align: center; box-shadow: var(--sh-1); transition: transform .24s var(--ease-out), border-color .24s, box-shadow .24s; }
.vband__item:hover { transform: translateY(-5px); border-color: rgba(243, 106, 18, .5); box-shadow: var(--sh-2); }
.vband__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(140deg, rgba(243,106,18,.14), rgba(243,106,18,.05)); color: var(--brand-d); transition: transform .24s var(--ease-out); }
.vband__item:hover .vband__icon { transform: scale(1.08); }
.vband__icon svg { width: 26px; height: 26px; }
.vcard { padding: 30px; }
.vcard__head { display: flex; align-items: center; gap: 15px; margin-bottom: 14px; }
.vcard__icon { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(140deg, var(--brand-l), var(--brand)); color: #fff; box-shadow: var(--sh-brand); }
.vcard__icon svg { width: 24px; height: 24px; }
.vcard__head h3 { font-size: 22px; letter-spacing: -.02em; }
.vcard > p { color: var(--stone); font-size: 15px; line-height: 1.62; }
.vcard__how { margin: 18px 0; padding: 18px; border-radius: var(--radius-sm); background: linear-gradient(120deg, var(--brand-t), #FFF8EF); }
.vcard__how b { display: block; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-d); margin-bottom: 7px; font-weight: 750; }
.vcard__how p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

/* ---------- Brand wall / cards ---------- */
.brand-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.brand-chip { display: flex; flex-direction: column; gap: 5px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--sh-1); transition: transform .24s var(--ease-out), border-color .24s, box-shadow .24s; }
.brand-chip:hover { transform: translateY(-5px); border-color: rgba(243, 106, 18, .5); box-shadow: var(--sh-2); }
.brand-chip b { font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand-chip span { font-size: 12.5px; color: var(--stone); font-weight: 600; }
.brand-card { padding: 30px; display: flex; flex-direction: column; gap: 9px; }
.brand-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.brand-card__top b { font-family: var(--display); font-size: 23px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand-card__stage { font-size: 12px; font-weight: 700; color: var(--brand-d); background: var(--brand-t); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.brand-card__cat { font-family: var(--mono); font-size: 12px; color: var(--stone); font-weight: 700; letter-spacing: .03em; }
.brand-card > p { color: var(--ink-2); font-size: 15px; margin: 4px 0 0; line-height: 1.6; }
.brand-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 10px; color: var(--brand-d); font-weight: 750; font-size: 13px; }
.brand-card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease-out); }
.brand-card__link:hover svg { transform: translateX(3px); }

/* ---------- Sequence ---------- */
.seq { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.seq__item { position: relative; display: flex; flex-direction: column; gap: 12px; min-height: 128px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--sh-1); transition: transform .24s var(--ease-out), box-shadow .24s; }
.seq__item:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.seq__item b { font-family: var(--mono); color: var(--brand-d); font-weight: 700; font-size: 15px; }
.seq__item span { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: -.02em; }

/* ---------- Markets ---------- */
.market-list { display: grid; gap: 14px; }
.market { padding: 24px; }
.market b { display: block; font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -.02em; }

/* ---------- Cases ---------- */
.case-card { display: grid; grid-template-columns: 250px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--sh-1); transition: transform .28s var(--ease-out), box-shadow .28s, border-color .28s; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: rgba(243, 106, 18, .4); }
.case-card img { width: 100%; height: 100%; min-height: 224px; object-fit: cover; background: linear-gradient(135deg, var(--brand-t), var(--sand)); }
.case-card.img-missing img { opacity: 0; }
.case-card > div { padding: 28px; display: flex; flex-direction: column; gap: 9px; }
.case-card .brand-card__link { padding-top: 6px; }

/* ---------- Steps / Form ---------- */
.steps { display: grid; gap: 12px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); font-weight: 650; box-shadow: var(--sh-1); }
.step b { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(140deg, var(--brand-l), var(--brand)); color: #fff; font-family: var(--mono); box-shadow: var(--sh-brand); }
.lead-form { display: grid; gap: 16px; padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); box-shadow: var(--sh-3); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.lead-form label { display: grid; gap: 7px; color: var(--stone); font-size: 12.5px; font-weight: 750; letter-spacing: .01em; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 13px 14px;
  background: var(--paper); color: var(--ink); font: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(243, 106, 18, .14); }
fieldset { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
legend { padding: 0 6px; color: var(--ink); font-weight: 800; font-size: 13px; }
fieldset label, .privacy { display: inline-flex !important; grid-template-columns: unset; align-items: center; gap: 8px; color: var(--ink-2) !important; font-weight: 600 !important; }
fieldset input, .privacy input { width: auto !important; accent-color: var(--brand); }
.hp { display: none !important; }
.form-status { min-height: 24px; margin: 0; color: var(--brand-d); font-weight: 750; }

/* ---------- CTA / Footer ---------- */
.cta-band { background: linear-gradient(135deg, #2e1c0e, var(--ink)); color: rgba(255,255,255,.8); padding: 76px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% 50%, rgba(243,106,18,.2), transparent 60%); pointer-events: none; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
.cta-band .eyebrow { color: #ffbc85; }
.cta-band .eyebrow::before { background: var(--brand-l); }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.8vw, 46px); letter-spacing: -.025em; }
.cta-band p:not(.eyebrow) { margin-top: 14px; max-width: 62ch; line-height: 1.6; }

.site-footer { padding: 66px 0 28px; color: rgba(255,255,255,.68); background: #140d06; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid b { display: block; color: #fff; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.footer-grid p { margin-top: 12px; max-width: 44ch; font-size: 14px; line-height: 1.6; }
.footer-note { color: rgba(255,255,255,.48); font-size: 12.5px !important; }
.footer-grid h4 { margin: 0 0 14px; color: var(--brand-l); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.66); transition: color .2s, padding-left .2s; }
.footer-grid a:hover { color: var(--brand-l); padding-left: 4px; }
.footer-base { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 24px; font-size: 12px; color: rgba(255,255,255,.44); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .nav__cta:hover svg, .btn:hover svg { transform: none; } }
.load-error { min-height: 100vh; display: grid; place-items: center; padding: 40px; text-align: center; }
.load-error h1 { color: var(--brand-d); }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  :root { --gutter: 40px; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; display: grid; gap: 0;
    padding: 10px 40px 26px; background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-3); transform: translateY(-140%); transition: transform .28s var(--ease-out);
  }
  .nav__links.is-open { transform: none; }
  .nav__link { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: block; }
  .stat-grid, .card-grid--3, .card-grid--4, .vband { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::before { display: none; }
  .seq { grid-template-columns: repeat(2, 1fr); }
  .split, .footer-grid, .re-block, .re-block--alt { grid-template-columns: 1fr; }
  .re-block--alt .re-block__media { order: 0; }
  .owned-figures { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --gutter: 28px; }
  .wrap { width: min(100% - var(--gutter), var(--wrap)); }
  .nav { min-height: 64px; }
  .brand { grid-template-columns: 34px minmax(0, 1fr); min-width: 0; }
  .brand__mark { width: 34px; height: 34px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 10px; max-width: 190px; }
  .nav__links { inset: 64px 0 auto 0; padding: 10px 28px 24px; }
  .hero { min-height: 600px; align-items: flex-end; }
  .hero__inner { padding: 96px 0 66px; }
  .hero h1 { font-size: clamp(35px, 11vw, 52px); }
  .lead { font-size: 16px; }
  .hero__actions, .cta-band__inner { display: grid; align-items: stretch; }
  .btn, .nav__cta { width: 100%; }
  .stat-grid, .card-grid--2, .card-grid--3, .card-grid--4, .vband, .seq, .brand-wall, .check-list--2, .form-grid, .owned-figures { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .section { padding: 68px 0; }
  .section__head { margin-bottom: 34px; }
  .stat-band { margin-top: 0; }
  .stat { min-height: 100px; padding: 22px; }
  .case-card { grid-template-columns: 1fr; }
  .tier { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px; }
  .tier__rank { display: none; }
  .lead-form, .re-block__body { padding: 22px; }
}

/* p3: 业态卡 / 供应链卡 顶部配图（banner，紧凑） */
.vcard, .supply-col { overflow: hidden; }
.vcard__media, .supply-col__media { min-height: 0; border: 0; border-radius: 0; box-shadow: none; background: linear-gradient(135deg, var(--brand-t), var(--sand)); }
.vcard__media { margin: -30px -30px 20px; }
.supply-col__media { margin: -28px -28px 18px; }
.vcard__media img, .supply-col__media img { width: 100%; height: 170px; min-height: 0; object-fit: cover; display: block; }
.vcard__media.img-missing img, .supply-col__media.img-missing img { opacity: 0; }
