:root {
  --bg: #f4f7f1;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #fdf7eb;
  --text: #223223;
  --muted: #60705f;
  --line: rgba(82, 104, 78, 0.14);
  --accent: #df9b34;
  --accent-strong: #6a5437;
  --accent-soft: #f2e2bf;
  --forest: #35553a;
  --forest-soft: #edf3e9;
  --shadow: 0 24px 60px rgba(53, 85, 58, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 200, 121, 0.22), transparent 30%),
    linear-gradient(180deg, #fae8d3 0%, #f4f7f1 42%, #eef3f9 100%);
}

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

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

.shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 251, 249, 0.78);
  border-bottom: 1px solid rgba(82, 104, 78, 0.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

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

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #35553a 0%, #6f935b 100%);
  color: #fff8ef;
  font-family: "Noto Serif SC", "Source Han Serif SC", serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(114, 68, 29, 0.22);
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  background: rgba(53, 85, 58, 0.08);
  color: var(--forest);
  transform: translateY(-1px);
}

.nav a.is-active {
  background: linear-gradient(135deg, #35553a 0%, #61824f 100%);
  color: #fff8ef;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(53, 85, 58, 0.18);
}

.hero {
  padding: 56px 0 28px;
}

.landing-hero {
  padding: 28px 0 24px;
}

.landing-stage {
  position: relative;
  min-height: 44vh;
  max-height: 560px;
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 24px;
  padding: 30px;
  box-shadow: 0 28px 70px rgba(20, 14, 10, 0.24);
  background: #16120d;
}

.landing-backdrop,
.landing-overlay {
  position: absolute;
  inset: 0;
}

.landing-backdrop {
  background: var(--hero-image, url("/static/bgimg1.png")) center center / cover no-repeat;
  transform: scale(1.01);
}

.landing-overlay {
  background:
    linear-gradient(90deg, rgba(14, 12, 9, 0.48) 0%, rgba(14, 12, 9, 0.22) 43%, rgba(14, 12, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(14, 12, 9, 0.08) 0%, rgba(14, 12, 9, 0.28) 100%);
}

.landing-content,
.landing-aside {
  position: relative;
  z-index: 1;
}

.landing-content {
  max-width: 700px;
  color: #fffaf2;
  align-self: end;
  padding-top: 24px;
}

.landing-eyebrow {
  background: rgba(255, 249, 241, 0.12);
  color: #fff7ed;
  border: 1px solid rgba(255, 249, 241, 0.18);
}

.landing-title {
  margin: 18px 0 0;
  font-family: "Noto Serif SC", "Source Han Serif SC", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.landing-text {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 248, 240, 0.96);
}

.landing-actions {
  margin-top: 22px;
}

.landing-button {
  min-width: 146px;
}

.ghost-light {
  background: rgba(255, 250, 243, 0.14);
  color: #fffaf2;
  border-color: rgba(255, 249, 241, 0.28);
  backdrop-filter: blur(8px);
}

.landing-aside {
  display: grid;
  gap: 14px;
  align-self: end;
  min-width: 280px;
}

.landing-aside-card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 26px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 250, 243, 0.16);
  box-shadow: 0 20px 42px rgba(18, 28, 20, 0.18);
  overflow: hidden;
}

.landing-aside-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.landing-aside-card::after {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.landing-aside-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-aside-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.metric-dark {
  background: linear-gradient(160deg, rgba(26, 38, 28, 0.78) 0%, rgba(19, 28, 20, 0.68) 100%);
  color: #fff8ef;
}

.metric-dark strong {
  background: rgba(255, 248, 238, 0.12);
  color: rgba(255, 248, 238, 0.92);
  border: 1px solid rgba(255, 248, 238, 0.14);
}

.metric-dark::after {
  content: "查看使用场景";
  background: rgba(255, 248, 238, 0.14);
  color: #fff8ef;
  border: 1px solid rgba(255, 248, 238, 0.14);
}

.metric-light {
  background: linear-gradient(160deg, rgba(253, 247, 235, 0.94) 0%, rgba(237, 243, 233, 0.92) 100%);
  color: var(--text);
  border-color: rgba(82, 104, 78, 0.12);
}

.metric-light strong {
  background: rgba(53, 85, 58, 0.08);
  color: var(--forest);
  border: 1px solid rgba(82, 104, 78, 0.12);
}

.metric-light::after {
  content: "进入常见问题";
  background: rgba(53, 85, 58, 0.08);
  color: var(--forest);
  border: 1px solid rgba(82, 104, 78, 0.12);
}

.showcase-section,
.value-section,
.compact-links-section {
  padding-top: 28px;
}

.showcase-head p {
  max-width: 620px;
}

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

.feature-showcase-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(74, 50, 22, 0.1);
  background: rgba(255, 251, 246, 0.94);
}

.feature-showcase-card h3 {
  margin: 14px 0 0;
  font-size: 30px;
  line-height: 1.2;
}

.feature-showcase-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  max-width: 42ch;
}

.feature-showcase-large {
  grid-column: span 7;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.12) 0%, rgba(22, 16, 12, 0.72) 100%),
    url("/static/bgimg1.png") center center / cover no-repeat;
  color: #fffaf2;
  border-color: rgba(255, 249, 241, 0.14);
}

.feature-showcase-large p,
.feature-showcase-large .kicker,
.dark-tone p,
.dark-tone .kicker,
.dark-tone h3 {
  color: rgba(255, 248, 240, 0.92);
}

.wood-tone {
  grid-column: span 5;
  background: linear-gradient(180deg, #f0decb 0%, #f8f1e9 100%);
}

.forest-tone {
  grid-column: span 4;
  background: linear-gradient(180deg, #eef3eb 0%, #fcfdf8 100%);
}

.dark-tone {
  grid-column: span 8;
  background: linear-gradient(135deg, #243228 0%, #121712 100%);
  border-color: rgba(255, 250, 243, 0.08);
  color: #fffaf2;
}

.value-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 18px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(242, 200, 121, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(253, 247, 235, 0.98) 0%, rgba(237, 243, 233, 0.94) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(53, 85, 58, 0.1);
}

.value-copy h2 {
  margin: 14px 0 0;
  font-family: "Noto Serif SC", "Source Han Serif SC", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.value-copy p {
  margin: 16px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

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

.value-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(82, 104, 78, 0.12);
  backdrop-filter: blur(10px);
}

.value-item strong {
  display: block;
  font-size: 15px;
  color: var(--forest);
}

.value-item span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.compact-links-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 247, 241, 0.92) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(53, 85, 58, 0.08);
}

.compact-links-card h3 {
  margin: 12px 0 0;
  font-size: 28px;
}

.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.compact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(53, 85, 58, 0.08);
  color: var(--forest);
  font-weight: 700;
}

.compact-links a:hover {
  background: rgba(53, 85, 58, 0.14);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 252, 247, 0.92) 58%, rgba(237, 244, 236, 0.9) 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(76, 52, 24, 0.08);
  padding: 44px;
}

.hero-card-photo {
  color: #fffaf2;
  background:
    linear-gradient(110deg, rgba(14, 12, 9, 0.84) 0%, rgba(14, 12, 9, 0.52) 42%, rgba(14, 12, 9, 0.22) 100%),
    var(--hero-image, url("/static/bgimg1.png")) center center / cover no-repeat;
  min-height: 560px;
  border-color: rgba(255, 249, 241, 0.12);
}

.hero-card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 160, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(126, 164, 118, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88, 137, 92, 0.22) 0%, rgba(88, 137, 92, 0) 72%);
}

.hero-card-photo .eyebrow {
  position: relative;
  z-index: 1;
  background: rgba(255, 249, 241, 0.12);
  color: #fff6eb;
  border: 1px solid rgba(255, 249, 241, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 81, 58, 0.08);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  margin-top: 24px;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-card-photo .hero-title,
.hero-card-photo .hero-text {
  color: #fffaf2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.hero-card-photo .hero-text {
  max-width: 700px;
  color: rgba(255, 249, 241, 0.9);
}

.hero-title {
  margin: 0;
  font-family: "Noto Serif SC", "Source Han Serif SC", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.hero-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  max-width: 760px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #35553a 0%, #61824f 100%);
  color: #fff8ef;
  box-shadow: 0 14px 30px rgba(53, 85, 58, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  border-color: rgba(82, 104, 78, 0.16);
}

.hero-card-photo .button-secondary {
  background: rgba(255, 249, 241, 0.16);
  color: #fff8f0;
  border-color: rgba(255, 249, 241, 0.3);
  backdrop-filter: blur(8px);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-panel-photo .stat-card {
  background: rgba(255, 251, 246, 0.12);
  border-color: rgba(255, 249, 241, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.hero-panel-photo .stat-card strong {
  color: rgba(255, 249, 241, 0.82);
}

.hero-panel-photo .stat-card span {
  color: #fffaf2;
}

.stat-card,
.panel,
.feature-card,
.faq-card,
.doc-card,
.contact-card,
.note-card {
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(53, 85, 58, 0.08);
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 15px;
  color: var(--muted);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1.5;
}

.section {
  padding: 22px 0 8px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Source Han Serif SC", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
}

.panel {
  padding: 28px;
}

.feature-grid,
.two-grid,
.faq-grid,
.doc-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card,
.faq-card,
.doc-card,
.contact-card,
.note-card {
  padding: 24px;
}

.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(53, 85, 58, 0.1);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-card h3,
.faq-card h3,
.doc-card h3,
.contact-card h3,
.note-card h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.feature-card p,
.faq-card p,
.doc-card p,
.contact-card p,
.note-card p,
.panel p,
.panel li,
.doc-article p,
.doc-article li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.feature-list,
.doc-list,
.inline-list,
.doc-article ul,
.doc-article ol,
.note-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.feature-list li,
.doc-list li,
.inline-list li,
.doc-article li,
.note-list li {
  margin-bottom: 8px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.highlight-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(223, 232, 221, 0.9) 0%, rgba(255, 250, 242, 0.94) 100%);
  border: 1px solid rgba(53, 81, 58, 0.1);
}

.highlight-item strong {
  display: block;
  font-size: 14px;
  color: var(--forest);
}

.highlight-item span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

.doc-page {
  padding: 48px 0 64px;
}

.doc-page .hero-card {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(242, 200, 121, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #35553a 0%, #61824f 52%, #314d37 100%);
  border-color: rgba(255, 248, 238, 0.08);
  box-shadow: 0 24px 60px rgba(53, 85, 58, 0.2);
}

.doc-page .hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.doc-page .hero-card > * {
  position: relative;
  z-index: 1;
}

.doc-page .hero-card .eyebrow {
  background: rgba(255, 248, 238, 0.14);
  color: #fff8ef;
  border: 1px solid rgba(255, 248, 238, 0.16);
}

.doc-page .hero-card .section-head {
  margin-top: 18px;
  margin-bottom: 0;
}

.doc-page .hero-card .section-head h1,
.doc-page .hero-card .section-head h2 {
  color: #fff8ef;
}

.doc-page .hero-card .section-head p {
  color: rgba(255, 248, 238, 0.86);
  max-width: 54ch;
}

.doc-page .hero-card .support-grid {
  margin-top: 24px;
}

.doc-page .hero-card .contact-card {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 248, 238, 0.16);
  box-shadow: 0 18px 40px rgba(24, 35, 27, 0.16);
  backdrop-filter: blur(10px);
}

.doc-page .hero-card .contact-card .kicker,
.doc-page .hero-card .meta-chip {
  background: rgba(255, 248, 238, 0.16);
  color: #fff8ef;
  border: 1px solid rgba(255, 248, 238, 0.14);
}

.doc-page .hero-card .contact-card h3,
.doc-page .hero-card .contact-card p {
  color: #fff8ef;
}

.doc-page .hero-card .contact-card p {
  color: rgba(255, 248, 238, 0.82);
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(53, 85, 58, 0.08);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.doc-article {
  margin-top: 22px;
  padding: 32px;
}

.doc-article h2 {
  margin: 0 0 12px;
  font-family: "Noto Serif SC", "Source Han Serif SC", serif;
  font-size: 28px;
}

.doc-article h3 {
  margin: 28px 0 12px;
  font-size: 20px;
}

.doc-article table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 16px;
}

.doc-article th,
.doc-article td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}

.doc-article th {
  background: rgba(53, 85, 58, 0.08);
  color: var(--forest);
}

.doc-article td a {
  color: var(--forest);
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.doc-article td a:hover {
  color: #27442c;
}

.footer {
  padding: 32px 0 42px;
}

.footer-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(34, 50, 35, 0.96) 0%, rgba(22, 34, 25, 0.96) 100%);
  color: rgba(255, 248, 238, 0.94);
  box-shadow: 0 22px 48px rgba(24, 35, 27, 0.22);
}

.footer-card strong {
  display: block;
  font-size: 18px;
}

.footer-card p,
.footer-card a,
.footer-card span {
  color: rgba(255, 249, 241, 0.76);
  font-size: 14px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a:hover {
  color: #fff9f1;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-lines div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(53, 81, 58, 0.06);
}

.contact-lines strong {
  display: block;
  font-size: 14px;
  color: var(--forest);
}

.contact-lines span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.table-wrap {
  overflow-x: auto;
}

.muted {
  color: var(--muted);
}

.spacer-top {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .landing-stage,
  .value-band,
  .compact-links-card {
    grid-template-columns: 1fr;
  }

  .feature-showcase-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase-large,
  .wood-tone,
  .forest-tone,
  .dark-tone {
    grid-column: auto;
  }

  .landing-stage {
    min-height: auto;
    padding: 22px;
    max-height: none;
  }

  .landing-aside {
    min-width: 0;
  }

  .landing-content {
    padding-top: 18px;
  }

  .landing-title {
    font-size: 36px;
  }

  .hero-grid,
  .feature-grid,
  .two-grid,
  .faq-grid,
  .support-grid,
  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .doc-article,
  .panel,
  .feature-card,
  .faq-card,
  .doc-card,
  .contact-card,
  .note-card {
    padding: 22px;
  }

  .hero-card-photo {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(14, 12, 9, 0.72) 0%, rgba(14, 12, 9, 0.48) 100%),
      url("/static/bgimg1.png") center center / cover no-repeat;
  }

  .compact-links-card {
    align-items: flex-start;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero {
    padding-top: 24px;
  }

  .hero-card {
    border-radius: 28px;
    padding: 20px;
  }

  .landing-hero {
    padding-top: 18px;
  }

  .landing-stage {
    border-radius: 28px;
  }

  .landing-aside-card {
    padding: 16px;
    border-radius: 22px;
  }

  .landing-aside-card span {
    font-size: 16px;
  }

  .landing-title {
    font-size: 30px;
  }

  .landing-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .feature-showcase-card {
    min-height: auto;
    padding: 22px;
  }

  .feature-showcase-card h3,
  .compact-links-card h3 {
    font-size: 24px;
  }

  .value-copy h2 {
    font-size: 30px;
  }

  .hero-card-photo {
    min-height: auto;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-text,
  .feature-card p,
  .faq-card p,
  .doc-card p,
  .contact-card p,
  .note-card p,
  .panel p,
  .panel li,
  .doc-article p,
  .doc-article li {
    font-size: 14px;
  }

  .footer-card {
    padding: 20px;
  }
}
