:root {
  --ink: #102119;
  --ink-soft: #435049;
  --muted: #6d7871;
  --paper: #f3f6f2;
  --paper-deep: #e8eee9;
  --white: #fff;
  --line: rgba(16, 33, 25, .13);
  --green: #26b85a;
  --green-bright: #42d574;
  --green-deep: #0d492c;
  --green-black: #092319;
  --lime: #c5f86c;
  --danger: #e96e58;
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 24px 80px rgba(15, 46, 30, .11);
  --shadow-window: 0 42px 100px rgba(9, 36, 23, .21);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body { margin: 0; overflow-x: hidden; background: var(--paper); }

body.menu-open { overflow: hidden; }

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

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

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

button { color: inherit; }

::selection { color: var(--green-black); background: var(--lime); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-black);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(243, 246, 242, .9);
  box-shadow: 0 10px 40px rgba(18, 45, 31, .05);
  backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1380px);
  height: 78px;
  margin-inline: auto;
}

.brand { display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.brand-mark { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 9px; object-fit: contain; }

.brand-company { font-size: 1.14rem; font-weight: 800; letter-spacing: -.035em; }
.brand-company sup { position: relative; top: -.55em; font-size: .38em; }
.brand-product { color: var(--green); font-size: 1.17rem; font-weight: 760; letter-spacing: -.035em; }

.desktop-nav { display: flex; align-items: center; gap: 30px; }

.desktop-nav a,
.text-link {
  position: relative;
  color: var(--ink-soft);
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease-out);
}

.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-current, .text-link:hover { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.is-current::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s var(--ease-out), color .2s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(38, 184, 90, .28); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 0 17px; font-size: .82rem; }
.button-large { min-height: 58px; padding: 0 28px; }
.button-primary { color: var(--white); background: var(--green-deep); box-shadow: 0 10px 28px rgba(13, 73, 44, .18); }
.button-primary:hover { background: #10633a; box-shadow: 0 16px 34px rgba(13, 73, 44, .23); }
.button-quiet { border-color: var(--line); background: rgba(255, 255, 255, .55); }
.button-quiet:hover { border-color: rgba(16, 33, 25, .25); background: var(--white); }

.menu-trigger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .66);
  cursor: pointer;
}

.menu-trigger > span:not(.sr-only) { display: block; width: 100%; height: 1.5px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-trigger[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-trigger[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
  min-height: 850px;
  padding-top: 118px;
  padding-bottom: 90px;
}

.home-page::before {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: 0;
  width: 72vw;
  height: 760px;
  content: "";
  background: radial-gradient(circle at center, rgba(115, 236, 146, .22), rgba(115, 236, 146, 0) 67%);
  pointer-events: none;
}

.eyebrow,
.section-number {
  margin: 0 0 22px;
  color: var(--green-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span { padding-inline: 5px; color: var(--green); }

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.5rem, 3.7vw, 3.5rem);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -.045em;
}

.hero h1 em { color: var(--green-deep); font-style: normal; }

.hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.85;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 23px; padding: 0; margin: 34px 0 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .78rem; font-weight: 650; }
.hero-points li span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(38, 184, 90, .1); }

.hero-visual { position: relative; min-width: 0; perspective: 1200px; }

.hero-product-render {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 25, .1);
  border-radius: 30px;
  background: #f4f8f4;
  box-shadow: 0 45px 110px rgba(14, 56, 34, .18);
  transform: rotateY(-2.5deg) rotateX(1deg);
  transform-origin: left center;
}

.hero-product-render img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.hero-product-render figcaption { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 13px 16px; color: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(7,36,23,.82); box-shadow: 0 18px 45px rgba(9,35,25,.22); backdrop-filter: blur(14px); }
.hero-product-render figcaption span { color: var(--lime); font-size: .61rem; font-weight: 800; letter-spacing: .08em; }
.hero-product-render figcaption strong { max-width: 330px; color: var(--white); font-size: .7rem; line-height: 1.55; text-align: right; }

.statement {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding-top: 105px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}

.statement > p { max-width: 930px; margin: 0; color: #859087; font-size: clamp(1.65rem, 2.8vw, 2.7rem); font-weight: 620; line-height: 1.38; letter-spacing: -.03em; }
.statement strong { color: var(--ink); font-weight: 720; }
.statement-index { display: flex; align-items: center; gap: 10px; padding-bottom: 9px; color: var(--muted); font-size: .65rem; font-weight: 750; }
.statement-index i { width: 48px; height: 1px; background: var(--line); }

.product-section { padding: 120px 0 130px; background: #e7ece7; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 10vw, 150px); align-items: end; margin-bottom: 66px; }
.section-heading h2, .workflow-heading h2, .trust-copy h2, .updates-panel h2, .closing h2 { margin: 0; font-size: clamp(1.95rem, 3.3vw, 3.2rem); font-weight: 690; line-height: 1.24; letter-spacing: -.035em; }
.section-heading > p { max-width: 470px; margin: 0 0 6px; color: var(--ink-soft); font-size: .98rem; line-height: 1.85; }

.product-tour { display: grid; grid-template-columns: 255px minmax(0, 1fr); gap: 36px; }
.product-tabs { display: flex; flex-direction: column; border-top: 1px solid rgba(16, 33, 25, .18); }
.product-tab { display: grid; grid-template-columns: 34px 1fr; gap: 0 12px; width: 100%; padding: 24px 4px; text-align: left; border: 0; border-bottom: 1px solid rgba(16, 33, 25, .16); background: transparent; cursor: pointer; transition: padding-left .25s var(--ease-out), color .2s ease; }
.product-tab > span { grid-row: 1 / 3; color: var(--muted); font-size: .63rem; font-weight: 760; letter-spacing: .08em; }
.product-tab strong { font-size: .98rem; font-weight: 720; }
.product-tab small { margin-top: 7px; color: var(--muted); font-size: .72rem; }
.product-tab.is-active { padding-left: 12px; color: var(--green-deep); }
.product-tab.is-active > span { color: var(--green); }

.product-stage { min-width: 0; }
.product-render-frame { overflow: hidden; border: 1px solid rgba(16,33,25,.1); border-radius: 22px; background: #f5f8f5; box-shadow: 0 32px 80px rgba(23,54,37,.16); }
.product-render-frame img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.product-stage img { transition: opacity .18s ease, transform .4s var(--ease-out); }
.product-stage.is-changing img { opacity: .18; transform: scale(.992); }
.product-caption { display: grid; grid-template-columns: 170px .9fr 1.1fr; gap: 28px; align-items: start; padding: 29px 4px 0; }
.product-caption .eyebrow { margin: 6px 0 0; }
.product-caption h3 { margin: 0; font-size: 1.2rem; line-height: 1.4; letter-spacing: -.025em; }
.product-caption > p:last-child { margin: 0; color: var(--ink-soft); font-size: .87rem; line-height: 1.7; }

.capability-section { padding-top: 140px; padding-bottom: 150px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { position: relative; min-height: 335px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .3s ease, background .3s ease, transform .3s var(--ease-out); }
.capability-card:hover { z-index: 2; transform: translateY(-4px); background: var(--white); box-shadow: var(--shadow-soft); }
.capability-card-featured { grid-column: span 2; color: var(--white); background: var(--green-deep); }
.capability-card-featured:hover { color: var(--white); background: #0f5633; }
.capability-card-dark { color: var(--white); background: var(--green-black); }
.capability-card-dark:hover { color: var(--white); background: #0b2d20; }
.card-index { position: absolute; top: 30px; right: 32px; color: var(--muted); font-size: .62rem; font-weight: 800; }
.capability-card-featured .card-index, .capability-card-dark .card-index { color: rgba(255, 255, 255, .5); }
.capability-icon { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 62px; color: var(--green-deep); border: 1px solid rgba(38, 184, 90, .28); border-radius: 50%; }
.capability-icon svg { display: block; width: 23px; height: 23px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.capability-card-featured .capability-icon { color: var(--green-black); border: 0; background: var(--lime); }
.capability-card-dark .capability-icon { color: var(--lime); border-color: rgba(197, 248, 108, .35); }
.capability-card h3 { margin: 0 0 14px; font-size: 1.3rem; line-height: 1.35; letter-spacing: -.025em; }
.capability-card p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.75; }
.capability-card-featured p, .capability-card-dark p { color: rgba(255, 255, 255, .68); }
.capability-card ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 26px 0 0; list-style: none; }
.capability-card li { padding: 7px 10px; color: rgba(255, 255, 255, .72); border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; font-size: .65rem; font-weight: 650; }

.workflow-section { padding: 135px 0 145px; color: var(--white); background: var(--green-black); }
.section-number-light { color: var(--lime); }
.workflow-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; margin-bottom: 104px; }
.workflow-heading h2 { max-width: 900px; }
.workflow-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); padding: 0; margin: 0; list-style: none; }
.workflow-track::before { position: absolute; top: 20px; right: 4%; left: 4%; height: 1px; content: ""; background: linear-gradient(90deg, var(--green), rgba(197, 248, 108, .35)); }
.workflow-track li { position: relative; padding: 59px 16px 0 0; }
.workflow-track li::before { position: absolute; z-index: 1; top: 14px; left: 0; width: 13px; height: 13px; content: ""; border: 3px solid var(--green-black); border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 1px rgba(66, 213, 116, .28); }
.workflow-track span { color: var(--lime); font-size: .6rem; font-weight: 800; }
.workflow-track strong { display: block; margin-top: 18px; font-size: 1rem; }
.workflow-track small { display: block; margin-top: 8px; color: #799083; font-size: .72rem; }

.trust-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; padding-top: 150px; padding-bottom: 150px; }
.trust-copy h2 { margin-bottom: 30px; }
.trust-copy > p:not(.section-number) { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.85; }
.inline-action { display: inline-flex; align-items: center; gap: 22px; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: .85rem; font-weight: 750; }
.inline-action span { color: var(--green); transition: transform .2s ease; }
.inline-action:hover span { transform: translateX(4px); }

.trust-diagram { position: relative; min-height: 520px; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle at center, rgba(38, 184, 90, .12), transparent 47%); }
.trust-diagram::before, .trust-diagram::after { position: absolute; inset: 16%; content: ""; border: 1px dashed rgba(38, 184, 90, .28); border-radius: 50%; }
.trust-diagram::after { inset: 32%; border-style: solid; border-color: rgba(38, 184, 90, .18); }
.trust-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 180px; height: 180px; color: var(--white); border-radius: 50%; background: var(--green-deep); box-shadow: 0 22px 55px rgba(13, 73, 44, .25); transform: translate(-50%, -50%); }
.trust-core span { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 12px; color: var(--green-black); border-radius: 10px; background: var(--lime); font-size: .7rem; font-weight: 900; }
.trust-core strong { font-size: 1.1rem; }
.trust-core small { margin-top: 6px; color: rgba(255, 255, 255, .62); font-size: .64rem; }
.trust-node { position: absolute; z-index: 3; width: 125px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .9); box-shadow: 0 15px 38px rgba(16, 33, 25, .08); backdrop-filter: blur(10px); }
.trust-node i { display: block; width: 7px; height: 7px; margin-bottom: 16px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(38, 184, 90, .1); }
.trust-node strong { display: block; font-size: .84rem; }
.trust-node small { display: block; margin-top: 5px; color: var(--muted); font-size: .65rem; }
.trust-node-a { top: 4%; left: 23%; }
.trust-node-b { top: 38%; right: -2%; }
.trust-node-c { bottom: 3%; left: 20%; }

.services-section { padding-top: 140px; padding-bottom: 150px; border-top: 1px solid var(--line); }
.service-list { border-top: 1px solid var(--line); }
.service-list article { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 28px; min-height: 150px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease-out), background .3s ease; }
.service-list article:hover { padding-inline: 20px; background: rgba(255, 255, 255, .6); }
.service-list article > span { color: var(--green); font-size: .65rem; font-weight: 800; }
.service-list p { margin: 0 0 8px; color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.service-list h3 { margin: 0; font-size: clamp(1.2rem, 1.7vw, 1.6rem); line-height: 1.35; letter-spacing: -.025em; }
.service-list small { display: block; margin-top: 10px; color: var(--muted); font-size: .75rem; }
.service-list article > a { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; transition: color .2s ease, background .2s ease, transform .25s var(--ease-out); }
.service-list article > a:hover { color: var(--white); background: var(--green-deep); transform: rotate(8deg); }
.section-more { display: inline-flex; align-items: center; gap: 18px; margin-top: 28px; padding-bottom: 7px; color: var(--green-deep); border-bottom: 1px solid var(--green-deep); font-size: .74rem; font-weight: 750; }
.section-more span { color: var(--green); transition: transform .2s ease; }
.section-more:hover span { transform: translateX(4px); }

.updates-section { padding-bottom: 145px; }
.updates-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; padding: clamp(50px, 7vw, 90px); color: var(--white); border-radius: var(--radius-lg); background: var(--green-deep); box-shadow: 0 40px 90px rgba(13, 73, 44, .18); }
.updates-panel h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.updates-copy p { margin: 0 0 28px; color: rgba(255, 255, 255, .68); line-height: 1.8; }
.updates-copy ol { padding: 0; margin: 0; list-style: none; }
.updates-copy li { border-top: 1px solid rgba(255,255,255,.14); }
.updates-copy li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.updates-copy li a { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; }
.updates-copy li span { color: var(--lime); font-size: .58rem; font-weight: 800; }
.updates-copy li strong { color: var(--white); font-size: .75rem; line-height: 1.5; }
.updates-copy li time { color: rgba(255,255,255,.45); font-size: .58rem; }
.updates-all { display: inline-flex; gap: 14px; margin-top: 25px; color: var(--white); font-size: .7rem; font-weight: 750; }
.updates-all span { color: var(--lime); transition: transform .2s ease; }
.updates-all:hover span { transform: translateX(4px); }

.closing { display: flex; align-items: end; justify-content: space-between; gap: 60px; padding-top: 35px; padding-bottom: 135px; }
.closing h2 { max-width: 850px; font-size: clamp(1.95rem, 3.4vw, 3.3rem); }
.closing > div > p:last-child { max-width: 650px; margin: 25px 0 0; color: var(--ink-soft); line-height: 1.8; }
.closing .button { flex: 0 0 auto; }

.site-footer { color: #d7e1da; background: #071a12; }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding: 85px 0 75px; }
.brand-footer { color: var(--white); }
.footer-main > div:first-child > p { max-width: 430px; margin: 26px 0 0; color: #7f9688; font-size: .9rem; line-height: 1.8; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links strong { margin-bottom: 8px; color: var(--white); font-size: .78rem; }
.footer-links a { color: #809488; font-size: .76rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--lime); transform: translateX(3px); }
.footer-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding: 24px 0; color: #60776a; border-top: 1px solid rgba(255, 255, 255, .09); font-size: .66rem; letter-spacing: .025em; }
.footer-company { display: flex; flex-direction: column; gap: 7px; line-height: 1.6; }
.footer-company address { color: #536a5d; font-style: normal; }
.footer-compliance { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }
.footer-compliance a { color: #60776a; white-space: nowrap; transition: color .2s ease; }
.footer-compliance a:hover { color: var(--lime); }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.inner-page main { padding-top: 78px; }

.page-hero {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(55px, 9vw, 140px);
  align-items: end;
  padding-top: 70px;
  padding-bottom: 70px;
}

.page-hero-compact { min-height: 0; }
.page-hero h1, .detail-hero h1, .article-shell h1, .contact-intro h1 { margin: 0; font-size: clamp(2.5rem, 4.4vw, 4rem); font-weight: 730; line-height: 1.2; letter-spacing: -.04em; }
.page-hero h1 em { color: var(--green-deep); font-style: normal; }
.page-hero-aside { max-width: 470px; padding-bottom: 9px; }
.page-hero-aside > p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.9; }

.product-cover { width: min(calc(100% - 48px), 1120px); padding-bottom: 130px; }
.product-cover-render { margin: 0; overflow: hidden; border: 1px solid rgba(16,33,25,.1); border-radius: 30px; background: var(--white); box-shadow: 0 45px 100px rgba(9,35,25,.14); }
.product-cover-render > img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.product-cover-render figcaption { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 24px 28px; border-top: 1px solid var(--line); }
.product-cover-render figcaption span { color: var(--green); font-size: .62rem; font-weight: 800; }
.product-cover-render figcaption p { max-width: 760px; margin: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.75; }
.product-cover-render figcaption strong { margin-right: 12px; color: var(--ink); }

.product-principle { padding-top: 120px; padding-bottom: 140px; border-top: 1px solid var(--line); }
.principle-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(65px, 10vw, 155px); }
.principle-grid h2, .detail-intro h2 { margin: 0; font-size: clamp(1.9rem, 3.1vw, 2.9rem); font-weight: 680; line-height: 1.28; letter-spacing: -.03em; }
.principle-grid > div p { margin: 0 0 22px; color: var(--ink-soft); font-size: 1rem; line-height: 1.9; }

.product-layers { padding: 130px 0 140px; background: var(--paper-deep); }
.layer-list { border-top: 1px solid var(--line); }
.layer-list article { display: grid; grid-template-columns: 60px .9fr 1.1fr; gap: 30px; align-items: start; padding: 36px 4px; border-bottom: 1px solid var(--line); }
.layer-list article > span { color: var(--green); font-size: .64rem; font-weight: 800; }
.layer-list article div p { margin: 0 0 8px; color: var(--muted); font-size: .6rem; font-weight: 800; letter-spacing: .13em; }
.layer-list article h3 { margin: 0; font-size: 1.3rem; line-height: 1.35; letter-spacing: -.025em; }
.layer-list article > p { max-width: 540px; margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.75; }

.product-scenes { padding-top: 140px; padding-bottom: 150px; }
.scene-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.scene-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.scene-grid article img { width: 100%; transition: transform .65s var(--ease-out); }
.scene-grid article:hover img { transform: scale(1.02); }
.scene-grid article div { padding: 28px; }
.scene-grid article span { color: var(--green-deep); font-size: .66rem; font-weight: 800; letter-spacing: .08em; }
.scene-grid article h3 { margin: 10px 0 0; font-size: 1.2rem; line-height: 1.4; letter-spacing: -.025em; }

.page-cta { display: flex; align-items: end; justify-content: space-between; gap: 65px; padding-top: 95px; padding-bottom: 120px; border-top: 1px solid var(--line); }
.page-cta h2 { max-width: 850px; margin: 0; font-size: clamp(1.9rem, 3.1vw, 2.9rem); line-height: 1.26; letter-spacing: -.03em; }
.page-cta .button { flex: 0 0 auto; }

.service-promises { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.service-promises span { padding: 8px 11px; color: var(--green-deep); border: 1px solid rgba(13,73,44,.15); border-radius: 999px; background: rgba(255,255,255,.45); font-size: .64rem; font-weight: 750; }
.catalog-section { padding-bottom: 90px; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.catalog-card { position: relative; display: flex; flex-direction: column; min-height: 630px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.7); box-shadow: 0 18px 55px rgba(15,46,30,.06); transition: border-color .3s ease, background .3s ease, transform .3s var(--ease-out), box-shadow .3s ease; }
.catalog-card:hover { z-index: 2; border-color: rgba(38,184,90,.35); background: var(--white); box-shadow: 0 32px 80px rgba(13,73,44,.14); transform: translateY(-7px); }
.catalog-card-primary { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); grid-template-rows: auto 1fr auto; gap: 0 45px; min-height: 510px; padding: 38px; color: var(--white); border-color: transparent; background: var(--green-black); box-shadow: 0 32px 90px rgba(9,35,25,.2); }
.catalog-card-primary:hover { border-color: transparent; background: #0b2d20; box-shadow: 0 40px 100px rgba(9,35,25,.25); }
.catalog-card-primary::before { position: absolute; top: 0; right: 38px; left: 38px; height: 3px; content: ""; border-radius: 0 0 4px 4px; background: var(--lime); }
.catalog-card-top, .catalog-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.catalog-card-primary .catalog-card-top { grid-column: 1 / -1; }
.catalog-card-top span { padding: 7px 10px; color: var(--green-deep); border-radius: 999px; background: rgba(38,184,90,.1); font-size: .62rem; font-weight: 800; }
.catalog-card-top small { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .62rem; }
.catalog-card-primary .catalog-card-top span { color: var(--green-black); background: var(--lime); }
.catalog-card-primary .catalog-card-top small { color: rgba(255,255,255,.46); }
.catalog-product-visual { position: relative; height: 110px; margin: 24px 0 20px; overflow: hidden; border-radius: 14px; background: linear-gradient(135deg, var(--green-black), var(--green-deep)); }
.catalog-card-primary .catalog-product-visual { grid-column: 2; grid-row: 2 / 4; height: auto; min-height: 340px; margin: 30px 0 0; border: 1px solid rgba(197,248,108,.18); background: radial-gradient(circle at 50% 45%, rgba(66,213,116,.18), transparent 58%), #071d15; }
.catalog-product-visual > span { position: absolute; top: 14px; left: 16px; color: var(--lime); font: 800 .62rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.catalog-product-visual svg { position: absolute; right: 14px; bottom: 10px; width: 76%; fill: none; stroke: rgba(197,248,108,.68); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.catalog-product-visual .server-visual { top: 50%; right: 50%; bottom: auto; width: 72%; max-width: 360px; transform: translate(50%,-50%); }
.catalog-product-visual .server-visual rect { fill: rgba(255,255,255,.025); }
.catalog-product-visual circle { fill: var(--lime); stroke: var(--green-deep); stroke-width: 3; }
.catalog-card h2 { margin: 0; font-size: clamp(1.4rem, 2vw, 1.82rem); line-height: 1.25; letter-spacing: -.035em; }
.catalog-card-primary .catalog-card-copy { grid-column: 1; grid-row: 2; padding-top: 45px; }
.catalog-card-primary h2 { max-width: 610px; font-size: clamp(2rem,3vw,3rem); }
.catalog-provider { margin: 0 0 12px !important; color: var(--green) !important; font-size: .66rem !important; font-weight: 800; letter-spacing: .08em; }
.catalog-card-primary .catalog-provider { color: var(--lime) !important; }
.catalog-card-copy > p { min-height: 72px; margin: 15px 0 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.75; }
.catalog-card-primary .catalog-card-copy > p:not(.catalog-provider) { max-width: 630px; min-height: 0; color: rgba(255,255,255,.68); font-size: .9rem; }
.catalog-card-copy ul { display: grid; gap: 8px; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.catalog-card-primary .catalog-card-copy ul { grid-template-columns: repeat(3,1fr); gap: 16px; border-top-color: rgba(255,255,255,.12); }
.catalog-card-copy li { position: relative; padding-left: 16px; color: var(--ink-soft); font-size: .72rem; line-height: 1.55; }
.catalog-card-primary .catalog-card-copy li { color: rgba(255,255,255,.7); }
.catalog-card-copy li::before { position: absolute; top: .58em; left: 1px; width: 5px; height: 5px; content: ""; border-radius: 50%; background: var(--green); }
.catalog-offer { display: flex; align-items: end; justify-content: space-between; gap: 14px; padding-top: 25px; margin-top: auto; }
.catalog-card-primary .catalog-offer { grid-column: 1; grid-row: 3; align-self: end; padding-top: 28px; }
.catalog-offer > div > small { display: block; margin-bottom: 5px; color: var(--muted); font-size: .6rem; }
.catalog-card-primary .catalog-offer > div > small, .catalog-card-primary .catalog-offer p { color: rgba(255,255,255,.5); }
.catalog-offer strong { display: block; font-size: 1.68rem; line-height: 1; letter-spacing: -.045em; }
.catalog-card-primary .catalog-offer strong { color: var(--lime); font-size: 2.25rem; }
.catalog-offer strong span, .catalog-offer strong em { font-size: .78rem; font-style: normal; letter-spacing: 0; }
.catalog-offer p { margin: 8px 0 0; color: var(--muted); font-size: .62rem; }
.catalog-view { display: inline-flex; align-items: center; gap: 8px; padding: 11px 13px; color: var(--white); border-radius: 999px; background: var(--green-deep); font-size: .68rem; font-weight: 750; white-space: nowrap; }
.catalog-card-primary .catalog-view { color: var(--green-black); background: var(--lime); }
.catalog-card-primary .catalog-view span { color: var(--green-black); }
.catalog-view span { color: var(--lime); transition: transform .2s ease; }
.catalog-view:hover span { transform: translateX(3px); }

.empty-state { display: flex; flex-direction: column; align-items: flex-start; min-height: 420px; padding: 75px; border: 1px solid var(--line); background: rgba(255, 255, 255, .4); }
.empty-state > span { color: var(--green); font-size: .65rem; font-weight: 850; letter-spacing: .14em; }
.empty-state h2 { max-width: 750px; margin: auto 0 18px; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.2; letter-spacing: -.035em; }
.empty-state p { max-width: 570px; margin: 0; color: var(--ink-soft); line-height: 1.8; }
.empty-state .button { margin-top: 28px; }

.detail-hero { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(70px, 10vw, 150px); align-items: end; min-height: 720px; padding-top: 130px; padding-bottom: 100px; }
.back-link { display: inline-block; margin-bottom: 55px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.detail-hero .eyebrow { margin-bottom: 18px; }
.detail-hero h1 { max-width: 820px; font-size: clamp(2.4rem, 4vw, 3.6rem); }
.detail-lead { max-width: 720px; margin: 30px 0 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.85; }
.purchase-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.purchase-card > p { margin: 0; color: var(--muted); font-size: .68rem; font-weight: 780; }
.purchase-card > strong { display: block; margin-top: 15px; color: var(--green-deep); font-size: 1.65rem; line-height: 1.25; letter-spacing: -.03em; }
.purchase-card > span { display: block; margin-top: 18px; color: var(--ink-soft); font-size: .8rem; line-height: 1.7; }
.purchase-card .button { width: 100%; margin-top: 28px; }
.purchase-consult { display: block; margin-top: 17px; color: var(--green-deep); text-align: center; font-size: .7rem; font-weight: 700; }

.detail-body { padding-top: 120px; padding-bottom: 135px; border-top: 1px solid var(--line); }
.detail-intro { display: grid; grid-template-columns: 180px 1fr; gap: 55px; margin-bottom: 110px; }
.detail-intro h2 { max-width: 930px; }
.detail-columns { display: grid; grid-template-columns: .75fr 1fr 1fr; gap: 55px; }
.detail-columns section { padding-top: 24px; border-top: 1px solid var(--line); }
.detail-columns section > p:last-child { color: var(--ink-soft); line-height: 1.85; }
.detail-columns ol { padding: 0; margin: 0; list-style: none; }
.detail-columns li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
.detail-columns li span { color: var(--green); font-size: .6rem; font-weight: 800; }
.service-pricing { padding-bottom: 130px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pricing-grid article { min-height: 360px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.6); }
.pricing-grid article > div > span { color: var(--green); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.pricing-grid h3 { margin: 12px 0 35px; font-size: 1.2rem; line-height: 1.4; letter-spacing: -.025em; }
.pricing-grid article > strong { display: block; font-size: 1.7rem; letter-spacing: -.04em; }
.pricing-grid article > p { margin: 9px 0 40px; color: var(--muted); font-size: .7rem; }
.pricing-grid article > small { display: block; min-height: 44px; margin: -27px 0 24px; color: var(--ink-soft); font-size: .64rem; line-height: 1.6; }
.pricing-grid article > a { color: var(--green-deep); font-size: .7rem; font-weight: 750; }
.variant-specs { min-height: 142px; margin: -24px 0 24px; }
.variant-specs > div { display: grid; grid-template-columns: 62px 1fr; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); }
.variant-specs dt { color: var(--muted); font-size: .6rem; }
.variant-specs dd { margin: 0; color: var(--ink-soft); font-size: .64rem; line-height: 1.5; }

.checkout-shell { padding-top: 145px; padding-bottom: 140px; }
.checkout-heading { max-width: 900px; margin-bottom: 75px; }
.checkout-heading h1 { max-width: 800px; margin: 15px 0 22px; font-size: clamp(2.3rem,3.8vw,3.4rem); line-height: 1.2; letter-spacing: -.035em; }
.checkout-heading > p:last-child { color: var(--ink-soft); }
.checkout-grid { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: 70px; align-items: start; }
.checkout-form > section { padding: 36px 0; border-top: 1px solid var(--line); }
.checkout-step { display: grid; grid-template-columns: 45px 1fr; gap: 20px; margin-bottom: 28px; }
.checkout-step > span { color: var(--green); font-size: .66rem; font-weight: 800; }
.checkout-step h2 { margin: 0; font-size: 1.15rem; line-height: 1.4; }
.checkout-step p { margin: 8px 0 0; color: var(--muted); font-size: .7rem; }
.checkout-form .field { margin-bottom: 20px; }
.checkout-form .field label { display: block; margin-bottom: 8px; font-size: .68rem; font-weight: 700; }
.checkout-form .field label em { margin-left: 6px; color: var(--green); font-size: .55rem; font-style: normal; }
.checkout-form .field input, .checkout-form .field select, .checkout-form .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.75); font: inherit; font-size: .8rem; outline: 0; }
.checkout-form .field input:focus, .checkout-form .field select:focus, .checkout-form .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(39,170,84,.09); }
.checkout-form .field small, .form-error { display: block; margin-top: 6px; color: #a83232; font-size: .63rem; }
.checkout-safety { max-width: 580px; color: var(--muted); font-size: .63rem; line-height: 1.7; }
.checkout-summary { position: sticky; top: 115px; padding: 32px; color: #e4eee8; border-radius: var(--radius-lg); background: var(--green-deep); }
.checkout-summary > p { margin: 0 0 12px; color: var(--lime); font-size: .59rem; font-weight: 800; letter-spacing: .12em; }
.checkout-summary h2 { margin: 0 0 42px; font-size: 1.45rem; line-height: 1.35; letter-spacing: -.025em; }
.checkout-summary > div { display: flex; justify-content: space-between; gap: 25px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }
.checkout-summary > div span { color: #8ea398; }
.checkout-summary .checkout-total { align-items: end; margin-top: 15px; }
.checkout-summary .checkout-total strong { color: var(--lime); font-size: 1.65rem; letter-spacing: -.04em; }
.checkout-summary > small { display: block; margin-top: 25px; color: #789083; font-size: .6rem; line-height: 1.7; }

.payment-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.payment-amount { padding: 34px; border-bottom: 1px solid var(--line); }
.payment-amount span, .payment-amount small { display: block; color: var(--muted); font-size: .65rem; }
.payment-amount strong { display: block; margin: 13px 0; font-size: 2.7rem; letter-spacing: -.055em; }
.wechat-payment { padding: 42px 34px; }
.wechat-payment > div > span { color: var(--green); font-size: .58rem; font-weight: 850; letter-spacing: .12em; }
.wechat-payment h2 { margin: 10px 0 14px; font-size: 1.25rem; line-height: 1.4; }
.wechat-payment p { max-width: 520px; color: var(--muted); font-size: .75rem; line-height: 1.75; }
.wechat-payment { display: grid; grid-template-columns: 210px 1fr; gap: 40px; align-items: center; }
.wechat-payment img { width: 210px; border: 10px solid #fff; box-shadow: 0 10px 35px rgba(10,33,20,.1); }
.wechat-payment small { color: var(--green-deep); font-size: .65rem; }
.order-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 20px; align-items: start; }
.order-detail-card, .order-status-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.order-detail-card > header { padding: 25px 28px; border-bottom: 1px solid var(--line); }
.order-detail-card header span { color: var(--green); font-size: .58rem; font-weight: 800; }
.order-detail-card h2 { margin: 8px 0 0; font-size: 1.1rem; }
.order-detail-card dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.order-detail-card dl > div { padding: 22px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.order-detail-card dt { color: var(--muted); font-size: .62rem; }
.order-detail-card dd { margin: 8px 0 0; font-size: .75rem; }
.order-configuration { padding: 25px 28px; }
.order-configuration h3 { margin: 0 0 18px; font-size: .8rem; }
.order-configuration p { display: grid; grid-template-columns: 140px 1fr; margin: 0; padding: 12px 0; border-top: 1px solid var(--line); font-size: .7rem; }
.order-configuration p span { color: var(--muted); }
.order-status-card { padding: 30px; }
.order-status-card > p { margin: 40px 0 10px; color: var(--muted); font-size: .65rem; }
.order-status-card > strong, .order-status-card > small { display: block; }
.order-status-card > strong { font-size: 2rem; letter-spacing: -.05em; }
.order-status-card > small { margin-top: 14px; color: var(--muted); font-size: .62rem; }
.order-status-card .button { width: 100%; margin-top: 28px; }
.status-pending_payment { color: #8b5a0a; background: #fff1cf; }
.status-paid, .status-fulfilling, .status-completed { color: #17663a; background: #dcf5e5; }
.status-cancelled, .status-refunded { color: #69736d; background: #e9ecea; }
.status-pending_activation, .status-open { color: #8b5a0a; background: #fff1cf; }
.status-active, .status-processing { color: #17663a; background: #dcf5e5; }
.status-paused, .status-waiting_customer { color: #1e5f8a; background: #e3f2fc; }
.status-resolved { color: #4f4c87; background: #eceafb; }
.service-instance-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.service-instance-grid > a { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.6); }
.service-instance-grid > a:hover { border-color: #9db9a7; background: var(--white); }
.service-instance-grid > a > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--green); font-size: .6rem; font-weight: 800; }
.service-instance-grid h2 { margin: 65px 0 12px; font-size: 1.25rem; line-height: 1.4; letter-spacing: -.025em; }
.service-instance-grid p { color: var(--muted); font-size: .7rem; }
.service-instance-grid i { display: block; margin-top: 28px; color: var(--green-deep); font-size: .68rem; font-style: normal; font-weight: 750; }
.account-heading-action { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; }
.ticket-thread { border-top: 1px solid var(--line); }
.ticket-thread article { max-width: 780px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.ticket-thread article.is-staff { padding-left: 30px; border-left: 3px solid var(--green); }
.ticket-thread article header { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.ticket-thread article header strong { font-size: .75rem; }
.ticket-thread article header span { color: var(--muted); font-size: .6rem; }
.ticket-thread article > p { margin: 18px 0 0; color: var(--ink-soft); font-size: .8rem; line-height: 1.9; white-space: pre-wrap; }
.ticket-reply { margin-top: 45px; }
.admin-ticket-thread { max-height: 680px; padding: 8px 24px 24px; overflow-y: auto; }
.admin-ticket-thread article { padding: 22px 0; border-bottom: 1px solid #edf0ed; }
.admin-ticket-thread article.is-internal { margin: 12px -12px 0; padding: 18px 12px; border: 0; border-radius: 8px; background: #fff7df; }
.admin-ticket-thread article header { display: flex; justify-content: space-between; gap: 25px; }
.admin-ticket-thread article strong { font-size: .7rem; }
.admin-ticket-thread article span { color: #89948e; font-size: .58rem; }
.admin-ticket-thread article p { margin: 13px 0 0; color: #48554e; font-size: .72rem; line-height: 1.8; white-space: pre-wrap; }

.content-list { padding-bottom: 145px; border-top: 1px solid var(--line); }
.content-filter { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 24px; }
.content-filter a { display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.45); font-size: .72rem; font-weight: 700; }
.content-filter a span { color: var(--muted); font-size: .6rem; }
.content-filter a:hover, .content-filter a.is-active { color: var(--white); border-color: var(--green-deep); background: var(--green-deep); }
.content-filter a.is-active span { color: rgba(255,255,255,.65); }
.content-list > article { display: grid; grid-template-columns: 170px 1fr 1fr auto; gap: 35px; align-items: start; padding: 45px 0; border-bottom: 1px solid var(--line); }
.content-list > article > div { display: flex; flex-direction: column; gap: 9px; color: var(--muted); font-size: .68rem; }
.content-list > article > div span { color: var(--green-deep); font-weight: 800; }
.content-list h2 { margin: 0; font-size: 1.4rem; line-height: 1.4; letter-spacing: -.025em; }
.content-list h2 a:hover { color: var(--green-deep); }
.content-list article > p { margin: 2px 0 0; color: var(--ink-soft); font-size: .85rem; line-height: 1.7; }
.content-list .inline-action { margin: 0; white-space: nowrap; }

.article-shell { max-width: 960px; padding-top: 140px; padding-bottom: 150px; }
.article-shell header { padding-bottom: 80px; border-bottom: 1px solid var(--line); }
.article-shell h1 { font-size: clamp(2.3rem, 3.8vw, 3.4rem); }
.article-shell header > p:last-child { max-width: 740px; margin: 30px 0 0; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.85; }
.prose { max-width: 760px; margin: 80px auto 0; }
.prose p { margin: 0 0 28px; color: #2c3932; font-size: 1.02rem; line-height: 2; }
.prose .article-source-link { margin-top: -12px; }
.article-source-link a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--green-deep); border: 1px solid rgba(13,73,44,.18); border-radius: 999px; background: rgba(255,255,255,.55); font-size: .72rem; font-weight: 750; line-height: 1.3; }
.article-source-link a:hover { border-color: var(--green); background: var(--white); }

.docs-index { padding-bottom: 145px; }
.docs-index > section { display: grid; grid-template-columns: 250px 1fr; gap: 60px; padding: 55px 0; border-top: 1px solid var(--line); }
.docs-index > section h2 { margin: 0; font-size: 1.15rem; line-height: 1.4; letter-spacing: -.02em; }
.docs-index section > div > a { display: grid; grid-template-columns: 45px 1fr 1fr auto; gap: 24px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.docs-index a > span { color: var(--green); font-size: .62rem; font-weight: 800; }
.docs-index a > strong { font-size: .95rem; }
.docs-index a > p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }
.docs-index a > i { color: var(--green-deep); font-style: normal; transition: transform .2s ease; }
.docs-index a:hover > i { transform: translateX(4px); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 130px); align-items: start; min-height: 850px; padding-top: 140px; padding-bottom: 120px; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro h1 { max-width: 660px; font-size: clamp(2.4rem, 3.8vw, 3.4rem); }
.contact-intro > p:not(.eyebrow) { max-width: 540px; margin: 28px 0 55px; color: var(--ink-soft); line-height: 1.85; }
.contact-note { display: grid; grid-template-columns: 36px 1fr; gap: 15px; max-width: 460px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-note > span { color: var(--green); font-size: .62rem; font-weight: 800; }
.contact-note p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.contact-note strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: .84rem; }
.contact-form-card { padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 20px; }
.field { position: relative; display: flex; flex-direction: column; gap: 9px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: .74rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; color: var(--ink); border: 1px solid #ced7d1; border-radius: 10px; outline: 0; background: #fafcfa; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 160px; resize: vertical; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 4px rgba(38, 184, 90, .11); }
.field small, .standalone-error { color: #b33d2d; font-size: .68rem; }
.field-count { position: absolute; right: 12px; bottom: 10px; color: var(--muted); font-size: .6rem; }
.privacy-field { display: flex; align-items: flex-start; gap: 10px; margin-top: 25px; color: var(--ink-soft); font-size: .74rem; line-height: 1.5; cursor: pointer; }
.privacy-field input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--green-deep); }
.form-submit { width: 100%; margin-top: 28px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-success { display: flex; flex-direction: column; align-items: flex-start; min-height: 560px; }
.form-success > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--white); border-radius: 50%; background: var(--green); font-size: 1.2rem; }
.form-success > p:first-of-type { margin: auto 0 10px; color: var(--green-deep); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.form-success h2 { margin: 0; font-size: 1.8rem; line-height: 1.3; letter-spacing: -.03em; }
.form-success > p:last-of-type { max-width: 470px; margin: 20px 0 0; color: var(--ink-soft); line-height: 1.8; }
.form-success .button { margin-top: 32px; }

.error-shell { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 760px; padding-top: 110px; padding-bottom: 110px; }
.error-shell h1 { max-width: 920px; margin: auto 0 0; font-size: clamp(2.5rem, 4.3vw, 3.8rem); line-height: 1.2; letter-spacing: -.04em; }
.error-shell > p:not(.eyebrow) { max-width: 580px; margin: 28px 0 0; color: var(--ink-soft); line-height: 1.8; }
.error-shell > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.account-menu { position: relative; }
.account-trigger { display: inline-flex; align-items: center; gap: 9px; padding: 4px 7px 4px 5px; border: 1px solid transparent; border-radius: 13px; background: transparent; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.account-trigger:hover, .account-trigger[aria-expanded="true"] { border-color: var(--line); background: rgba(255,255,255,.72); }
.account-avatar { display: grid; flex: 0 0 auto; place-items: center; width: 34px; height: 34px; padding: 4px; overflow: hidden; border: 1px solid rgba(38,184,90,.2); border-radius: 10px; background: linear-gradient(145deg, #f8fff8, #dff3e3); box-shadow: 0 6px 16px rgba(13,73,44,.1); }
.account-avatar img { width: 100%; height: 100%; object-fit: contain; }
.account-avatar-large { width: 42px; height: 42px; border-radius: 12px; }
.account-trigger-copy { min-width: 0; text-align: left; }
.account-trigger-copy strong, .account-trigger-copy small { display: block; max-width: 95px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.account-trigger-copy strong { font-size: .72rem; }
.account-trigger-copy small { margin-top: 2px; color: var(--muted); font-size: .55rem; font-weight: 600; }
.account-trigger > svg { width: 10px; fill: none; stroke: var(--muted); stroke-width: 1.5; transition: transform .2s ease; }
.account-trigger[aria-expanded="true"] > svg { transform: rotate(180deg); }
.account-dropdown { position: absolute; top: calc(100% + 12px); right: 0; width: 286px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 28px 75px rgba(9,35,25,.18); }
.account-dropdown[hidden] { display: none; }
.account-dropdown-head { display: flex; align-items: center; gap: 11px; padding: 8px 7px 14px; border-bottom: 1px solid var(--line); }
.account-dropdown-head strong, .account-dropdown-head small { display: block; max-width: 190px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.account-dropdown-head strong { font-size: .78rem; }
.account-dropdown-head small { margin-top: 3px; color: var(--muted); font-size: .6rem; }
.account-dropdown nav { display: grid; gap: 2px; padding: 8px 0; }
.account-dropdown nav a { padding: 9px 10px; border-radius: 9px; }
.account-dropdown nav a:hover { background: rgba(38,184,90,.08); }
.account-dropdown nav span, .account-dropdown nav small { display: block; }
.account-dropdown nav span { color: var(--ink); font-size: .71rem; font-weight: 720; }
.account-dropdown nav small { margin-top: 2px; color: var(--muted); font-size: .56rem; }
.account-dropdown form { padding-top: 8px; border-top: 1px solid var(--line); }
.account-dropdown form button { width: 100%; padding: 9px 10px; color: var(--muted); border: 0; border-radius: 9px; background: transparent; text-align: left; font-size: .66rem; cursor: pointer; }
.account-dropdown form button:hover { color: var(--ink); background: var(--paper); }
.account-login { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: .76rem; font-weight: 700; }
.account-login > span { display: grid; place-items: center; width: 31px; height: 31px; padding: 4px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.65); }
.flash-stack { position: fixed; z-index: 150; top: 92px; right: 22px; display: grid; gap: 8px; width: min(360px, calc(100% - 44px)); }
.flash-message { padding: 13px 16px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-soft); font-size: .8rem; }
.flash-success { border-color: rgba(38,184,90,.35); }
.flash-info { border-color: rgba(40,110,190,.25); }

.auth-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 150px); align-items: center; min-height: 900px; padding-top: 140px; padding-bottom: 100px; }
.auth-intro h1 { max-width: 690px; margin: 0; font-size: clamp(2.35rem, 3.8vw, 3.4rem); line-height: 1.2; letter-spacing: -.035em; }
.auth-intro > p:last-child { max-width: 530px; margin: 30px 0 0; color: var(--ink-soft); line-height: 1.85; }
.auth-brand-visual { max-width: 470px; padding: 25px; margin-bottom: 55px; color: var(--white); border-radius: 22px; background: linear-gradient(135deg, var(--green-black), var(--green-deep)); box-shadow: 0 26px 70px rgba(9,35,25,.16); }
.auth-brand-visual > div { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.auth-brand-visual > div img { width: 46px; height: 46px; padding: 5px; border-radius: 13px; background: var(--white); }
.auth-brand-visual > div span { color: var(--lime); font-size: .58rem; font-weight: 800; letter-spacing: .13em; }
.auth-brand-visual ol { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 21px 0 0; margin: 0; list-style: none; }
.auth-brand-visual li { color: rgba(255,255,255,.72); font-size: .62rem; line-height: 1.5; }
.auth-brand-visual li span { display: block; margin-bottom: 6px; color: var(--lime); font-size: .54rem; font-weight: 800; }
.auth-card { padding: clamp(32px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.auth-card-head { margin-bottom: 38px; }
.auth-card-head > span { color: var(--green); font-size: .65rem; font-weight: 850; letter-spacing: .13em; }
.auth-card-head h2 { margin: 12px 0 8px; font-size: 1.65rem; line-height: 1.3; letter-spacing: -.03em; }
.auth-card-head p { margin: 0; color: var(--muted); font-size: .76rem; }
.auth-card-head a { color: var(--green-deep); font-weight: 750; }
.auth-card form > .field { margin-bottom: 23px; }

.account-shell { display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: clamp(55px, 8vw, 105px); min-height: 850px; padding-top: 145px; padding-bottom: 120px; }
.account-sidebar { position: sticky; top: 110px; align-self: start; }
.account-identity { display: flex; align-items: center; gap: 12px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.account-identity > span { display: grid; flex: 0 0 auto; place-items: center; width: 44px; height: 44px; padding: 6px; border: 1px solid rgba(38,184,90,.22); border-radius: 12px; background: linear-gradient(145deg, #fff, #dff3e3); box-shadow: 0 7px 18px rgba(13,73,44,.1); }
.account-identity > span img { width: 100%; height: 100%; object-fit: contain; }
.account-identity strong, .account-identity small { display: block; max-width: 165px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.account-identity strong { font-size: .82rem; }
.account-identity small { margin-top: 4px; color: var(--muted); font-size: .64rem; }
.account-sidebar nav { display: flex; flex-direction: column; padding: 20px 0; border-bottom: 1px solid var(--line); }
.account-sidebar nav a { padding: 11px 10px; color: var(--muted); border-radius: 8px; font-size: .78rem; font-weight: 650; }
.account-sidebar nav a:hover, .account-sidebar nav a.is-active { color: var(--green-deep); background: rgba(38,184,90,.09); }
.account-sidebar form { margin-top: 20px; }
.account-sidebar form button { padding: 8px 10px; color: var(--muted); border: 0; background: transparent; font-size: .73rem; cursor: pointer; }
.account-content { min-width: 0; }
.account-heading { margin-bottom: 55px; }
.account-heading h1 { margin: 0; font-size: clamp(2.2rem, 3.5vw, 3.1rem); line-height: 1.22; letter-spacing: -.035em; }
.account-heading > p:last-child { max-width: 630px; margin: 22px 0 0; color: var(--ink-soft); line-height: 1.8; }
.identity-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 36px; color: var(--white); border-radius: var(--radius-md); background: var(--green-black); box-shadow: 0 30px 70px rgba(9,35,25,.16); }
.identity-panel.is-customer { background: var(--green-deep); }
.identity-panel > div > span { color: var(--lime); font-size: .62rem; font-weight: 850; letter-spacing: .13em; }
.identity-panel h2 { margin: 10px 0 8px; font-size: 1.4rem; line-height: 1.35; letter-spacing: -.025em; }
.identity-panel p { max-width: 640px; margin: 0; color: rgba(255,255,255,.65); font-size: .78rem; line-height: 1.7; }
.identity-panel > strong { flex: 0 0 auto; padding: 9px 13px; color: var(--lime); border: 1px solid rgba(197,248,108,.3); border-radius: 999px; font-size: .7rem; }
.account-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.account-card-grid a { position: relative; min-height: 230px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease, transform .25s var(--ease-out); }
.account-card-grid a:hover { z-index: 1; color: var(--white); background: var(--green-deep); transform: translateY(-3px); }
.account-card-grid span { color: var(--green); font-size: .62rem; font-weight: 800; }
.account-card-grid h2 { margin: 55px 0 9px; font-size: 1.2rem; line-height: 1.4; letter-spacing: -.025em; }
.account-card-grid p { max-width: 300px; margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.65; }
.account-card-grid a:hover p { color: rgba(255,255,255,.65); }
.account-card-grid i { position: absolute; right: 25px; bottom: 25px; color: var(--green); font-style: normal; }
.account-form { max-width: 650px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.account-form .field { margin-bottom: 25px; }
.account-form .field > span { color: var(--muted); font-size: .65rem; }
.account-empty { display: flex; flex-direction: column; align-items: flex-start; min-height: 420px; padding: 48px; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.account-empty > span { margin: auto 0 20px; color: var(--green); font-size: 5rem; font-weight: 700; line-height: 1; letter-spacing: -.07em; }
.account-empty p { margin: 0; color: var(--muted); }
.account-empty .button { margin-top: 28px; }
.account-record-list { border-top: 1px solid var(--line); }
.account-record-list article { position: relative; padding: 30px 130px 30px 4px; border-bottom: 1px solid var(--line); }
.account-record-list article > div { display: flex; gap: 16px; color: var(--muted); font-size: .62rem; }
.account-record-list article > div span { color: var(--green-deep); font-weight: 800; }
.account-record-list h2 { margin: 16px 0 9px; font-size: 1.25rem; letter-spacing: -.03em; }
.account-record-list h2 a:hover { color: var(--green-deep); }
.account-record-list article > p { max-width: 700px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.7; }
.account-record-list article > .status { position: absolute; top: 30px; right: 4px; }
.account-document > header { padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.account-document h1 { margin: 0; font-size: clamp(2.15rem,3.3vw,3rem); line-height: 1.22; letter-spacing: -.03em; }
.account-document header > p:last-child { max-width: 680px; margin: 22px 0 0; color: var(--ink-soft); line-height: 1.8; }
.account-document .prose { margin: 55px 0 0; }

.admin-page { min-width: 1000px; color: #18231d; background: #edf0ed; }
.admin-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); min-height: 100vh; }
.admin-sidebar { position: fixed; z-index: 10; top: 0; bottom: 0; left: 0; display: flex; flex-direction: column; width: 240px; padding: 30px 22px 22px; color: #d8e1db; background: #081c13; }
.admin-sidebar > p { margin: 10px 0 32px; color: #6d8577; font-size: .65rem; font-weight: 750; letter-spacing: .12em; }
.admin-sidebar nav { display: flex; flex-direction: column; gap: 4px; }
.admin-sidebar nav a { padding: 11px 12px; color: #87998f; border-radius: 8px; font-size: .76rem; font-weight: 650; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.is-active { color: var(--white); background: rgba(66,213,116,.11); }
.admin-sidebar nav span { margin-top: 20px; padding: 0 12px; color: #4e6558; font-size: .62rem; line-height: 1.6; }
.admin-sidebar-bottom { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.admin-sidebar-bottom > a { color: var(--lime); font-size: .67rem; }
.admin-sidebar-bottom > div { margin-top: 20px; }
.admin-sidebar-bottom strong, .admin-sidebar-bottom small { display: block; }
.admin-sidebar-bottom strong { font-size: .75rem; }
.admin-sidebar-bottom small { margin-top: 4px; color: #6e8477; font-size: .62rem; }
.admin-sidebar-bottom form button { margin-top: 14px; padding: 0; color: #6e8477; border: 0; background: transparent; font-size: .65rem; cursor: pointer; }
.admin-content { grid-column: 2; min-width: 0; padding: 50px clamp(35px,5vw,75px) 80px; }
.admin-flashes { margin-bottom: 20px; }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.admin-heading p { margin: 0 0 8px; color: #2b9b55; font-size: .62rem; font-weight: 850; letter-spacing: .13em; }
.admin-heading h1 { margin: 0; font-size: 2.1rem; line-height: 1.22; letter-spacing: -.035em; }
.admin-heading > span { color: #68746e; font-size: .7rem; }
.admin-back { display: inline-block; margin-bottom: 28px; color: #68746e; font-size: .68rem; }
.admin-metrics { display: grid; grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); gap: 14px; margin-bottom: 24px; }
.admin-metrics article { padding: 23px; border: 1px solid #dbe0dc; border-radius: 12px; background: var(--white); }
.admin-metrics span, .admin-metrics small { display: block; color: #7b8680; font-size: .65rem; }
.admin-metrics strong { display: block; margin: 18px 0 8px; font-size: 2.2rem; line-height: 1; letter-spacing: -.05em; }
.admin-dashboard-grid, .admin-detail-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.admin-detail-grid { grid-template-columns: 1.1fr .9fr; }
.admin-panel { overflow: hidden; border: 1px solid #dbe0dc; border-radius: 12px; background: var(--white); }
.admin-panel-full { width: 100%; }
.admin-panel > header { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 24px; border-bottom: 1px solid #e2e6e3; }
.admin-panel > header span { color: #2b9b55; font-size: .58rem; font-weight: 850; letter-spacing: .13em; }
.admin-panel > header h2 { margin: 6px 0 0; font-size: 1rem; }
.admin-panel > header > a { color: #2d6344; font-size: .66rem; font-weight: 700; }
.admin-table-wrap { overflow-x: auto; }
.admin-panel table { width: 100%; border-collapse: collapse; font-size: .72rem; }
.admin-panel th, .admin-panel td { padding: 15px 18px; text-align: left; border-bottom: 1px solid #edf0ed; }
.admin-panel th { color: #78837d; background: #f8faf8; font-size: .62rem; font-weight: 700; white-space: nowrap; }
.admin-panel td a { color: #175c35; font-weight: 700; }
.admin-panel td strong, .admin-panel td small { display: block; }
.admin-panel td small { margin-top: 4px; color: #849089; font-size: .62rem; }
.status { display: inline-flex; padding: 5px 8px; border-radius: 999px; color: #56635c; background: #edf1ee; font-size: .6rem; font-weight: 750; white-space: nowrap; }
.status-new, .status-prospect { color: #8b5a0a; background: #fff1cf; }
.status-assigned, .status-contacted { color: #1e5f8a; background: #e3f2fc; }
.status-qualified, .status-customer { color: #17663a; background: #dcf5e5; }
.status-closed, .status-former_customer { color: #69736d; background: #e9ecea; }
.audit-list { padding: 10px 24px 20px; margin: 0; list-style: none; }
.audit-list li { display: grid; grid-template-columns: 12px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid #edf0ed; }
.audit-list li > span { width: 7px; height: 7px; margin-top: 5px; border-radius: 50%; background: var(--green); }
.audit-list strong { font-size: .7rem; }
.audit-list p { margin: 4px 0; color: #68746e; font-size: .65rem; line-height: 1.5; }
.audit-list small { color: #95a099; font-size: .58rem; }
.admin-empty-row { padding: 32px !important; color: #89938e; text-align: center !important; font-size: .7rem; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.filter-tabs a { padding: 8px 12px; color: #68746e; border: 1px solid #d8ded9; border-radius: 999px; background: var(--white); font-size: .67rem; }
.filter-tabs a.is-active { color: var(--white); border-color: var(--green-deep); background: var(--green-deep); }
.inquiry-record dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.inquiry-record dl > div { padding: 18px 24px; border-right: 1px solid #edf0ed; border-bottom: 1px solid #edf0ed; }
.inquiry-record dt { color: #859088; font-size: .6rem; }
.inquiry-record dd { margin: 7px 0 0; font-size: .74rem; word-break: break-word; }
.inquiry-record > article { padding: 28px 24px; font-size: .8rem; line-height: 1.85; white-space: pre-wrap; }
.admin-form-panel form { padding: 24px; }
.admin-form-note { padding: 14px 16px; margin: 0 0 24px; color: #5c6962; border: 1px solid #dbe2dd; border-radius: 8px; background: #f7faf8; font-size: .67rem; line-height: 1.75; }
.admin-form-panel form .field { margin-bottom: 22px; }
.admin-form-panel textarea { min-height: 160px; }
.admin-form-panel .button { width: 100%; }
.assigned-note { margin: 0; padding: 15px 24px; color: #78837d; border-top: 1px solid #edf0ed; font-size: .63rem; line-height: 1.6; }
.admin-search { display: flex; }
.admin-search input { width: 250px; padding: 10px 12px; border: 1px solid #d4dad6; border-radius: 8px 0 0 8px; outline: 0; }
.admin-search button { padding: 0 15px; color: var(--white); border: 0; border-radius: 0 8px 8px 0; background: var(--green-deep); cursor: pointer; }
.admin-filter-bar { display: flex; align-items: end; gap: 12px; margin-bottom: 18px; }
.admin-filter-bar label { display: grid; gap: 6px; color: #68746e; font-size: .62rem; font-weight: 700; }
.admin-filter-bar select { min-width: 150px; padding: 10px 34px 10px 11px; color: #17231d; border: 1px solid #d4dad6; border-radius: 8px; background: var(--white); }
.admin-filter-bar > a { padding: 12px 6px; color: #5f6c65; font-size: .66rem; font-weight: 700; }
.button-compact { min-height: 42px; padding: 0 18px; font-size: .68rem; }
.status-draft { color: #7a5b18; background: #fff1cf; }
.status-published, .status-public { color: #17663a; background: #dcf5e5; }
.status-archived { color: #69736d; background: #e9ecea; }
.status-customer { color: #1e5f8a; background: #e3f2fc; }
.admin-editor-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr); gap: 20px; align-items: start; }
.admin-form-wide { max-width: 980px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.admin-form-grid .field-span-2 { grid-column: 1 / -1; }
.admin-form-panel form > .button { width: auto; min-width: 180px; }
.admin-form-panel .field label { display: block; margin-bottom: 8px; color: #536159; font-size: .65rem; font-weight: 700; }
.admin-form-panel .field input:not([type="checkbox"]),
.admin-form-panel .field select,
.admin-form-panel .field textarea { width: 100%; padding: 11px 12px; color: #17231d; border: 1px solid #ccd5cf; border-radius: 8px; background: #fbfcfb; font: inherit; font-size: .75rem; line-height: 1.65; outline: 0; }
.admin-form-panel .field input:focus,
.admin-form-panel .field select:focus,
.admin-form-panel .field textarea:focus { border-color: #2d9c58; box-shadow: 0 0 0 3px rgba(45,156,88,.1); background: #fff; }
.admin-form-panel .field > span { display: block; margin-top: 6px; color: #87918b; font-size: .6rem; line-height: 1.55; }
.admin-form-panel .field > small { display: block; margin-top: 6px; color: #a83232; font-size: .62rem; }
.admin-form-panel .code-field textarea { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .7rem; tab-size: 2; }
.admin-form-panel .privacy-field { margin: 0 0 22px; }
.variant-panel { position: sticky; top: 30px; }
.variant-list > a { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 20px 22px; border-bottom: 1px solid #edf0ed; }
.variant-list > a:hover { background: #f7faf8; }
.variant-list strong, .variant-list small, .variant-list span, .variant-list em { display: block; }
.variant-list strong { color: #174d30; font-size: .75rem; }
.variant-list small { margin-top: 6px; color: #7d8982; font-size: .6rem; }
.variant-list > a > span { color: #18231d; text-align: right; font-size: .76rem; font-weight: 750; }
.variant-list em { margin-top: 5px; color: #7c8981; font-size: .56rem; font-style: normal; font-weight: 500; }
.admin-empty-card { padding: 35px 24px; color: #7c8981; font-size: .68rem; line-height: 1.75; }
.admin-empty-card p { margin: 0; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 50px; min-height: 760px; }
  .hero h1 { font-size: clamp(2.35rem, 4vw, 3.25rem); }
  .desktop-nav { gap: 16px; }
  .text-link { display: none; }
  .account-trigger-copy { display: none; }
  .account-trigger { padding: 3px; }
  .account-trigger > svg { display: none; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-card { padding: 30px; }
  .product-caption { grid-template-columns: 130px 1fr; }
  .product-caption > p:last-child { grid-column: 2; }
  .trust-section { gap: 60px; }
  .contact-layout { grid-template-columns: .9fr 1.1fr; gap: 60px; }
  .content-list > article { grid-template-columns: 130px 1fr 1fr; }
  .content-list .inline-action { grid-column: 2; }
  .admin-metrics { grid-template-columns: repeat(2,1fr); }
  .admin-dashboard-grid, .admin-detail-grid { grid-template-columns: 1fr; }
  .admin-editor-grid { grid-template-columns: 1fr; }
  .variant-panel { position: static; }
}

@media (max-width: 820px) {
  .section-shell, .header-inner, .footer-main, .footer-bottom { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { height: 70px; }
  .desktop-nav, .header-actions > .button, .header-actions > .text-link, .header-actions > .account-menu, .header-actions > .account-login { display: none; }
  .menu-trigger { display: block; }
  .mobile-nav { position: fixed; top: 70px; right: 0; bottom: 0; left: 0; z-index: 99; display: flex; flex-direction: column; gap: 0; padding: 24px 18px max(40px, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; background: var(--paper); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav > a:not(.button) { padding: 20px 6px; border-bottom: 1px solid var(--line); font-size: 1.3rem; font-weight: 670; letter-spacing: -.025em; }
  .mobile-nav > a.is-current { color: var(--green-deep); }
  .mobile-nav > a.is-current::after { content: "当前"; float: right; margin-top: .18em; color: var(--muted); font-size: .72rem; font-weight: 620; letter-spacing: .08em; }
  .mobile-nav .button { margin-top: 28px; }
  .hero { grid-template-columns: 1fr; gap: 64px; min-height: auto; padding-top: 150px; padding-bottom: 100px; }
  .hero h1 { max-width: 580px; font-size: clamp(2.2rem, 5.4vw, 3rem); }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: 90%; margin-left: auto; }
  .statement { padding-top: 90px; padding-bottom: 100px; }
  .statement-index { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading > p { max-width: 650px; }
  .product-section { padding: 100px 0; }
  .product-tour { grid-template-columns: 1fr; }
  .product-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid rgba(16, 33, 25, .16); }
  .product-tab { display: block; padding: 18px; border-right: 1px solid rgba(16, 33, 25, .16); }
  .product-tab > span { display: block; margin-bottom: 10px; }
  .product-tab strong { display: block; }
  .product-tab small { display: none; }
  .product-tab.is-active { padding-left: 18px; background: rgba(255, 255, 255, .52); }
  .product-caption { grid-template-columns: 1fr 1fr; }
  .product-caption .eyebrow { grid-column: 1 / -1; }
  .product-caption > p:last-child { grid-column: auto; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-card-featured { grid-column: span 2; }
  .workflow-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 70px; }
  .workflow-track { grid-template-columns: repeat(3, 1fr); gap: 55px 0; }
  .workflow-track::before { display: none; }
  .workflow-track li { padding-top: 35px; }
  .workflow-track li::before { top: 0; }
  .trust-section { grid-template-columns: 1fr; }
  .trust-copy { max-width: 650px; }
  .trust-diagram { width: min(100%, 600px); margin-inline: auto; }
  .updates-panel { grid-template-columns: 1fr; gap: 46px; }
  .closing { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 65px; }
  .page-hero, .detail-hero { grid-template-columns: 1fr; align-items: start; }
  .page-hero { gap: 34px; padding-top: 58px; padding-bottom: 62px; }
  .page-hero-compact { min-height: 0; }
  .page-hero-aside { max-width: 650px; }
  .principle-grid { grid-template-columns: 1fr; gap: 45px; }
  .layer-list article { grid-template-columns: 45px .9fr 1.1fr; }
  .catalog-card { min-height: 610px; }
  .catalog-card-primary { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; min-height: 0; }
  .catalog-card-primary .catalog-card-top { grid-column: 1; }
  .catalog-card-primary .catalog-product-visual { grid-column: 1; grid-row: 2; min-height: 250px; }
  .catalog-card-primary .catalog-card-copy { grid-column: 1; grid-row: 3; padding-top: 30px; }
  .catalog-card-primary .catalog-offer { grid-column: 1; grid-row: 4; }
  .detail-hero { gap: 55px; min-height: auto; }
  .purchase-card { max-width: 520px; }
  .detail-intro { grid-template-columns: 1fr; gap: 25px; }
  .detail-columns { grid-template-columns: 1fr 1fr; }
  .detail-columns section:first-child { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; grid-row: 1; }
  .order-detail-grid { grid-template-columns: 1fr; }
  .service-instance-grid { grid-template-columns: 1fr; }
  .content-list > article { grid-template-columns: 120px 1fr; }
  .content-list > article > p { grid-column: 2; }
  .content-list .inline-action { grid-column: 2; }
  .docs-index > section { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; min-height: auto; }
  .contact-intro { position: static; max-width: 700px; }
  .auth-layout { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .auth-intro { max-width: 700px; }
  .auth-card { max-width: 700px; }
  .account-shell { grid-template-columns: 1fr; padding-top: 125px; }
  .account-sidebar { position: static; }
  .account-sidebar nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
  .admin-page { min-width: 0; }
  .admin-layout { display: block; }
  .admin-sidebar { position: static; display: grid; grid-template-columns: auto 1fr; gap: 8px 25px; width: auto; padding: 20px; }
  .admin-sidebar > p { margin: 8px 0 0; }
  .admin-sidebar nav { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; margin-top: 12px; }
  .admin-sidebar nav span { display: none; }
  .admin-sidebar-bottom { grid-column: 1 / -1; display: flex; align-items: center; gap: 22px; margin-top: 10px; padding-top: 14px; }
  .admin-sidebar-bottom > div { margin: 0 0 0 auto; }
  .admin-sidebar-bottom form button { margin: 0; }
  .admin-content { padding: 35px 22px 60px; }
  .admin-filter-bar { align-items: stretch; flex-direction: column; }
  .admin-filter-bar select { width: 100%; }
}

@media (max-width: 560px) {
  .section-shell, .header-inner, .footer-main, .footer-bottom { width: min(calc(100% - 28px), var(--container)); }
  .brand-company, .brand-product { font-size: 1rem; }
  .brand-mark { width: 29px; height: 29px; flex-basis: 29px; border-radius: 8px; }
  .hero { padding-top: 128px; padding-bottom: 88px; }
  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.2rem); line-height: 1.22; letter-spacing: -.025em; }
  .hero-lead { margin-top: 25px; font-size: .96rem; line-height: 1.75; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 13px 18px; }
  .hero-visual { width: 100%; }
  .hero-product-render { border-radius: 18px; transform: none; }
  .hero-product-render figcaption { position: static; border: 0; border-radius: 0; background: var(--green-deep); box-shadow: none; }
  .statement { padding: 76px 0 84px; }
  .statement > p { font-size: 1.55rem; line-height: 1.42; }
  .product-section, .capability-section, .services-section { padding-top: 84px; padding-bottom: 92px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .workflow-heading h2, .trust-copy h2, .updates-panel h2, .closing h2 { font-size: 1.75rem; line-height: 1.3; }
  .product-tabs { overflow-x: auto; }
  .product-tab { min-width: 118px; padding: 15px 12px; }
  .product-tab.is-active { padding-left: 12px; }
  .product-caption { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; }
  .product-caption .eyebrow, .product-caption > p:last-child { grid-column: auto; }
  .product-caption h3 { font-size: 1.1rem; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card, .capability-card-featured { grid-column: auto; min-height: 300px; padding: 28px; }
  .capability-icon { margin-bottom: 54px; }
  .workflow-section { padding: 90px 0 95px; }
  .workflow-track { grid-template-columns: repeat(2, 1fr); }
  .trust-section { gap: 60px; padding-top: 95px; padding-bottom: 100px; }
  .trust-diagram { min-height: 370px; }
  .trust-core { width: 136px; height: 136px; }
  .trust-node { width: 105px; padding: 12px; }
  .trust-node-a { top: 3%; left: 9%; }
  .trust-node-b { top: 39%; right: -2%; }
  .trust-node-c { bottom: 2%; left: 8%; }
  .service-list article { grid-template-columns: 40px 1fr auto; gap: 12px; min-height: 145px; }
  .service-list small { line-height: 1.6; }
  .updates-section { padding-bottom: 90px; }
  .updates-panel { padding: 42px 28px; border-radius: 20px; }
  .closing { padding-bottom: 100px; }
  .closing .button { width: 100%; }
  .footer-main { padding: 70px 0 60px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 42px 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-compliance { justify-content: flex-start; }
  .inner-page main { padding-top: 70px; }
  .page-hero { padding-top: 44px; padding-bottom: 54px; }
  .page-hero h1, .detail-hero h1, .article-shell h1, .contact-intro h1 { font-size: clamp(1.95rem, 8vw, 2.4rem); line-height: 1.24; letter-spacing: -.025em; }
  .product-cover { padding-bottom: 88px; }
  .product-cover-render { border-radius: 16px; }
  .product-principle, .product-scenes { padding-top: 84px; padding-bottom: 92px; }
  .product-layers { padding: 84px 0 92px; }
  .layer-list article { grid-template-columns: 32px 1fr; gap: 18px; }
  .layer-list article > p { grid-column: 2; }
  .scene-grid, .catalog-grid { grid-template-columns: 1fr; }
  .scene-grid { gap: 18px; }
  .page-cta { align-items: flex-start; flex-direction: column; padding-top: 72px; padding-bottom: 90px; }
  .page-cta .button { width: 100%; }
  .catalog-section { padding-bottom: 95px; }
  .catalog-card { min-height: 590px; padding: 24px; }
  .catalog-card-primary { min-height: 0; padding: 26px 22px; }
  .catalog-card-primary::before { right: 22px; left: 22px; }
  .catalog-card-primary .catalog-product-visual { min-height: 210px; }
  .catalog-card-primary .catalog-card-copy ul { grid-template-columns: 1fr; }
  .catalog-card-primary .catalog-offer { align-items: flex-start; flex-direction: column; }
  .empty-state { min-height: 360px; padding: 38px 26px; }
  .detail-hero { padding-top: 80px; padding-bottom: 80px; }
  .back-link { margin-bottom: 42px; }
  .purchase-card { padding: 27px; }
  .detail-body { padding-top: 85px; padding-bottom: 90px; }
  .detail-intro { margin-bottom: 75px; }
  .detail-columns { grid-template-columns: 1fr; gap: 40px; }
  .detail-columns section:first-child { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .checkout-shell { padding-top: 100px; padding-bottom: 90px; }
  .checkout-heading { margin-bottom: 50px; }
  .checkout-summary { padding: 26px; }
  .wechat-payment { grid-template-columns: 1fr; }
  .order-detail-card dl { grid-template-columns: 1fr; }
  .account-heading-action { align-items: flex-start; flex-direction: column; }
  .content-list { padding-bottom: 95px; }
  .content-list > article { grid-template-columns: 1fr; gap: 18px; padding: 35px 0; }
  .content-list > article > p, .content-list .inline-action { grid-column: auto; }
  .content-list > article > div { flex-direction: row; }
  .article-shell { padding-top: 95px; padding-bottom: 100px; }
  .article-shell header { padding-bottom: 58px; }
  .prose { margin-top: 58px; }
  .docs-index { padding-bottom: 95px; }
  .docs-index > section { padding: 40px 0; }
  .docs-index section > div > a { grid-template-columns: 30px 1fr auto; gap: 15px; }
  .docs-index a > p { grid-column: 2 / -1; }
  .contact-layout { padding-top: 90px; padding-bottom: 90px; }
  .contact-form-card { padding: 28px 20px; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .auth-layout { padding-top: 100px; padding-bottom: 80px; }
  .auth-intro h1 { font-size: 2.05rem; line-height: 1.24; }
  .auth-card { padding: 28px 20px; border-radius: 18px; }
  .account-shell { gap: 55px; padding-top: 105px; padding-bottom: 85px; }
  .account-sidebar nav { grid-template-columns: repeat(2,1fr); }
  .identity-panel { align-items: flex-start; flex-direction: column; padding: 28px; }
  .account-card-grid { grid-template-columns: 1fr; }
  .account-form, .account-empty { padding: 28px 20px; }
  .account-record-list article { padding-right: 4px; }
  .account-record-list article > .status { position: static; margin-top: 18px; }
  .admin-sidebar { grid-template-columns: 1fr; }
  .admin-sidebar > p, .admin-sidebar-bottom > div { display: none; }
  .admin-sidebar nav { overflow-x: auto; flex-wrap: nowrap; }
  .admin-sidebar nav a { white-space: nowrap; }
  .admin-sidebar-bottom { position: absolute; top: 16px; right: 18px; grid-column: auto; padding: 0; border: 0; }
  .admin-sidebar-bottom > a { display: none; }
  .admin-heading { align-items: flex-start; flex-direction: column; }
  .admin-heading h1 { font-size: 1.85rem; line-height: 1.25; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .admin-metrics article { padding: 18px; }
  .admin-panel th, .admin-panel td { padding: 13px 14px; }
  .inquiry-record dl { grid-template-columns: 1fr; }
  .admin-search { width: 100%; }
  .admin-search input { width: 100%; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-form-grid .field-span-2 { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
