:root {
  --ink: #142019;
  --muted: #66736a;
  --soft: #eef2eb;
  --line: #dce4dc;
  --paper: #f4f1e8;
  --white: #ffffff;
  --deep: #0d1f18;
  --green: #116246;
  --mint: #dbe96d;
  --gold: #c39431;
  --clay: #a94c34;
  --blue: #265f75;
  --shadow: 0 28px 90px rgba(10, 24, 18, 0.18);
  --soft-shadow: 0 18px 44px rgba(15, 38, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 32, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 25, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 clamp(18px, 4vw, 60px);
  color: var(--white);
  background: rgba(13, 31, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(219, 233, 109, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.site-nav a {
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.site-nav .nav-cta:hover {
  color: var(--deep);
  background: #edf783;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1523805009345-7448845a9e53?auto=format&fit=crop&w=2400&q=88");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 11, 0.96) 0%, rgba(6, 15, 11, 0.82) 48%, rgba(6, 15, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 15, 11, 0.82) 0%, rgba(6, 15, 11, 0.06) 54%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 900px) minmax(300px, 380px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  min-height: 96vh;
  padding: 136px clamp(18px, 5vw, 76px) 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow.dark,
.section-kicker {
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  line-height: 1.24;
}

.hero-lead {
  max-width: 790px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-line {
  margin: 24px 0 0;
  color: var(--mint);
  font-size: 18px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #0e1c16;
  background: var(--mint);
  box-shadow: 0 18px 44px rgba(219, 233, 109, 0.22);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.route-board {
  align-self: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.route-top {
  padding: 10px 8px 18px;
}

.route-top p {
  margin-bottom: 9px;
  color: var(--mint);
  font-weight: 900;
}

.route-top strong {
  display: block;
  font-size: 28px;
  line-height: 1.14;
}

.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 13px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.route-line i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), rgba(255, 255, 255, 0.18));
}

.route-image {
  overflow: hidden;
  border-radius: 8px;
}

.route-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.route-note {
  margin: 16px 8px 4px;
  color: rgba(255, 255, 255, 0.78);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metric-strip div {
  min-height: 126px;
  padding: 30px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 26px;
}

.metric-strip span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.section {
  padding: 98px clamp(18px, 5vw, 76px);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 66px;
  background: var(--paper);
}

.manifesto h2,
.opportunity h2,
.problem h2,
.industries h2,
.section-head h2,
.market-title h2,
.trust-copy h2,
.region-plan h2,
.lead-copy h2 {
  margin-bottom: 0;
}

.manifesto-text {
  color: #334139;
  font-size: 19px;
}

.manifesto-text p:last-child {
  margin-bottom: 0;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(320px, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
  padding: 18px;
  background: var(--deep);
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
}

.visual-card.large {
  min-height: 620px;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 15, 11, 0.82), rgba(6, 15, 11, 0.04) 62%);
}

.visual-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.visual-card:hover img {
  transform: scale(1.04);
}

.visual-card div {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.visual-card span,
.visual-card strong {
  display: block;
}

.visual-card span {
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.visual-card strong {
  max-width: 560px;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.12;
}

.opportunity {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1.18fr);
  gap: 52px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 31, 24, 0.96), rgba(13, 31, 24, 0.82)),
    url("https://images.unsplash.com/photo-1489493887464-892be6d1daae?auto=format&fit=crop&w=1800&q=84");
  background-position: center;
  background-size: cover;
}

.opportunity-grid {
  display: grid;
  gap: 14px;
}

.opportunity-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.opportunity-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.opportunity-grid strong,
.opportunity-grid span {
  display: block;
}

.opportunity-grid strong {
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 24px;
}

.opportunity-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.problem {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(320px, 1.22fr);
  gap: 58px;
  background: var(--white);
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list article {
  padding: 26px;
  background: #f8f9f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.problem-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 900;
}

.problem-list h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.problem-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.industries {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: center;
  background: var(--soft);
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 38, 31, 0.06);
  font-weight: 800;
}

.services {
  background: #e8eee5;
}

.section-head {
  max-width: 960px;
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 264px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(16, 38, 31, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 98, 70, 0.34);
  box-shadow: var(--soft-shadow);
}

.service-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.packages {
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.package-grid article {
  position: relative;
  min-height: 236px;
  padding: 26px;
  overflow: hidden;
  background: #f6f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.package-grid p {
  margin-bottom: 26px;
  color: var(--clay);
  font-weight: 900;
}

.package-grid h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.package-grid span {
  display: block;
  color: var(--muted);
}

.markets {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(320px, 1.28fr);
  gap: 56px;
  background: var(--paper);
}

.market-stage {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
}

.market-tabs {
  display: grid;
  gap: 10px;
}

.market-tab {
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.market-intro {
  max-width: 640px;
  margin: 22px 0 0;
  color: #4e5e54;
  font-size: 18px;
}

.market-tab.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.market-card {
  min-height: 520px;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 31, 24, 0.94), rgba(13, 31, 24, 0.72)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1400&q=84");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-card p {
  margin-bottom: 18px;
  color: var(--mint);
  font-weight: 900;
}

.market-card h3 {
  margin-bottom: 14px;
  font-size: 42px;
}

.market-card span {
  display: block;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.market-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.market-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.market-meta b,
.market-meta em {
  display: block;
}

.market-meta b {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 13px;
}

.market-meta em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.market-facts {
  margin-top: 20px;
}

.market-facts b {
  display: block;
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 14px;
}

.market-facts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-facts li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.market-facts.hot li {
  color: #101c15;
  background: var(--mint);
  border-color: transparent;
}

.partners {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 31, 24, 0.97), rgba(13, 31, 24, 0.86)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1800&q=84");
  background-position: center;
  background-size: cover;
}

.partners-hero {
  max-width: 980px;
  margin-bottom: 42px;
}

.partners-hero h2 {
  margin-bottom: 20px;
}

.partners-hero p:not(.eyebrow) {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-card {
  min-height: 330px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.partner-card span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--mint);
  font-weight: 900;
}

.partner-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.partner-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.partner-promise {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  background: rgba(219, 233, 109, 0.12);
  border: 1px solid rgba(219, 233, 109, 0.26);
  border-radius: 8px;
}

.partner-promise strong {
  display: block;
  color: var(--mint);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.16;
}

.partner-promise p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.journey {
  background: var(--white);
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.journey-line article {
  min-height: 238px;
  padding: 26px;
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journey-line span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.journey-line h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.journey-line p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1.18fr);
  gap: 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 31, 24, 0.98), rgba(13, 31, 24, 0.9)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=82");
  background-position: center;
  background-size: cover;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.trust-grid h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.trust-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.region-plan {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 52px;
  background: var(--paper);
}

.region-points {
  display: grid;
  gap: 16px;
}

.region-points p {
  margin-bottom: 0;
  padding: 22px;
  color: #344138;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(320px, 1fr);
  gap: 56px;
  padding: 98px clamp(18px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 31, 24, 0.97), rgba(13, 31, 24, 0.86)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=84");
  background-position: center;
  background-size: cover;
}

.lead-copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-box {
  margin-top: 34px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-box p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-box a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wechat-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #0e1c16;
  background: var(--mint);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.mini-btn.muted {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcf9;
  border: 1px solid #cfd8d0;
  border-radius: 8px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(219, 233, 109, 0.34);
  border-color: var(--green);
}

.wide {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  border: 0;
  font-size: 16px;
}

.floating-cta {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--deep);
  background: var(--mint);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(13, 31, 24, 0.26);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.7);
  background: #08120e;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .reveal,
  .visual-card img,
  .btn,
  .service-card,
  .opportunity-grid article {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .manifesto,
  .opportunity,
  .problem,
  .industries,
  .markets,
  .trust,
  .region-plan,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .partner-grid,
  .journey-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-board {
    max-width: 520px;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(13, 31, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero-inner {
    min-height: 92vh;
    padding: 108px 18px 46px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .route-top strong {
    font-size: 23px;
  }

  .metric-strip,
  .visual-story,
  .service-grid,
  .package-grid,
  .partner-grid,
  .journey-line,
  .market-stage,
  .market-meta,
  .partner-promise,
  .lead-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .lead-section {
    padding: 66px 18px;
  }

  .visual-story {
    padding: 10px;
  }

  .visual-card,
  .visual-card.large {
    min-height: 310px;
  }

  .manifesto,
  .opportunity,
  .problem,
  .industries,
  .markets,
  .trust,
  .region-plan,
  .lead-section {
    gap: 34px;
  }

  .market-card {
    min-height: 320px;
    padding: 28px;
  }

  .floating-cta {
    left: 18px;
    justify-content: center;
  }

  .brand small {
    display: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }
}
