:root {
  --green: #06c755;
  --green-dark: #05a947;
  --green-soft: #e9fff0;
  --ink: #101318;
  --muted: #626b76;
  --line: #e8edf2;
  --surface: #ffffff;
  --warm: #fff7ec;
  --cream: #f8f3ea;
  --shadow: 0 20px 60px rgba(21, 35, 28, 0.14);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #26303c;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.26);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f2f6f4;
  margin-left: auto;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
}

.hero-slide.active img {
  animation: heroZoomOut 8s ease-out forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.04) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 48%);
}

.hero-content {
  padding-top: 86px;
  color: #fff;
  max-width: var(--container);
}

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

.hero .eyebrow {
  color: #fff;
  display: inline-flex;
  padding: 7px 14px;
  background: rgba(6, 199, 85, 0.86);
  border-radius: 999px;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 199, 85, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
}

.section-pad {
  padding: 92px 0;
}

.intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 + p,
.article-content h2 + p {
  margin-top: 18px;
  font-size: 17px;
}

.feature-grid {
  background: linear-gradient(180deg, #f8fbf8, #fff);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, #f4fff7, #fff);
  padding: 18px 10px 0;
}

.feature-card div {
  padding: 24px 24px 28px;
}

.feature-card p {
  margin-top: 10px;
}

.product-band {
  background: var(--green);
  color: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 50px;
  align-items: center;
}

.product-layout.reverse {
  grid-template-columns: 1.35fr 0.9fr;
}

.product-band .section-kicker,
.product-band h2,
.product-band p,
.product-band li {
  color: #fff;
}

.copy-panel {
  min-width: 0;
}

.copy-panel h2 + p {
  margin-top: 20px;
  font-size: 17px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 9px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.product-image {
  margin: 0;
}

.product-image img {
  width: 100%;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.2));
}

.call-band {
  background: #0fc764;
  color: #fff;
  overflow: hidden;
}

.call-band .section-kicker,
.call-band h2,
.call-band p {
  color: #fff;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stat-row div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.stat-row strong,
.stat-row span {
  display: block;
  color: #fff;
}

.stat-row strong {
  font-size: 24px;
  line-height: 1.2;
}

.stat-row span {
  margin-top: 4px;
  font-size: 13px;
}

.life {
  background: var(--cream);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.life-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.life-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.life-card:not(.wide) img {
  aspect-ratio: 1 / 1;
}

.life-card div {
  padding: 24px 28px 30px;
}

.life-card p {
  margin-top: 10px;
}

.security {
  background: #fff;
}

.security-banner {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.security-banner img {
  width: 100%;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.security-grid article {
  padding: 26px;
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.security-grid p {
  margin-top: 10px;
}

.download {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 218, 133, 0.3), transparent 34%),
    linear-gradient(135deg, #f7fff9, var(--warm));
}

.download-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.download-inner h2 + p {
  margin-top: 18px;
  font-size: 17px;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.download-card {
  display: block;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.device-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  margin-bottom: 20px;
}

.device-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.download-card strong,
.download-card small {
  display: block;
}

.download-card strong {
  font-size: 19px;
}

.download-card small {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.article {
  background: #fff;
}

.article-content {
  max-width: 900px;
}

.article-content p + p {
  margin-top: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  background: #f2f7f4;
  color: #33423a;
  border: 1px solid #dfe9e3;
  border-radius: 999px;
  font-size: 14px;
}

.faq {
  background: #f8fbf9;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
  color: var(--ink);
}

.faq-list p {
  padding: 0 24px 22px;
}

.site-footer {
  background: #111914;
  color: #d8e3dc;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.footer-brand .brand-mark {
  background: rgba(6, 199, 85, 0.16);
}

.footer-brand strong,
.site-footer h3 {
  color: #fff;
}

.site-footer p,
.site-footer small,
.site-footer a,
.footer-bottom {
  color: #b8c5be;
}

.site-footer p {
  max-width: 460px;
  margin-top: 16px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px 20px;
}

.site-footer nav a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .product-layout,
  .product-layout.reverse,
  .download-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-layout.reverse .product-image {
    order: 2;
  }

  .product-layout.reverse .copy-panel {
    order: 1;
  }

  .tiles,
  .security-grid,
  .download-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.66)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.05));
  }

  .hero-content {
    padding-top: 160px;
    align-self: end;
    padding-bottom: 100px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .tiles,
  .life-grid,
  .security-grid,
  .download-cards,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .life-card.wide {
    grid-column: auto;
  }

  .product-layout {
    gap: 30px;
  }

  .security-banner {
    overflow-x: auto;
  }

  .security-banner img {
    width: 890px;
    max-width: none;
  }

  .download-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Download resource page */
.download-page {
  background: #fff;
}

.download-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 126px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 244, 220, 0.95), transparent 34%),
    linear-gradient(135deg, #f7fff9 0%, #effff5 48%, #ffffff 100%);
}

.download-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 46%;
  background: linear-gradient(90deg, rgba(6, 199, 85, 0.12), rgba(6, 199, 85, 0.34), rgba(88, 210, 154, 0.12));
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.download-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.download-hero-copy {
  min-width: 0;
}

.download-hero .eyebrow {
  color: var(--green-dark);
}

.download-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.download-hero h1 + p {
  max-width: 610px;
  margin-top: 22px;
  font-size: 18px;
  color: #40504a;
}

.btn-ghost-dark {
  background: #fff;
  border: 1px solid rgba(16, 19, 24, 0.12);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.download-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}

.download-highlights div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 199, 85, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.download-highlights dt {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.download-highlights dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.download-hero-art {
  margin: 0;
  min-width: 0;
}

.download-hero-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(25, 98, 62, 0.18);
}

.version-section {
  background: #fff;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.version-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.version-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 199, 85, 0.3);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

.version-card.featured {
  background: linear-gradient(180deg, #f1fff5, #fff);
  border-color: rgba(6, 199, 85, 0.36);
}

.version-card.caution {
  background: linear-gradient(180deg, #fffaf0, #fff);
}

.version-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  margin-bottom: 20px;
}

.version-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.version-card h3 {
  font-size: 24px;
}

.version-card p {
  margin-top: 10px;
}

.version-card ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: #46524d;
  font-size: 14px;
}

.version-card li {
  position: relative;
  padding-left: 18px;
}

.version-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 5px 10px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.download-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.download-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.download-showcase {
  background:
    radial-gradient(circle at 84% 10%, rgba(6, 199, 85, 0.13), transparent 28%),
    #f7fbf8;
}

.showcase-grid,
.secure-layout,
.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
}

.showcase-copy h2 + p,
.secure-layout h2 + p,
.social-grid h2 + p {
  margin-top: 18px;
  font-size: 17px;
}

.showcase-grid figure,
.secure-layout figure,
.social-grid figure {
  margin: 0;
}

.showcase-grid img,
.secure-layout img,
.social-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.09);
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-points span {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(6, 199, 85, 0.2);
  border-radius: 999px;
  color: #2d4237;
  font-weight: 800;
  font-size: 14px;
}

.resource-info {
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)),
    url("../../../images/download/background.png") center / cover no-repeat;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.guide-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.guide-grid p {
  margin-top: 10px;
}

.download-scenes {
  background: #fff;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scene-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scene-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.scene-card div {
  padding: 26px 28px 30px;
}

.scene-card p:not(.section-kicker) {
  margin-top: 10px;
}

.security-download {
  background: linear-gradient(180deg, #f8fbf8, #effff5);
}

.secure-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.dark-check li {
  color: #26342e;
}

.dark-check li::before {
  background: var(--green);
}

.dark-check li::after {
  border-color: #fff;
}

.compare-section {
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #fff;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #f3fff6;
  color: #20352a;
  font-weight: 900;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td:first-child {
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}

.social-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 218, 133, 0.24), transparent 28%),
    linear-gradient(135deg, #fff, #f6fff9);
}

.social-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.app-footer {
  background: #fff;
  color: var(--ink);
  padding: 42px 0 30px;
  border-top: 1px solid var(--line);
}

.app-footer a {
  color: var(--ink);
}

.footer-product-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-app-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--green);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.22);
}

.app-footer .footer-app-mark,
.app-footer .footer-app-mark:hover {
  color: #fff;
}

.footer-products {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-products a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 15px;
  border-left: 1px solid #dfe5ea;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s ease;
}

.footer-products a:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-products a:hover {
  color: var(--green-dark);
}

.footer-products svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-divider {
  margin: 30px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: #25302a;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-legal a {
  padding: 0 13px;
  border-left: 1px solid #dfe5ea;
  color: #111;
}

.footer-legal a:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-legal a:hover {
  color: var(--green-dark);
}

.footer-meta-row address {
  margin: 0 0 0 auto;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .download-hero-grid,
  .showcase-grid,
  .secure-layout,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .download-hero-art {
    order: -1;
  }

  .version-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .download-hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .download-highlights,
  .version-grid,
  .guide-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .version-card,
  .guide-grid article {
    padding: 22px;
  }

  .scene-card div {
    padding: 22px;
  }

  .footer-product-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-products a {
    border-left: 0;
    padding: 7px 13px 7px 0;
  }

  .footer-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta-row address {
    margin-left: 0;
  }
}
