/* 熊猫 VPN · xiongmao-cloud.com — 常规产品站样式 */

:root {
  --xm-black: #0d0d0d;
  --xm-white: #ffffff;
  --xm-bamboo: #4caf50;
  --xm-bamboo-dark: #388e3c;
  --xm-gray-50: #f7f8f7;
  --xm-gray-200: #e8ebe8;
  --xm-gray-600: #5c6560;
  --xm-text: #1a1f1c;
  --xm-max: 1120px;
  --xm-radius: 10px;
  --xm-font: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--xm-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--xm-text);
  background: var(--xm-white);
}

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

a {
  color: var(--xm-bamboo-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--xm-black);
}

.container {
  width: min(100% - 32px, var(--xm-max));
  margin-inline: auto;
}

/* —— 顶栏 —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--xm-gray-200);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.site-logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--xm-black);
  text-decoration: none;
}

.site-logo span {
  color: var(--xm-bamboo-dark);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.site-nav a {
  color: var(--xm-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--xm-bamboo-dark);
  text-decoration: underline;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--xm-bamboo);
  color: var(--xm-black) !important;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid var(--xm-black);
  box-shadow: 3px 3px 0 var(--xm-black);
}

.site-nav__cta:hover {
  background: var(--xm-white);
  color: var(--xm-black) !important;
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* —— 首屏 —— */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(165deg, var(--xm-gray-50) 0%, var(--xm-white) 55%);
  border-bottom: 1px solid var(--xm-gray-200);
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  color: var(--xm-gray-600);
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: var(--xm-radius);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--xm-bamboo);
  color: var(--xm-black);
  border-color: var(--xm-black);
  box-shadow: 4px 4px 0 var(--xm-black);
}

.btn--primary:hover {
  background: var(--xm-white);
  color: var(--xm-black);
}

.btn--ghost {
  background: var(--xm-white);
  color: var(--xm-text);
  border-color: var(--xm-gray-200);
}

.btn--ghost:hover {
  border-color: var(--xm-black);
}

.hero__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--xm-gray-600);
  max-width: 36rem;
}

.hero__panel {
  border: 2px solid var(--xm-black);
  border-radius: var(--xm-radius);
  background: var(--xm-white);
  padding: 1.25rem 1.35rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
}

.hero__panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--xm-gray-600);
}

.hero__panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero__panel li {
  margin-bottom: 0.45rem;
}

/* —— 区块通用 —— */
.section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.section--alt {
  background: var(--xm-gray-50);
  border-block: 1px solid var(--xm-gray-200);
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.section__intro {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  color: var(--xm-gray-600);
}

/* —— 特性卡片 —— */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--xm-gray-200);
  border-radius: var(--xm-radius);
  background: var(--xm-white);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--xm-gray-600);
}

/* —— 下载条 —— */
.download-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.download-strip a {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--xm-black);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--xm-black);
  text-decoration: none;
  background: var(--xm-white);
}

.download-strip a:hover {
  background: var(--xm-bamboo);
}

/* —— 页脚 —— */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: var(--xm-black);
  color: #c8d0cc;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--xm-bamboo);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-footer__grid {
    grid-template-columns: 1.35fr 1.15fr 0.9fr 0.9fr;
  }
}

.site-footer__title {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9590;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer__address {
  margin: 0;
  font-style: normal;
  line-height: 1.75;
  color: #c8d0cc;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #333;
  font-size: 0.82rem;
  color: #8a9590;
}

/* —— 文章页 —— */
.article-page {
  padding: 2rem 0 3rem;
}

.article-page__meta {
  font-size: 0.9rem;
  color: var(--xm-gray-600);
  margin-bottom: 0.5rem;
}

.article-page h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--xm-black);
}

.prose h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose hr {
  border: none;
  height: 3px;
  background: var(--xm-black);
  margin: 2rem 0;
}

.prose code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9em;
  background: var(--xm-gray-50);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.article-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border: 2px solid var(--xm-black);
  border-radius: var(--xm-radius);
  background: var(--xm-gray-50);
}

.article-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

/* —— 帮助中心页 —— */
.blog-hub {
  padding-bottom: 3rem;
}

.blog-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    radial-gradient(circle at top right, rgba(76, 175, 80, 0.18), transparent 34%),
    linear-gradient(180deg, #f8fbf8 0%, #ffffff 100%);
  border-bottom: 1px solid var(--xm-gray-200);
}

.blog-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .blog-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.blog-hero__lead {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--xm-gray-600);
}

.blog-hero__panel {
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #0f1511 0%, #19221c 100%);
  color: #f2f6f3;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.blog-hero__panel h2 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: #b7cbb8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-hero__panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.blog-hero__panel li {
  margin-bottom: 0.6rem;
}

.guide-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 960px) {
  .guide-toolbar {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.guide-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--xm-black);
  background: var(--xm-white);
  color: var(--xm-text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.topic-chip:hover,
.topic-chip.is-active {
  background: var(--xm-black);
  color: var(--xm-white);
  transform: translateY(-1px);
}

.blog-overview {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .blog-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .blog-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.overview-card {
  display: block;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--xm-gray-200);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
  color: var(--xm-text);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.overview-card__count {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--xm-bamboo-dark);
}

.overview-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.overview-card p {
  margin: 0 0 0.7rem;
  color: var(--xm-gray-600);
  font-size: 0.95rem;
}

.overview-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

.guide-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--xm-gray-200);
  border-radius: 18px;
  background: var(--xm-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.guide-card.is-hidden {
  display: none;
}

.guide-card__tag {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--xm-bamboo-dark);
}

.guide-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.guide-card p {
  margin: 0;
  color: var(--xm-gray-600);
  font-size: 0.96rem;
}

.guide-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: auto;
  font-size: 0.86rem;
  color: var(--xm-gray-600);
}

/* —— 法律页长文 —— */
.legal-page {
  padding: 2rem 0 3rem;
}

.legal-page h1 {
  margin: 0 0 1rem;
}

.legal-page .prose h2 {
  font-size: 1.1rem;
  border-top: none;
  margin-top: 1.75rem;
}

.legal-page .muted {
  color: var(--xm-gray-600);
  font-size: 0.95rem;
}

/* —— 首页改版：产品官网表达 —— */
.hero {
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(112, 214, 118, 0.22), transparent 0 26%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #09110c 0%, #0f1b14 52%, #15261c 100%);
  color: #f2f7f1;
  border-bottom: none;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 980px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.5rem;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #bfe4c1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero__lead {
  margin: 0 0 1.15rem;
  max-width: 42rem;
  font-size: 1.08rem;
  color: rgba(242, 247, 241, 0.78);
}

.hero__trustlist {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.hero__trustlist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(242, 247, 241, 0.9);
}

.hero__trustlist li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #7fdf73 0%, #4caf50 100%);
  box-shadow: 0 0 0 5px rgba(91, 187, 95, 0.18);
}

.hero .btn--primary {
  background: linear-gradient(180deg, #6dd66f 0%, #49ad4d 100%);
  color: #08110c;
  box-shadow: 0 12px 24px rgba(60, 150, 68, 0.24);
}

.hero .btn--primary:hover {
  background: #ffffff;
}

.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f2f7f1;
}

.hero .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero__microcopy {
  margin: 0 0 1rem;
  color: rgba(242, 247, 241, 0.62);
  font-size: 0.92rem;
}

.hero__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eff5ef;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__panel {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  padding: 1.1rem;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero__panel-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(8, 14, 10, 0.55);
}

.hero__panel-label {
  margin: 0 0 0.55rem;
  color: #a8d7ab;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__panel h2 {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero__steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: rgba(242, 247, 241, 0.82);
}

.hero__steps li + li {
  margin-top: 0.45rem;
}

.hero__panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__panel-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__panel-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
  line-height: 1;
  color: #ffffff;
}

.metric-card span {
  display: block;
  color: rgba(242, 247, 241, 0.72);
  font-size: 0.9rem;
}

.section--mist {
  background:
    radial-gradient(circle at top left, rgba(76, 175, 80, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faf7 0%, #ffffff 100%);
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head--split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.feature-card__kicker {
  margin: 0 0 0.45rem;
  color: var(--xm-bamboo-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--xm-gray-600);
}

.scenario-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.scenario-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.6rem 1.45rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  border: 1px solid var(--xm-gray-200);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.05);
}

.scenario-card--dark {
  background:
    radial-gradient(circle at top right, rgba(109, 214, 111, 0.18), transparent 34%),
    linear-gradient(145deg, #0d1610 0%, #17241b 100%);
  border-color: transparent;
  color: #f2f7f1;
}

.scenario-card--accent {
  background:
    radial-gradient(circle at top right, rgba(76, 175, 80, 0.12), transparent 36%),
    linear-gradient(180deg, #f4faf4 0%, #ffffff 100%);
}

.scenario-card__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--xm-bamboo-dark);
}

.scenario-card--dark .scenario-card__kicker {
  color: #a8d7ab;
}

.scenario-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.32rem;
  line-height: 1.2;
}

.scenario-card p {
  margin: 0 0 1rem;
  color: var(--xm-gray-600);
}

.scenario-card--dark p {
  color: rgba(242, 247, 241, 0.8);
}

.scenario-card a {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
}

.scenario-card--dark a {
  color: #86db8b;
}

.scenario-card--dark a:hover {
  color: #f2f7f1;
}

.support-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.support-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.3rem 1.2rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--xm-gray-200);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.support-card__meta {
  margin: 0 0 0.45rem;
  color: var(--xm-bamboo-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.support-card p {
  margin: 0 0 0.8rem;
  color: var(--xm-gray-600);
}

.support-card__example {
  margin-bottom: 1rem;
}

.support-card__link {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(111, 214, 115, 0.16), transparent 26%),
    linear-gradient(135deg, #09110c 0%, #111f17 100%);
  border-block: none;
}

.section--dark .section__title,
.section--dark .download-panel__eyebrow {
  color: #ffffff;
}

.section--dark .section__intro {
  color: rgba(242, 247, 241, 0.72);
}

.download-panel {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .download-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

.download-panel__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfe4c1;
}

.platform-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 96px;
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.platform-card strong {
  font-size: 1rem;
}

.platform-card span {
  color: rgba(242, 247, 241, 0.74);
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .hero h1 {
    max-width: none;
  }

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