.page-home {
  --home-green: #8BC34A;
  --home-yellow: #FFC107;
  --home-cream: #FAF6EF;
  --home-dark: #2B2926;
  --home-gray: #333333;
  --home-leaf: #5B8C2A;
  --home-gold: #B8860B;
  --home-tomato: #E85D3D;
  --home-white: #FFFFFF;
  --home-shadow: 0 8px 24px rgba(43, 41, 38, 0.10);
  --home-shadow-green: 0 8px 24px rgba(139, 195, 74, 0.35);
  --home-shadow-yellow: 0 8px 24px rgba(255, 193, 7, 0.30);
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-sm: 8px;
  --home-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--home-cream);
}

/* ===== 首屏 Hero ===== */
.page-home__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 24px 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.page-home__hero::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.18), transparent 65%);
  pointer-events: none;
}

.page-home__hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.page-home__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--title-font, "Nunito", sans-serif);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--home-leaf);
  background: var(--home-white);
  border: 1px solid rgba(139, 195, 74, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.page-home__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--home-green);
  border-radius: 50%;
}

.page-home__hero-title {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--home-dark);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.page-home__hero-title br {
  display: none;
}

.page-home__hero-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--home-green), var(--home-yellow));
  border-radius: 4px;
}

.page-home__hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--home-gray);
  max-width: 34em;
  margin-bottom: 1.5rem;
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-home__hero-actions .btn {
  min-height: 44px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--home-ease), box-shadow 0.25s var(--home-ease), background 0.25s var(--home-ease);
}

.page-home__hero-actions .btn-primary {
  background: var(--home-green);
  color: var(--home-dark);
}

.page-home__hero-actions .btn-primary:hover,
.page-home__hero-actions .btn-primary:focus-visible {
  background: #9CCC57;
  box-shadow: var(--home-shadow-green);
  transform: translateY(-2px);
  outline: none;
}

.page-home__hero-actions .btn-secondary {
  background: var(--home-white);
  color: var(--home-leaf);
  border: 2px solid var(--home-green);
}

.page-home__hero-actions .btn-secondary:hover,
.page-home__hero-actions .btn-secondary:focus-visible {
  background: rgba(139, 195, 74, 0.12);
  box-shadow: var(--home-shadow);
  transform: translateY(-2px);
  outline: none;
}

.page-home__hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-home__hero-points li {
  font-size: 0.8125rem;
  color: var(--home-dark);
  background: rgba(139, 195, 74, 0.14);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-weight: 700;
}

.page-home__hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.page-home__orb {
  width: min(320px, 80%);
  aspect-ratio: 1;
  position: relative;
  animation: page-home-float 5s ease-in-out infinite alternate;
}

.page-home__orb svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-6deg);
  transition: transform 1.2s var(--home-ease);
}

.page-home__orb:hover svg {
  transform: rotate(6deg) scale(1.02);
}

.page-home__orb-annotation {
  position: absolute;
  right: -6%;
  top: 12%;
  color: var(--home-gold);
  font-family: var(--annotation-font, "Noto Serif SC", serif);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  opacity: 0.85;
}

.page-home__orb-annotation::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  background: var(--home-gold);
  opacity: 0.4;
  margin-top: 8px;
}

@keyframes page-home-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ===== 本季度更新重点 ===== */
.page-home__updates {
  padding: 3.5rem 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home__section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home__section-title {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--home-dark);
  margin: 0.5rem 0 0;
}

.page-home__more-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--home-leaf);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--home-ease), color 0.25s var(--home-ease);
}

.page-home__more-link::after {
  content: "→";
  transition: transform 0.25s var(--home-ease);
}

.page-home__more-link:hover,
.page-home__more-link:focus-visible {
  color: var(--home-dark);
  border-bottom-color: var(--home-green);
}

.page-home__more-link:hover::after,
.page-home__more-link:focus-visible::after {
  transform: translateX(4px);
}

.page-home__updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home__update-card {
  border-radius: var(--home-radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}

.page-home__update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow);
}

.page-home__update-card--yellow {
  background: var(--home-yellow);
}

.page-home__update-card--yellow:hover {
  box-shadow: var(--home-shadow-yellow);
}

.page-home__update-card--green {
  background: var(--home-green);
  color: var(--home-dark);
}

.page-home__update-card--green:hover {
  box-shadow: var(--home-shadow-green);
}

.page-home__update-card--cream {
  background: var(--home-white);
  border: 1px solid rgba(43, 41, 38, 0.08);
}

.page-home__update-number {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 0.8125rem;
  font-weight: 800;
  color: rgba(43, 41, 38, 0.55);
  letter-spacing: 0.08em;
}

.page-home__update-card h3 {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--home-dark);
  margin: 0;
}

.page-home__update-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--home-gray);
  margin: 0;
  flex-grow: 1;
}

.page-home__update-card .btn {
  align-self: flex-start;
  margin-top: 0.375rem;
}

/* ===== Bento 常用功能速览 ===== */
.page-home__bento {
  padding: 1rem 24px 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home__bento-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home__bento-intro {
  max-width: 28em;
  font-size: 0.9375rem;
  color: var(--home-gray);
  line-height: 1.6;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bento-card {
  border-radius: var(--home-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
  min-height: 180px;
  box-sizing: border-box;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
}

.bento-card-green {
  background: var(--home-green);
  color: var(--home-dark);
}

.bento-card-green:hover {
  box-shadow: var(--home-shadow-green);
}

.bento-card-yellow {
  background: var(--home-yellow);
  color: var(--home-dark);
}

.bento-card-yellow:hover {
  box-shadow: var(--home-shadow-yellow);
}

.bento-card-cream {
  background: var(--home-white);
  border: 1px solid rgba(43, 41, 38, 0.08);
  color: var(--home-dark);
}

.bento-card-dark {
  background: var(--home-dark);
  color: var(--home-white);
}

.bento-card-dark:hover {
  box-shadow: var(--home-shadow-lg, 0 16px 40px rgba(43, 41, 38, 0.16));
}

.bento-card-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--home-dark);
}

.bento-card-glass:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--home-shadow);
}

.page-home__bento-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--home-leaf);
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  box-shadow: 0 2px 8px rgba(43, 41, 38, 0.08);
  transition: background 0.25s var(--home-ease), color 0.25s var(--home-ease);
}

.bento-card-green .page-home__bento-icon,
.bento-card-yellow .page-home__bento-icon {
  background: var(--home-white);
  color: var(--home-leaf);
}

.bento-card-dark .page-home__bento-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--home-yellow);
}

.bento-card:hover .page-home__bento-icon {
  background: var(--home-leaf);
  color: var(--home-white);
}

.bento-card h3 {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 1.1875rem;
  font-weight: 800;
  margin: 0;
  color: inherit;
}

.bento-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: inherit;
  flex-grow: 1;
  opacity: 0.9;
}

.page-home__bento-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 0.875rem;
  font-weight: 800;
  color: inherit;
  margin-top: 0.25rem;
  transition: gap 0.25s var(--home-ease);
}

.page-home__bento-more::after {
  content: "→";
  font-size: 1.1em;
}

.bento-card:hover .page-home__bento-more {
  gap: 10px;
}

.page-home__bento-num {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: inherit;
  line-height: 1.2;
}

.page-home__bento-feature {
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.28) 0%, transparent 45%),
    linear-gradient(135deg, #8BC34A, #7CB342 100%);
}

.page-home__bento-save {
  background-image:
    radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.3) 0%, transparent 45%),
    linear-gradient(135deg, #FFC107, #FFB300 100%);
}

.page-home__bento-history {
  background-image:
    radial-gradient(circle at 12% 80%, rgba(139, 195, 74, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #2B2926, #3E3A36 100%);
}

.page-home__bento-legacy {
  background-image:
    radial-gradient(circle at 85% 90%, rgba(139, 195, 74, 0.15) 0%, transparent 45%),
    repeating-linear-gradient(-45deg, rgba(139, 195, 74, 0.04) 0px, rgba(139, 195, 74, 0.04) 2px, transparent 2px, transparent 8px);
}

.page-home__bento-speed {
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255, 193, 7, 0.12) 0%, transparent 45%),
    linear-gradient(160deg, rgba(139, 195, 74, 0.08), transparent 60%);
}

/* ===== 数据与服务能力 ===== */
.page-home__stats {
  background: linear-gradient(150deg, #2B2926 0%, #1E1C19 100%);
  color: var(--home-white);
  padding: 4rem 24px;
  position: relative;
  overflow: hidden;
}

.page-home__stats::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.2), transparent 65%);
  pointer-events: none;
}

.page-home__stats::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent 65%);
  pointer-events: none;
}

.page-home__stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.page-home__stats .section-kicker--light {
  color: var(--home-yellow);
}

.page-home__stats-title {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  margin: 0.5rem 0 0;
}

.page-home__stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home__stat-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  transition: transform 0.3s var(--home-ease), background 0.3s var(--home-ease);
}

.page-home__stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.page-home__stat-num {
  display: block;
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--home-yellow);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.page-home__stat-label {
  display: block;
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--home-white);
}

.page-home__stat-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-home__stats-timeline {
  border-left: 3px solid rgba(139, 195, 74, 0.5);
  padding: 0.25rem 0 0.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-home__timeline-item {
  position: relative;
}

.page-home__timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-green);
  border: 3px solid var(--home-dark);
  box-shadow: 0 0 0 2px rgba(139, 195, 74, 0.5);
}

.page-home__timeline-item h3 {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  color: var(--home-white);
}

.page-home__timeline-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 36em;
}

/* ===== 品牌承诺与支持 ===== */
.page-home__trust {
  padding: 4rem 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.page-home__trust-card {
  border-radius: 28px;
  padding: 2rem;
  background: var(--home-white);
  border: 1px solid rgba(43, 41, 38, 0.08);
  box-shadow: 0 4px 20px rgba(43, 41, 38, 0.05);
}

.page-home__trust-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--home-gray);
  margin: 1.25rem 0 1.5rem;
  max-width: 36em;
}

.page-home__trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home__trust-actions .btn {
  min-height: 44px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--home-ease), box-shadow 0.25s var(--home-ease), background 0.25s var(--home-ease);
}

.page-home__trust-actions .btn-primary {
  background: var(--home-green);
  color: var(--home-dark);
}

.page-home__trust-actions .btn-primary:hover,
.page-home__trust-actions .btn-primary:focus-visible {
  background: #9CCC57;
  box-shadow: var(--home-shadow-green);
  transform: translateY(-2px);
  outline: none;
}

.page-home__trust-actions .btn-dark {
  background: var(--home-dark);
  color: var(--home-white);
}

.page-home__trust-actions .btn-dark:hover,
.page-home__trust-actions .btn-dark:focus-visible {
  background: #4A453F;
  box-shadow: var(--home-shadow);
  transform: translateY(-2px);
  outline: none;
}

.page-home__trust-side {
  border-radius: 28px;
  padding: 2rem;
  background: linear-gradient(150deg, rgba(139, 195, 74, 0.2), rgba(255, 193, 7, 0.14));
  border: 1px solid rgba(139, 195, 74, 0.3);
}

.page-home__trust-side h3 {
  font-family: var(--title-font, "Nunito", "Noto Sans SC", sans-serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--home-dark);
  margin: 0 0 1rem;
}

.page-home__trust-links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.575rem;
}

.page-home__trust-links a {
  font-size: 0.9375rem;
  color: var(--home-dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--home-ease), transform 0.2s var(--home-ease);
}

.page-home__trust-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--home-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home__trust-links a:hover,
.page-home__trust-links a:focus-visible {
  color: var(--home-leaf);
  transform: translateX(4px);
  outline: none;
}

.page-home__trust-note {
  font-size: 0.875rem;
  color: var(--home-gray);
  line-height: 1.6;
  margin: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  border-left: 3px solid var(--home-yellow);
}

/* ===== 图片占位匹配样式 ===== */
.page-home__card-figure {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(43, 41, 38, 0.08);
}

.page-home__trust-figure {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 1.25rem auto 0;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(43, 41, 38, 0.12);
}

/* ===== 响应式 ===== */
@media (min-width: 360px) {
  .page-home__hero-title br {
    display: inline;
  }

  .page-home__updates-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .page-home__hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    padding-top: 3.5rem;
  }

  .page-home__orb {
    width: min(420px, 90%);
  }

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

  .page-home__update-card--yellow {
    grid-column: 1 / -1;
  }

  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .bento-card.col-span-4,
  .bento-card.col-span-5,
  .bento-card.col-span-7,
  .bento-card.col-span-8 {
    grid-column: span 3;
  }

  .page-home__bento-feature {
    grid-column: span 6;
  }

  .page-home__bento-save {
    grid-column: span 3;
  }

  .page-home__bento-history {
    grid-column: span 3;
  }

  .page-home__bento-mini {
    grid-column: span 3;
  }

  .page-home__bento-legacy,
  .page-home__bento-speed {
    grid-column: span 3;
  }

  .page-home__stats-inner {
    grid-template-columns: 1fr;
  }

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

  .page-home__trust {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .page-home__hero {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    gap: 2rem;
  }

  .page-home__hero-copy {
    padding-top: 0;
  }

  .page-home__hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }

  .page-home__orb {
    width: min(500px, 95%);
  }

  .page-home__updates {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .page-home__updates-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home__update-card--yellow {
    grid-column: auto;
  }

  .page-home__bento {
    padding-bottom: 6rem;
  }

  .page-home__bento-feature {
    grid-column: span 5;
  }

  .page-home__bento-mini {
    grid-column: span 6 / auto;
  }

  .page-home__bento-save {
    grid-column: span 4;
  }

  .page-home__bento-history {
    grid-column: span 8;
  }

  .page-home__bento-legacy {
    grid-column: span 3;
  }

  .page-home__bento-speed {
    grid-column: span 5;
  }

  .page-home__stats-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .page-home__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
  }

  .page-home__stats-timeline {
    border-left: 3px solid rgba(139, 195, 74, 0.5);
    padding-left: 1.75rem;
  }

  .page-home__trust {
    padding-top: 5rem;
    padding-bottom: 5rem;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home__orb {
    animation: page-home-float 5s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home__orb {
    animation: none;
  }

  .page-home__hero {
    scroll-behavior: auto;
  }
}

.page-home {
  --home-shadow-lg: var(--home-shadow);
}
