.page-home {
  --home-window-radius: 30px;
  --home-gap: 20px;
  background: var(--cream);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .section-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

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

.page-home .home-section-titlewrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-home .home-section-index {
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  border: 1px solid rgba(232, 93, 4, 0.32);
  border-radius: 10px;
  padding: 10px 12px;
  display: inline-block;
  flex: none;
}

.page-home .home-section-heading {
  margin: 0 0 6px;
  font-family: var(--font-headline);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* ===== Hero ===== */
.page-home .home-hero {
  padding: 36px 0 0;
  position: relative;
}

.page-home .home-hero-window {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(245, 240, 230, 0.88));
  border: 1px solid rgba(11, 60, 93, 0.16);
  border-radius: var(--home-window-radius);
  box-shadow: 0 24px 70px rgba(11, 60, 93, 0.16);
  overflow: hidden;
}

.page-home .home-hero-window::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 320px;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-home .home-hero-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--deep-blue);
  position: relative;
}

.page-home .home-hero-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--cyan));
}

.page-home .home-window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}

.page-home .home-window-dot-gold {
  background: var(--gold);
}

.page-home .home-window-dot-cyan {
  background: var(--cyan);
}

.page-home .home-window-label {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
}

.page-home .home-hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 20px 36px;
}

.page-home .home-context {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(11, 60, 93, 0.06);
  border: 1px solid rgba(11, 60, 93, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.page-home .home-context-item.is-current {
  color: var(--deep-blue);
  font-weight: 700;
}

.page-home .home-context-sep {
  color: rgba(232, 93, 4, 0.72);
}

.page-home .home-hero-tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .home-hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--deep-blue);
  background: rgba(11, 60, 93, 0.08);
  border: 1px solid rgba(11, 60, 93, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
}

.page-home .home-hero h1 {
  font-family: var(--font-headline);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--deep-blue);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.page-home .home-hero-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 26px;
  max-width: 620px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.page-home .home-step-compare {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 440px;
}

.page-home .home-step-item {
  background: rgba(245, 240, 230, 0.82);
  border: 1px solid rgba(11, 60, 93, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  flex: 1;
  text-align: center;
}

.page-home .home-step-type {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.page-home .home-step-count {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.page-home .home-step-item-pc .home-step-count {
  color: var(--deep-blue);
}

.page-home .home-step-item-mobile .home-step-count {
  color: var(--orange);
}

.page-home .home-step-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.page-home .home-step-vs {
  align-self: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--purple);
  font-size: 14px;
}

.page-home .home-hero-visual {
  position: relative;
  margin-top: 30px;
}

.page-home .home-hero-visual::after {
  content: "";
  display: none;
  position: absolute;
  right: -30px;
  top: 118px;
  width: 130px;
  height: 36px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: skewX(-18deg);
  border-radius: 8px;
  opacity: 0.34;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero-shot {
  position: relative;
  margin: 0;
  padding: 0;
}

.page-home .home-hero-screen {
  position: relative;
  z-index: 1;
  background: var(--deep-blue);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 60, 93, 0.3);
  box-shadow: 0 18px 44px rgba(11, 60, 93, 0.24);
}

.page-home .home-hero-screenbar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(245, 240, 230, 0.08);
}

.page-home .home-hero-screenbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.page-home .home-hero-screenbar i:nth-child(2) {
  background: var(--gold);
}

.page-home .home-hero-screenbar i:nth-child(3) {
  background: var(--cyan);
}

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

.page-home .home-hero-badge {
  position: absolute;
  top: 72px;
  right: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.55);
}

.page-home .home-hero-caption {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
}

.page-home .home-caption-no {
  font-family: var(--font-mono);
  color: var(--gold);
  background: var(--deep-blue);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-caption-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

/* ===== Stats ===== */
.page-home .home-stats {
  padding: 70px 0 40px;
}

.page-home .home-stats-layout {
  display: grid;
  gap: 32px;
}

.page-home .home-stats-lead {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0 0;
  max-width: 400px;
}

.page-home .home-stats-figure {
  margin: 24px 0 0;
  max-width: 320px;
}

.page-home .home-stats-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 60, 93, 0.14);
  box-shadow: var(--shadow-glass);
}

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

.page-home .home-stat-card {
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 60, 93, 0.14);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.page-home .home-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(11, 60, 93, 0.22);
  border-color: rgba(11, 60, 93, 0.3);
}

.page-home .home-stat-card-gold:hover {
  border-color: rgba(255, 215, 0, 0.7);
}

.page-home .stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.page-home .home-stat-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 8px;
}

.page-home .home-stat-card .stat-value {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--deep-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-stat-card-gold .stat-value {
  background: linear-gradient(120deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-stat-unit {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 15px;
}

.page-home .home-stat-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .home-stats-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(11, 60, 93, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
}

.page-home .home-stats-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Service ===== */
.page-home .home-service {
  padding: 40px 0 72px;
}

.page-home .home-service-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-glass);
}

.page-home .home-service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-home .home-service-banner-inner {
  position: relative;
  z-index: 1;
  padding: 38px 24px;
  width: 100%;
  background: linear-gradient(120deg, rgba(11, 60, 93, 0.94) 0%, rgba(11, 60, 93, 0.68) 60%, rgba(11, 60, 93, 0.28) 100%);
}

.page-home .home-service-banner-inner h2 {
  color: var(--text-on-dark);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 10px;
  line-height: 1.3;
}

.page-home .home-service-lead {
  color: rgba(245, 240, 230, 0.85);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.page-home .home-service-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 18px;
}

.page-home .home-service-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-service-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .home-service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(11, 60, 93, 0.14);
  border-radius: var(--radius-sm);
  padding: 22px 20px 18px;
  text-decoration: none;
  color: var(--text-primary);
  overflow: hidden;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease, background var(--transition-speed) ease;
}

.page-home .home-service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--purple));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.page-home .home-service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass);
  border-color: rgba(232, 93, 4, 0.4);
  background: rgba(255, 255, 255, 0.72);
}

.page-home .home-service-item:hover::before {
  opacity: 1;
}

.page-home .home-service-index {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--purple);
  font-size: 15px;
}

.page-home .home-service-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 18px;
  color: var(--deep-blue);
  letter-spacing: 0.03em;
}

.page-home .home-service-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.page-home .home-service-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* ===== Compare ===== */
.page-home .home-compare {
  padding: 40px 0 72px;
}

.page-home .home-compare-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin: 16px 0 0;
  max-width: 520px;
  line-height: 1.7;
}

.page-home .home-compare-stage {
  margin-top: 28px;
}

.page-home .home-compare-overview {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(11, 60, 93, 0.14);
  background: var(--deep-blue);
}

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

.page-home .home-compare-lanes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.page-home .home-compare-lane {
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 60, 93, 0.16);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 0.25s ease, border-color var(--transition-speed) ease, background var(--transition-speed) ease, box-shadow var(--transition-speed) ease, opacity 0.25s ease, filter 0.25s ease;
}

.page-home .home-compare-lane:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.page-home .home-compare-lanes:hover .home-compare-lane {
  opacity: 0.45;
  filter: saturate(0.5);
}

.page-home .home-compare-lanes:hover .home-compare-lane:hover,
.page-home .home-compare-lanes:hover .home-compare-lane:focus-within {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glass);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.page-home .home-compare-lane-mobile:hover,
.page-home .home-compare-lanes:hover .home-compare-lane-mobile:focus-within {
  border-color: var(--orange);
}

.page-home .home-compare-lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.page-home .home-compare-device {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 20px;
  color: var(--deep-blue);
}

.page-home .home-compare-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(155, 93, 229, 0.14);
  color: var(--purple);
}

.page-home .home-compare-badge-gold {
  background: rgba(255, 215, 0, 0.18);
  color: #a57900;
}

.page-home .home-compare-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-compare-steps li {
  position: relative;
  padding: 10px 14px 10px 42px;
  background: rgba(11, 60, 93, 0.06);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.5;
  counter-increment: compare-step;
}

.page-home .home-compare-steps li::before {
  content: counter(compare-step);
  position: absolute;
  left: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--deep-blue);
  color: var(--text-on-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

.page-home .home-compare-lane-pc .home-compare-steps {
  counter-reset: compare-step;
}

.page-home .home-compare-lane-mobile .home-compare-steps {
  counter-reset: compare-step;
}

.page-home .home-compare-tip {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: right;
}

/* ===== Latest ===== */
.page-home .home-latest {
  padding: 40px 0 80px;
}

.page-home .home-latest-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

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

.page-home .home-latest-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 60, 93, 0.14);
  border-radius: var(--radius-sm);
  padding: 24px 22px 20px;
  transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.page-home .home-latest-item:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 60, 93, 0.28);
  box-shadow: var(--shadow-glass);
}

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

.page-home .home-latest-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-blue);
  background: rgba(11, 60, 93, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.page-home .home-latest-time {
  color: var(--text-muted);
  font-size: 13px;
}

.page-home .home-latest-label {
  font-size: 18px;
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.45;
  margin: 0 0 10px;
}

.page-home .home-latest-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.page-home .home-latest-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-speed) ease;
}

.page-home .home-latest-link:hover {
  border-bottom-color: var(--orange);
}

/* ===== CTA ===== */
.page-home .home-cta {
  padding: 24px 0 88px;
}

.page-home .home-cta-inner {
  position: relative;
  background: var(--deep-blue);
  overflow: hidden;
  border-radius: var(--radius);
  padding: 52px 24px;
  text-align: center;
  color: var(--text-on-dark);
  box-shadow: 0 20px 56px rgba(11, 60, 93, 0.28);
}

.page-home .home-cta-inner::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 18%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.5), transparent 70%);
  pointer-events: none;
}

.page-home .home-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -110px;
  right: 14%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.34), transparent 70%);
  pointer-events: none;
}

.page-home .home-cta-title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  color: var(--text-on-dark);
}

.page-home .home-cta-inner p {
  color: rgba(245, 240, 230, 0.82);
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 15px;
}

.page-home .home-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ===== Breakpoints ===== */
@media (min-width: 768px) {
  .page-home .home-hero-content {
    padding: 40px 32px 48px;
  }

  .page-home .home-hero h1 {
    font-size: 40px;
  }

  .page-home .home-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

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

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

@media (min-width: 992px) {
  .page-home .home-hero {
    padding: 48px 0 0;
  }

  .page-home .home-hero-content {
    padding: 48px 56px 56px;
  }

  .page-home .home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
  }

  .page-home .home-hero h1 {
    font-size: 50px;
  }

  .page-home .home-hero-visual {
    margin-top: 0;
  }

  .page-home .home-hero-visual::after {
    display: block;
  }

  .page-home .home-stats-layout {
    grid-template-columns: 0.8fr 1.4fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .home-service-track {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-home .home-compare-lanes {
    display: flex;
    gap: 18px;
  }

  .page-home .home-compare-lane {
    flex: 1 1 0;
  }

  .page-home .home-compare-lane-pc {
    flex: 1.08 1 0;
  }

  .page-home .home-compare-lane-mobile {
    flex: 0.92 1 0;
  }

  .page-home .home-compare-lanes:hover .home-compare-lane-pc {
    flex: 1.25 1 0;
  }

  .page-home .home-compare-lanes:hover .home-compare-lane-mobile {
    flex: 0.75 1 0;
  }

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

  .page-home .home-cta-inner {
    padding: 64px 40px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero h1 {
    font-size: 56px;
  }

  .page-home .home-hero-content {
    padding: 56px 64px 64px;
  }

  .page-home .home-stats {
    padding: 88px 0 56px;
  }

  .page-home .home-service,
  .page-home .home-compare {
    padding: 56px 0 88px;
  }

  .page-home .home-latest {
    padding: 56px 0 96px;
  }
}
