:root {
  --green-950: #081f1a;
  --green-900: #0e332b;
  --green-800: #174a3c;
  --green-700: #2e7656;
  --green-100: #e8f1eb;
  --jade: #8ccbb1;
  --tech: #85cfc2;
  --gold-800: #7e5826;
  --gold-700: #a87838;
  --gold-500: #c59a52;
  --gold-300: #d7ba78;
  --gold-200: #f0e3c2;
  --champagne: #efe4cf;
  --champagne-2: #f8f1e4;
  --paper: #fcfaf2;
  --paper-2: #f4efe3;
  --porcelain: #f8f6ef;
  --ink: #121b18;
  --muted: #65736d;
  --line: rgba(18, 76, 58, 0.14);
  --gold-line: rgba(169, 122, 56, 0.22);
  --white: #ffffff;
  --shadow: 0 28px 72px rgba(9, 44, 36, 0.1);
  --soft-shadow: 0 18px 42px rgba(9, 44, 36, 0.075);
  --hairline: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 36%, #f2eadb 100%);
  font-family: "PingFang SC", "Hiragino Sans GB", -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(18, 60, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 49, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

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

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

::selection {
  background: rgba(197, 154, 82, 0.28);
  color: var(--green-950);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--green-950);
  border-bottom: 1px solid rgba(169, 122, 56, 0.16);
  background:
    linear-gradient(90deg, rgba(250, 247, 239, 0.92), rgba(239, 228, 207, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(217, 186, 120, 0.1));
  box-shadow: 0 12px 34px rgba(8, 31, 26, 0.065);
  backdrop-filter: blur(20px) saturate(1.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background:
    linear-gradient(90deg, rgba(250, 247, 239, 0.96), rgba(239, 228, 207, 0.9));
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(15, 49, 40, 0.09);
  border-color: rgba(169, 122, 56, 0.18);
}

.brand {
  width: 228px;
  height: 72px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.05);
}

.brand:hover {
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  background: transparent;
  box-shadow: none;
}

.main-nav {
  justify-self: end;
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  font-size: 13px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  opacity: 0.76;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold-800);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 48%, transparent 60% 100%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.2s ease, transform 0.35s ease;
  pointer-events: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover::after,
.button:hover::after {
  opacity: 1;
  transform: translateX(40%);
}

.nav-cta:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(197, 154, 82, 0.55);
  outline-offset: 3px;
}

.nav-cta {
  border-color: rgba(197, 154, 82, 0.28);
  background:
    linear-gradient(135deg, rgba(22, 72, 58, 0.98), rgba(8, 31, 26, 0.96)),
    linear-gradient(90deg, rgba(215, 186, 120, 0.18), transparent);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(8, 31, 26, 0.13);
}

.nav-cta:hover {
  color: var(--white);
  border-color: rgba(197, 154, 82, 0.38);
  box-shadow: 0 18px 34px rgba(8, 31, 26, 0.18);
}

.button.primary {
  border-color: rgba(215, 186, 120, 0.28);
  background:
    linear-gradient(135deg, #2e7656, #123c31 58%, #081f1a),
    linear-gradient(90deg, rgba(215, 186, 120, 0.2), transparent);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(8, 31, 26, 0.24);
}

.button.primary:hover {
  border-color: rgba(215, 186, 120, 0.42);
  box-shadow: 0 22px 44px rgba(8, 31, 26, 0.3);
}

.button.secondary {
  border-color: rgba(240, 227, 194, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.05));
  color: currentColor;
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  border-color: rgba(240, 227, 194, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.07));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 31, 26, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14));
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-content: end;
  padding: 128px clamp(20px, 6vw, 88px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 18, 0.98) 0%, rgba(8, 31, 26, 0.88) 46%, rgba(8, 31, 26, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 31, 26, 0.04), rgba(8, 31, 26, 0.78)),
    image-set(url("assets/jingtuitang-store-60-integrated.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 58%, rgba(215, 186, 120, 0.08) 58% 58.35%, transparent 58.35%),
    linear-gradient(rgba(215, 186, 120, 0.052) 1px, transparent 1px);
  background-size: auto, 100% 88px;
  opacity: 0.66;
}

.hero-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aura-ring {
  position: absolute;
  right: clamp(-180px, -8vw, -80px);
  top: 16%;
  width: min(66vw, 860px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 191, 130, 0.16);
  border-radius: 50%;
  opacity: 0.7;
}

.ring-two {
  right: clamp(-110px, -5vw, -48px);
  top: 25%;
  width: min(46vw, 610px);
  border-color: rgba(126, 214, 204, 0.14);
}

.aura-line {
  position: absolute;
  right: 18%;
  top: 9%;
  width: 1px;
  height: 74%;
  background: linear-gradient(180deg, transparent, rgba(217, 191, 130, 0.42), transparent);
  transform: rotate(28deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding-bottom: 34px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 56px;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  font-size: 40px;
  text-wrap: balance;
}

.title-lines .line {
  display: block;
}

.title-lines .keep {
  display: inline-block;
  white-space: nowrap;
}

.title-lines {
  word-break: keep-all;
  overflow-wrap: normal;
}

h3 {
  font-size: 19px;
  line-height: 1.32;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-lead span {
  display: inline;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.hero-proof div {
  position: relative;
  overflow: hidden;
  min-height: 84px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(215, 186, 120, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.105), rgba(255, 253, 248, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.hero-proof div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(215, 186, 120, 0.62), transparent);
}

.hero-proof strong {
  display: block;
  color: var(--gold-200);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

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

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(215, 186, 120, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.18), rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, rgba(197, 154, 82, 0.12), transparent);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(128%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.hero-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-950);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 31, 26, 0.78));
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(215, 186, 120, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 42, 34, 0.72), rgba(6, 26, 22, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.visual-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.visual-top span,
.visual-top p,
.formula span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.visual-top span {
  white-space: nowrap;
}

.visual-top strong {
  grid-row: 1 / 3;
  display: block;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.95;
  color: #fff9ec;
  text-shadow: 0 0 34px rgba(215, 186, 120, 0.14);
}

.visual-top p {
  margin: 4px 0 0;
  max-width: 360px;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.hero-flow div {
  min-height: 60px;
  padding: 11px 10px;
  border: 1px solid rgba(215, 186, 120, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.078), rgba(255, 253, 248, 0.032));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-flow div:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 186, 120, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.045));
}

.hero-flow b {
  color: var(--gold-300);
  font-size: 12px;
}

.hero-flow span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.data-panel-copy {
  padding: 14px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-panel-copy h2 {
  font-size: 19px;
  color: #fff9ec;
}

.data-panel-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.data-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.data-kpis div {
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(217, 191, 130, 0.17);
  background: rgba(217, 191, 130, 0.06);
}

.data-kpis span {
  display: block;
  color: var(--gold-200);
  font-size: 20px;
  font-weight: 800;
}

.data-kpis p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.health-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.health-matrix div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(126, 214, 204, 0.17);
  background: rgba(126, 214, 204, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.health-matrix em {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tech);
  box-shadow: 0 0 14px rgba(126, 214, 204, 0.8);
}

.identity-strip span {
  padding: 10px 8px;
  border: 1px solid rgba(215, 186, 120, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-align: center;
  background: rgba(255, 253, 248, 0.035);
}

.trust-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1380px, calc(100% - clamp(40px, 12vw, 176px)));
  margin: 0 auto;
  border: 1px solid rgba(215, 186, 120, 0.2);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 22, 0.54), rgba(12, 54, 43, 0.36));
  backdrop-filter: blur(16px);
}

.trust-bar span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  text-align: center;
  border-right: 1px solid rgba(215, 186, 120, 0.1);
}

.trust-bar span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(86px, 9vw, 140px) clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(169, 122, 56, 0.1);
}

.philosophy-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.38fr minmax(0, 1fr) 0.56fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fffdf8, #f8f1e4 58%, #efe4cf);
}

.philosophy-section::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 18%;
  width: 34vw;
  max-width: 480px;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 122, 56, 0.12);
  border-radius: 50%;
  background: transparent;
}

.philosophy-mark {
  color: rgba(126, 88, 38, 0.075);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 196px;
  line-height: 0.8;
}

.philosophy-copy {
  position: relative;
  z-index: 1;
}

.philosophy-copy p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.philosophy-principles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.philosophy-principles span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--green-950);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 26px;
  font-weight: 500;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24));
}

.founder-section {
  background:
    linear-gradient(180deg, #071e19 0%, #102f28 58%, #09241e 100%);
  color: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.founder-film {
  min-height: 520px;
}

.film-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(215, 186, 120, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 31, 26, 0.1), rgba(8, 31, 26, 0.9)),
    linear-gradient(135deg, rgba(217, 191, 130, 0.14), transparent 45%),
    url("assets/jingtuitang-store-60-service-room.jpg") center / cover;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.24);
}

.film-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(215, 186, 120, 0.16);
}

.film-label {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
  transform: translateX(3px);
}

.film-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.film-caption strong {
  display: block;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
}

.film-caption p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.founder-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.96;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.founder-facts div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(215, 186, 120, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028));
}

.founder-facts span {
  color: var(--gold-300);
  font-weight: 800;
}

.founder-facts p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.public-good-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  background:
    linear-gradient(180deg, #fffdf8, #f8f1e4 62%, #f0e5d2);
}

.public-good-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.public-good-grid {
  display: grid;
  gap: 14px;
}

.public-good-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(169, 122, 56, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 250, 242, 0.58));
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.public-good-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 82, 0.58), transparent);
}

.public-good-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 122, 56, 0.3);
  box-shadow: 0 22px 54px rgba(9, 44, 36, 0.1);
}

.public-good-grid span {
  color: var(--gold-700);
  font-weight: 800;
}

.public-good-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.store-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 154, 82, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f7f1e6 68%, #efe4cf);
}

.store-section::before {
  content: "";
  position: absolute;
  inset: 28px clamp(20px, 6vw, 88px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 122, 56, 0.34), transparent);
}

.store-copy,
.store-gallery {
  position: relative;
  z-index: 1;
}

.store-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.store-gallery {
  display: grid;
  gap: 18px;
}

.store-image-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 122, 56, 0.22);
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: 0 28px 80px rgba(9, 44, 36, 0.14);
}

.store-image-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.format-main img {
  aspect-ratio: 16 / 10;
}

.store-image-main figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(8, 31, 26, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.store-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.format-card {
  position: relative;
  overflow: hidden;
  min-height: 242px;
  padding: 24px;
  border: 1px solid rgba(169, 122, 56, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 250, 242, 0.58));
  box-shadow: 0 14px 34px rgba(9, 44, 36, 0.055);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 82, 0.5), transparent);
}

.format-card:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 122, 56, 0.28);
  box-shadow: 0 20px 48px rgba(9, 44, 36, 0.09);
}

.format-card.is-flagship {
  background:
    linear-gradient(135deg, rgba(16, 49, 41, 0.96), rgba(8, 31, 26, 0.94)),
    linear-gradient(180deg, rgba(197, 154, 82, 0.16), transparent);
  color: var(--white);
  border-color: rgba(215, 186, 120, 0.22);
  box-shadow: 0 20px 48px rgba(9, 44, 36, 0.14);
}

.format-card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--gold-700);
  font-size: 13px;
  font-weight: 800;
}

.format-card.is-flagship span {
  color: var(--gold-300);
}

.format-card h3 {
  margin-top: 18px;
  color: var(--green-950);
  font-size: 25px;
}

.format-card.is-flagship h3 {
  color: #fff9ec;
}

.format-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.format-card.is-flagship p {
  color: rgba(255, 255, 255, 0.7);
}

.format-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.format-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(169, 122, 56, 0.18);
  border-radius: 999px;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.44);
}

.format-card.is-flagship .format-meta b {
  border-color: rgba(215, 186, 120, 0.22);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.space-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.space-thumbs figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 122, 56, 0.16);
  border-radius: 8px;
  background: var(--green-950);
}

.space-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.space-thumbs figure:hover img {
  transform: scale(1.035);
}

.space-thumbs figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(215, 186, 120, 0.16);
  border-radius: 6px;
  background: rgba(8, 31, 26, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.flagship-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(215, 186, 120, 0.14), transparent 28%),
    linear-gradient(135deg, #061a16 0%, #0c2b24 52%, #061a16 100%);
}

.flagship-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(215, 186, 120, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 186, 120, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
}

.flagship-section .section-title {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.flagship-section .section-title p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.7);
}

.flagship-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flagship-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 186, 120, 0.18);
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.flagship-card-large {
  grid-column: span 2;
}

.flagship-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.flagship-card-large img {
  aspect-ratio: 16 / 9;
}

.flagship-card:hover img {
  transform: scale(1.025);
}

.flagship-card::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 22, 18, 0.92));
}

.flagship-card figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
}

.flagship-card figcaption span {
  display: block;
  color: #fff9ec;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.flagship-card figcaption p {
  max-width: 520px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.digital-section {
  color: var(--white);
  background:
    linear-gradient(135deg, #061a16 0%, #0d3028 54%, #12362d 100%);
  overflow: hidden;
}

.digital-head {
  max-width: 1050px;
  margin-bottom: 42px;
}

.digital-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.95;
}

.digital-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.digital-console {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid rgba(215, 186, 120, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.036)),
    linear-gradient(135deg, rgba(215, 186, 120, 0.105), transparent);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.console-top span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.console-top strong {
  color: var(--gold-200);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 86px;
  line-height: 0.9;
}

.console-chart {
  height: 220px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(215, 186, 120, 0.13);
  background:
    linear-gradient(rgba(215, 186, 120, 0.07) 1px, transparent 1px),
    rgba(6, 26, 22, 0.24);
  background-size: 100% 32px;
}

.console-chart i {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500), var(--green-700));
  box-shadow: 0 0 18px rgba(215, 186, 120, 0.16);
}

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

.console-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(215, 186, 120, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.05);
}

.console-list b {
  color: rgba(255, 255, 255, 0.88);
}

.console-list span {
  color: rgba(255, 255, 255, 0.62);
}

.digital-benefits {
  display: grid;
  gap: 14px;
}

.digital-benefits article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(215, 186, 120, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.digital-benefits article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 186, 120, 0.52), transparent);
}

.digital-benefits article:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 186, 120, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
}

.digital-benefits span {
  color: var(--gold-300);
  font-weight: 800;
}

.digital-benefits p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.digital-difference {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(215, 186, 120, 0.14);
  background: rgba(215, 186, 120, 0.14);
}

.digital-difference div {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 31, 26, 0.58), rgba(8, 31, 26, 0.46));
}

.digital-difference b {
  color: var(--gold-300);
}

.digital-difference span {
  display: block;
  margin-top: 28px;
  color: #fff9ec;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 24px;
  font-weight: 700;
}

.digital-difference p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: start;
}

.section-title {
  max-width: 860px;
}

.section-title h2 + p,
.proof-copy p,
.contact-box p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.92;
}

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

.pain-list article,
.model-card,
.identity-card,
.support-item,
.proof-stat,
.contact-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 122, 56, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 250, 242, 0.68));
  box-shadow: var(--shadow);
}

.pain-list article::before,
.identity-card::before,
.support-item::before,
.contact-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 154, 82, 0.56), transparent);
}

.pain-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pain-list article:hover,
.identity-card:hover,
.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 122, 56, 0.3);
  box-shadow: 0 28px 78px rgba(9, 44, 36, 0.13);
}

.pain-list article p {
  grid-column: 2;
}

.pain-list span,
.model-index,
.support-item b,
.join-steps b {
  color: var(--gold-700);
  font-weight: 800;
}

.pain-list p,
.model-card p,
.identity-card p,
.support-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.84;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, #061a16 0%, #112f28 100%);
}

.section-orbit {
  position: absolute;
  right: -12vw;
  top: 8%;
  width: min(48vw, 660px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 186, 120, 0.16);
  border-radius: 50%;
}

.section-orbit::before,
.section-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(126, 214, 204, 0.12);
  border-radius: 50%;
}

.dark-section .section-title {
  margin-bottom: 46px;
}

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

.model-card {
  min-height: 268px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(215, 186, 120, 0.07), transparent);
  box-shadow: none;
  border-color: rgba(215, 186, 120, 0.15);
  backdrop-filter: blur(10px);
}

.model-card::before,
.proof-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 186, 120, 0.5), transparent);
}

.model-card h3 {
  margin-top: 44px;
}

.model-card p {
  color: rgba(255, 255, 255, 0.68);
}

.identity-section {
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.88), rgba(251, 250, 244, 0.28));
}

.identity-section .section-title {
  margin-bottom: 44px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.identity-card {
  min-height: 268px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.identity-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(169, 122, 56, 0.1);
  border-radius: 50%;
}

.identity-card span {
  color: var(--gold-700);
  font-weight: 800;
}

.identity-card h3 {
  margin-top: 42px;
}

.support-section {
  background:
    linear-gradient(180deg, var(--paper), #f4ead8);
}

.support-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
  gap: 60px;
  margin-bottom: 42px;
}

.support-console {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.7fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
  padding: 22px 26px;
  border: 1px solid rgba(215, 186, 120, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 31, 26, 0.95), rgba(21, 72, 58, 0.9)),
    linear-gradient(90deg, transparent, rgba(215, 186, 120, 0.1));
  color: var(--white);
  box-shadow: 0 24px 64px rgba(9, 44, 36, 0.15);
}

.support-console span {
  color: var(--gold-300);
  font-weight: 800;
}

.support-console strong {
  font-size: 26px;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  line-height: 1.25;
}

.support-console p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(169, 122, 56, 0.16);
  border-left: 1px solid rgba(169, 122, 56, 0.16);
}

.support-item {
  min-height: 218px;
  padding: 26px;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(252, 250, 242, 0.24));
}

.support-item h3 {
  margin-top: 28px;
}

.proof-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 22, 0.97), rgba(16, 49, 41, 0.86)),
    url("assets/jingtuitang-store-60-integrated.jpg") center / cover;
}

.proof-section::after {
  content: "始于1968";
  position: absolute;
  right: 5vw;
  bottom: -1.2rem;
  color: rgba(215, 186, 120, 0.06);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 136px;
  white-space: nowrap;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.proof-stats {
  display: grid;
  gap: 14px;
}

.proof-stat {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.035));
  border-color: rgba(215, 186, 120, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.proof-stat strong {
  display: block;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.proof-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.join-section {
  background:
    linear-gradient(180deg, var(--paper-2), #efe4cf);
}

.join-section .section-title {
  margin-bottom: 42px;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 34px;
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 12px;
}

.fit-list span {
  padding: 15px 20px;
  border: 1px solid rgba(169, 122, 56, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(252, 250, 242, 0.52));
  color: var(--green-950);
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fit-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 122, 56, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 250, 242, 0.64));
}

.join-steps {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(169, 122, 56, 0.18);
  background: rgba(169, 122, 56, 0.18);
}

.join-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 22px;
  background: rgba(252, 250, 242, 0.82);
}

.join-steps p {
  margin: 0;
  font-weight: 600;
}

.faq-section {
  background: var(--paper);
}

.faq-section .section-title {
  margin-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
}

.faq-item {
  border: 1px solid rgba(169, 122, 56, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(252, 250, 242, 0.68));
  box-shadow: 0 16px 42px rgba(18, 60, 49, 0.065);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(169, 122, 56, 0.28);
  box-shadow: 0 20px 48px rgba(18, 60, 49, 0.08);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--green-950);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--paper), #f2e8d6);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: clamp(30px, 6vw, 80px);
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 228, 0.82)),
    linear-gradient(120deg, rgba(197, 154, 82, 0.12), transparent 44%);
}

.contact-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
  background: rgba(197, 154, 82, 0.08);
  color: var(--green-900);
  font-weight: 600;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(169, 122, 56, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 0;
  border-color: rgba(197, 154, 82, 0.5);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 3px rgba(197, 154, 82, 0.12);
}

.contact-form .button {
  width: 100%;
  border-radius: 4px;
  grid-column: 1 / -1;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 15, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(197, 154, 82, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(197, 154, 82, 0.11), transparent 46%),
    linear-gradient(180deg, #fbfaf4, #f1e6d2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.modal-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: var(--green-950);
  font-size: 24px;
  cursor: pointer;
}

.modal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.modal-points span {
  padding: 10px 12px;
  border: 1px solid rgba(181, 138, 69, 0.24);
  background: rgba(181, 138, 69, 0.08);
  color: var(--green-900);
  font-weight: 700;
  font-size: 13px;
}

.mobile-sticky-cta {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 88px);
  background:
    linear-gradient(90deg, #061a16, var(--green-950));
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
}

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

@media (max-width: 1100px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-grid,
  .split,
  .philosophy-section,
  .founder-layout,
  .public-good-section,
  .store-section,
  .digital-layout,
  .proof-section,
  .join-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .philosophy-mark {
    position: absolute;
    left: 18px;
    top: 34px;
    font-size: 132px;
  }

  .philosophy-copy,
  .philosophy-principles {
    position: relative;
    z-index: 1;
  }

  .philosophy-principles {
    width: min(560px, 100%);
  }

  .support-console {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-facts {
    grid-template-columns: 1fr;
  }

  .store-format-grid {
    grid-template-columns: 1fr;
  }

  .space-thumbs,
  .flagship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flagship-card-large {
    grid-column: 1 / -1;
  }

  .digital-console {
    position: relative;
    top: auto;
  }

  .digital-difference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    justify-self: stretch;
    width: auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(169, 122, 56, 0.18);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(252, 250, 242, 0.98), rgba(239, 228, 207, 0.96));
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav a {
    padding: 12px;
  }

  .site-header.is-open .nav-cta {
    position: absolute;
    top: calc(100% + 424px);
    left: 32px;
    right: 32px;
    display: flex;
    color: var(--white);
    background: var(--green-700);
  }

  .identity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .brand {
    width: 156px;
    height: 52px;
    padding: 0;
  }

  .site-header {
    padding: 10px 18px;
  }

  .hero {
    min-height: auto;
    padding: 96px 20px 0;
  }

  .hero-grid {
    gap: 26px;
    padding-bottom: 32px;
  }

  .hero-actions,
  .hero-flow,
  .identity-strip,
  .trust-bar,
  .model-grid,
  .support-grid,
  .store-format-grid,
  .space-thumbs,
  .flagship-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-lead span {
    display: block;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-proof div {
    min-height: 68px;
    padding: 12px 14px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 12px;
    line-height: 1.4;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    padding: 10px;
  }

  .hero-photo img {
    aspect-ratio: 16 / 9;
  }

  .hero-dashboard {
    padding: 16px;
  }

  .visual-top {
    grid-template-columns: 1fr;
  }

  .visual-top strong {
    grid-row: auto;
    margin: 8px 0 4px;
  }

  .hero-flow div {
    min-height: 48px;
  }

  .trust-bar {
    width: calc(100% - 40px);
  }

  .section {
    padding: 70px 20px;
  }

  .philosophy-section {
    gap: 28px;
  }

  .philosophy-copy p:last-child {
    font-size: 15px;
  }

  .philosophy-principles span {
    min-height: 72px;
    font-size: 24px;
  }

  .founder-film,
  .film-frame {
    min-height: 360px;
  }

  .film-caption strong {
    font-size: 34px;
  }

  .founder-copy p:not(.eyebrow),
  .public-good-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .public-good-section {
    gap: 30px;
  }

  .store-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .store-image-main figcaption {
    position: static;
    display: block;
    background: rgba(8, 31, 26, 0.92);
  }

  .format-card {
    min-height: auto;
    padding: 20px;
  }

  .format-card h3 {
    font-size: 22px;
  }

  .space-thumbs figcaption,
  .flagship-card figcaption {
    position: static;
    display: block;
    border: 0;
    border-top: 1px solid rgba(215, 186, 120, 0.14);
    background: rgba(8, 31, 26, 0.94);
  }

  .flagship-card::after {
    display: none;
  }

  .flagship-card-large {
    grid-column: auto;
  }

  .support-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .digital-difference {
    grid-template-columns: 1fr;
  }

  .console-top strong {
    font-size: 68px;
  }

  .support-console {
    padding: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .pain-list article {
    grid-template-columns: 1fr;
  }

  .pain-list article p {
    grid-column: auto;
  }

  .model-card,
  .identity-card,
  .support-item {
    min-height: auto;
  }

  .model-card h3,
  .identity-card h3,
  .support-item h3 {
    margin-top: 30px;
  }

  .join-steps div {
    grid-template-columns: 42px 1fr;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(217, 191, 130, 0.22);
    border-radius: 8px;
    background: rgba(8, 31, 26, 0.88);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-sticky-cta a:first-child {
    background: linear-gradient(135deg, #1f7653, #0f4d3d);
  }

  .mobile-sticky-cta a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
}
