.page-home {
  --home-hero-bg: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(237, 245, 255, 0.94) 52%, rgba(224, 231, 255, 0.86) 100%);
  --home-blue-deep: #1E3A8A;
  --home-blue-bright: #3B82F6;
  --home-purple-glow: rgba(155, 81, 224, 0.22);
  --home-orange-glow: rgba(255, 138, 0, 0.20);
  --home-blue-glow: rgba(42, 109, 234, 0.20);
  --home-card-radius: 28px;
  --home-panel-radius: 24px;
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  overflow-x: clip;
  background: var(--white);
}

.page-home .cloud-topo {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 640px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-home .cloud-shape {
  position: absolute;
  display: block;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.42));
  filter: blur(8px);
  opacity: 0.5;
}

.page-home .cloud-a {
  width: 480px;
  height: 160px;
  top: 80px;
  right: -60px;
  transform: rotate(-8deg);
}

.page-home .cloud-b {
  width: 300px;
  height: 100px;
  top: 280px;
  right: 280px;
  opacity: 0.34;
}

.page-home .cloud-c {
  width: 220px;
  height: 80px;
  top: 470px;
  right: 40px;
  transform: rotate(6deg);
  opacity: 0.3;
}

.page-home .hero-cover {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 48px 20px 36px;
  background: var(--home-hero-bg);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

.page-home .hero-kicker {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-home .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: var(--radius-pill);
}

.page-home .hero-title {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .title-word {
  display: block;
}

.page-home .gradient-word {
  background: linear-gradient(100deg, var(--blue-deep) 0%, var(--blue-bright) 40%, var(--purple) 78%, var(--orange) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 6px;
}

.page-home .hero-lede {
  max-width: 36rem;
  margin: 0 0 30px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 400;
}

.page-home .hero-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.page-home .index-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-soft);
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.32s var(--home-ease), box-shadow 0.32s var(--home-ease), border-color 0.32s var(--home-ease);
  box-shadow: var(--shadow-sm);
}

.page-home .index-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 109, 234, 0.34);
}

.page-home .chip-num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
}

.page-home .chip-text {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 500;
}

.page-home .chip-arrow {
  font-size: 1.05rem;
  color: var(--purple);
  transition: transform 0.3s var(--home-ease);
}

.page-home .index-chip:hover .chip-arrow {
  transform: translate(3px, -3px);
}

.page-home .hero-visual {
  position: relative;
}

.page-home .visual-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.page-home .visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.02) 0%, rgba(30, 58, 138, 0.06) 100%);
  pointer-events: none;
}

.page-home .hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .visual-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-home .orb-one {
  width: 90px;
  height: 90px;
  top: -18px;
  right: -10px;
  background: radial-gradient(circle at 35% 35%, rgba(155, 81, 224, 0.30), rgba(155, 81, 224, 0.06));
}

.page-home .orb-two {
  width: 54px;
  height: 54px;
  bottom: 42px;
  left: -14px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 138, 0, 0.26), rgba(255, 138, 0, 0.05));
}

.page-home .visual-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.page-home .visual-tag--blue {
  top: 18px;
  left: 16px;
}

.page-home .visual-tag--orange {
  bottom: 22px;
  right: 16px;
}

.page-home .tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

.page-home .visual-tag--orange .tag-dot {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.16);
}

.page-home .hero-desc-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-left: 4px;
}

.page-home .note-line {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .note-line::before {
  content: "";
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue-bright));
  border-radius: var(--radius-pill);
}

.page-home .breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 22px 20px 0;
  font-size: 0.84rem;
}

.page-home .crumb-current {
  font-weight: 600;
  color: var(--dark);
}

.page-home .breadcrumb-sep {
  color: #C0C8D4;
}

.page-home .crumb-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.24s var(--home-ease);
}

.page-home .crumb-link:hover {
  color: var(--purple);
}

.page-home .zone-card {
  position: relative;
  z-index: 1;
  margin: 30px 20px 0;
  border-radius: var(--home-card-radius);
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-home .zone-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 18px;
}

.page-home .zone-eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.page-home .zone-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.page-home .zone-intro {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 42rem;
}

.page-home .category-zone {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 48%, #F0F6FF 100%);
}

.page-home .category-grid-block {
  padding: 0 20px 28px;
}

.page-home .category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .category-card,
.page-home .category-summary-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-radius: var(--home-panel-radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(30, 58, 138, 0.10);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.4s var(--home-ease), box-shadow 0.4s var(--home-ease), border-color 0.4s var(--home-ease);
  overflow: hidden;
}

.page-home .category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  opacity: 0.9;
}

.page-home .cat-game::before {
  background: linear-gradient(90deg, var(--purple), var(--blue-bright));
}

.page-home .cat-race::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.page-home .cat-casual::before {
  background: linear-gradient(90deg, var(--orange), #FFB800);
}

.page-home .cat-board::before {
  background: linear-gradient(90deg, #7A3CE0, var(--purple));
}

.page-home .cat-sports::before {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
}

.page-home .category-card:hover,
.page-home .category-summary-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.page-home .card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  transition: transform 0.5s var(--home-ease), opacity 0.5s var(--home-ease);
}

.page-home .cat-game .card-glow {
  background: var(--home-purple-glow);
}

.page-home .cat-race .card-glow,
.page-home .cat-sports .card-glow {
  background: var(--home-blue-glow);
}

.page-home .cat-casual .card-glow {
  background: var(--home-orange-glow);
}

.page-home .cat-board .card-glow {
  background: rgba(122, 60, 224, 0.20);
}

.page-home .category-card:hover .card-glow {
  transform: scale(1.6);
  opacity: 0.9;
}

.page-home .category-icon {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(30, 58, 138, 0.08);
  transition: transform 0.4s var(--home-ease);
}

.page-home .category-card:hover .category-icon {
  transform: scale(1.05) rotate(-3deg);
}

.page-home .category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.page-home .category-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-home .cat-tag--purple {
  background: rgba(155, 81, 224, 0.12);
  color: #7A2FC8;
}

.page-home .cat-tag--blue {
  background: rgba(42, 109, 234, 0.12);
  color: var(--blue);
}

.page-home .cat-tag--orange {
  background: rgba(255, 138, 0, 0.14);
  color: #C25E00;
}

.page-home .rule-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
}

.page-home .category-name {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-home .category-desc {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
}

.page-home .category-link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.25s var(--home-ease), gap 0.25s var(--home-ease);
  margin-top: auto;
}

.page-home .category-card:hover .category-link-text {
  color: var(--purple);
  gap: 12px;
}

.page-home .category-summary-card {
  background: linear-gradient(145deg, var(--blue-deep) 0%, #243B8F 48%, #2D5BD6 100%);
  border-color: transparent;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}

.page-home .category-summary-card::before {
  display: none;
}

.page-home .summary-big-num {
  font-family: var(--font-heading);
  font-size: clamp(4.6rem, 12vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(120deg, #FFFFFF 20%, #BFDBFE 60%, #A5B4FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.page-home .summary-text {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.9);
  max-width: 18rem;
}

.page-home .summary-mini-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 40px;
  margin-bottom: 24px;
}

.page-home .mini-bar {
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(191, 219, 254, 0.32));
}

.page-home .bar-a {
  width: 14px;
  height: 24px;
}

.page-home .bar-b {
  width: 14px;
  height: 38px;
}

.page-home .bar-c {
  width: 14px;
  height: 32px;
}

.page-home .category-summary-card .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}

.page-home .category-summary-card .btn-primary:hover {
  background: #F07B00;
  border-color: #F07B00;
}

.page-home .feature-split {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 30px 20px 36px;
}

.page-home .feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.page-home .feature-row--records {
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
  padding-bottom: 36px;
}

.page-home .feature-visual {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.page-home .feature-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .feature-floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.page-home .chip-history {
  bottom: 18px;
  left: 16px;
}

.page-home .chip-export {
  top: 18px;
  right: 16px;
}

.page-home .feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .feature-content .zone-eyebrow {
  margin-bottom: 4px;
}

.page-home .feature-content .zone-title {
  margin-bottom: 12px;
}

.page-home .feature-lead {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 500;
}

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

.page-home .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--gray);
}

.page-home .feature-check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: var(--white);
  margin-top: 1px;
}

.page-home .support-zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 22px;
  background: linear-gradient(140deg, #0F1E3C 0%, var(--blue-deep) 55%, #2547B3 100%);
  border-color: transparent;
  color: var(--white);
}

.page-home .support-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(155, 81, 224, 0.24);
  filter: blur(42px);
  pointer-events: none;
}

.page-home .support-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .support-zone .zone-eyebrow {
  color: #93C5FD;
}

.page-home .support-zone .zone-title {
  color: var(--white);
  margin-bottom: 14px;
}

.page-home .support-lead {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #E0F2FE;
}

.page-home .support-text {
  margin: 0 0 22px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(219, 234, 254, 0.82);
  max-width: 34rem;
}

.page-home .support-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 24rem;
  margin-bottom: 22px;
}

.page-home .plaque-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-soft);
  background: rgba(248, 250, 252, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .contact-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93C5FD;
}

.page-home .contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  word-break: break-all;
}

.page-home .plaque-card--mail .contact-value {
  color: #BFDBFE;
}

.page-home .support-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .demo-search {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 8px 10px;
  backdrop-filter: blur(8px);
}

.page-home .search-demo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .search-icon {
  color: #93C5FD;
  display: inline-flex;
}

.page-home .search-placeholder {
  font-size: 0.92rem;
  color: rgba(226, 239, 255, 0.82);
}

.page-home .suggest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 6px 2px;
}

.page-home .suggest-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.10);
  color: #DBEAFE;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .support-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.86rem;
  color: rgba(219, 234, 254, 0.78);
}

.page-home .service-note-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.54);
  animation: page-home-pulse 2.2s infinite;
}

@keyframes page-home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.46); }
  70% { box-shadow: 0 0 0 10px rgba(255, 138, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

.page-home .trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 30px 20px 0;
  padding: 18px 22px;
  border-radius: var(--radius-soft);
  background: var(--cream);
  border: 1px solid rgba(255, 138, 0, 0.16);
  font-size: 0.88rem;
  font-weight: 500;
  color: #6B4D2E;
}

.page-home .trust-strip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.65;
}

.page-home .about-teaser {
  padding: 30px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: var(--white);
}

.page-home .teaser-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .teaser-copy .zone-title {
  margin-bottom: 16px;
}

.page-home .teaser-text {
  margin: 0 0 24px;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 35rem;
}

.page-home .teaser-visual {
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.page-home .teaser-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .back-top-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 34px 20px 20px;
}

.page-home .back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(42, 109, 234, 0.22);
  background: rgba(248, 250, 252, 0.86);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease), background 0.3s var(--home-ease);
}

.page-home .back-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.page-home .back-top-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

/* ===== Media ===== */

@media (min-width: 640px) {
  .page-home .hero-cover {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 56px 36px 44px;
    gap: 44px;
  }

  .page-home .hero-index {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .breadcrumb {
    padding-left: 36px;
    padding-right: 36px;
  }

  .page-home .zone-card {
    margin-left: 36px;
    margin-right: 36px;
  }

  .page-home .zone-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 32px 32px 20px;
  }

  .page-home .zone-intro {
    text-align: right;
  }

  .page-home .category-grid-block {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
  }

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

  .page-home .feature-split {
    padding: 36px 32px 42px;
  }

  .page-home .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-home .feature-row--records .feature-visual {
    order: 1;
  }

  .page-home .feature-row--records .feature-content {
    order: 2;
  }

  .page-home .feature-row--export .feature-visual {
    order: 2;
  }

  .page-home .feature-row--export .feature-content {
    order: 1;
  }

  .page-home .support-zone {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
    padding: 38px 32px;
  }

  .page-home .support-contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .trust-strip {
    margin-left: 36px;
    margin-right: 36px;
  }

  .page-home .about-teaser {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 36px 32px;
  }

  .page-home .back-top-wrap {
    padding-right: 36px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-cover {
    padding: 64px 56px 52px;
    gap: 56px;
  }

  .page-home .hero-title {
    font-size: clamp(3.8rem, 6.4vw, 5.6rem);
  }

  .page-home .hero-index {
    grid-template-columns: 1fr 1fr;
    max-width: 29rem;
  }

  .page-home .breadcrumb {
    padding-left: 56px;
    padding-right: 56px;
  }

  .page-home .zone-card {
    margin-left: 56px;
    margin-right: 56px;
  }

  .page-home .zone-heading {
    padding: 40px 40px 24px;
  }

  .page-home .category-grid-block {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }

  .page-home .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .page-home .category-summary-card {
    grid-column: span 1;
  }

  .page-home .feature-split {
    padding: 44px 40px 50px;
  }

  .page-home .feature-lead {
    font-size: 1.08rem;
  }

  .page-home .support-zone {
    padding: 46px 44px;
  }

  .page-home .trust-strip {
    margin-left: 56px;
    margin-right: 56px;
  }

  .page-home .about-teaser {
    padding: 44px 40px;
  }

  .page-home .back-top-wrap {
    padding-right: 56px;
  }
}

@media (min-width: 1400px) {
  .page-home .hero-cover {
    padding-left: 72px;
    padding-right: 72px;
  }

  .page-home .zone-card {
    margin-left: 72px;
    margin-right: 72px;
  }

  .page-home .category-grid-block,
  .page-home .feature-split,
  .page-home .support-zone,
  .page-home .about-teaser {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home [data-reveal] {
    transition: opacity 0.7s var(--home-ease), transform 0.7s var(--home-ease);
  }
}

.page-home .img-frame img,
.page-home .visual-frame img,
.page-home .feature-visual img,
.page-home .teaser-visual img,
.page-home .category-icon img {
  max-width: 100%;
  height: auto;
}

.page-home .category-icon img {
  height: 100%;
}

.page-home .img-square {
  aspect-ratio: 1 / 1;
}

.page-home .img-4x3 {
  aspect-ratio: 4 / 3;
}

.page-home .img-16x9 {
  aspect-ratio: 16 / 9;
}

.page-home .img-frame,
.page-home .visual-frame,
.page-home .feature-visual,
.page-home .teaser-visual {
  position: relative;
}

.page-home .img-slot {
  background: linear-gradient(135deg, rgba(42, 109, 234, 0.08), rgba(155, 81, 224, 0.05));
}

.page-home .service-fab {
  display: none;
}

.page-home .site-main {
  padding-bottom: 0;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease), background-color 0.3s var(--home-ease), border-color 0.3s var(--home-ease);
  font-family: var(--font-body);
}

.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.page-home .btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.page-home .btn-primary:hover {
  background: #1E5FD9;
  border-color: #1E5FD9;
}

.page-home .btn-accent {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.page-home .btn-accent:hover {
  background: #F07B00;
  border-color: #F07B00;
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(42, 109, 234, 0.36);
}

.page-home .btn-ghost:hover {
  background: rgba(42, 109, 234, 0.06);
  border-color: rgba(42, 109, 234, 0.56);
}

.page-home .btn-block {
  width: 100%;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-home .service-note-pulse {
    animation: none;
  }
}

.page-home .skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
}

.page-home .skip-link:focus {
  left: 12px;
  top: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
}

.page-home .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;
}

@media (max-width: 639px) {
  .page-home .category-summary-card {
    min-height: 260px;
  }

  .page-home .feature-row--records .chip-history,
  .page-home .feature-row--export .chip-export {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .page-home .support-zone .btn-accent {
    width: 100%;
    justify-content: center;
  }
}
