.page-home {
  --hero-gradient: linear-gradient(135deg, rgba(90,92,255,0.18) 0%, rgba(0,255,136,0.08) 50%, rgba(255,122,0,0.05) 100%);
  --glow-green: rgba(0,255,136,0.35);
  --glow-orange: rgba(255,122,0,0.3);
}
.page-home .home-hero {
  position: relative;
  padding: 48px 0 32px;
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(90,92,255,0.06) 1px, transparent 1px), linear-gradient(rgba(90,92,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-home .hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
}
.page-home .hero-copy {
  max-width: 640px;
}
.page-home .hero-eyebrow {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.page-home .hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--cyan);
}
.page-home .hero-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}
.page-home .hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-home .kw-pill {
  font-family: var(--font-data);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.25);
  color: var(--green);
}
.page-home .kw-pill:nth-child(2) {
  color: var(--orange);
  border-color: rgba(255,122,0,0.25);
  background: rgba(255,122,0,0.06);
}
.page-home .kw-pill:nth-child(3) {
  color: var(--violet);
  border-color: rgba(90,92,255,0.25);
  background: rgba(90,92,255,0.06);
}
.page-home .kw-pill:nth-child(4) {
  color: var(--cyan);
  border-color: rgba(208,228,245,0.25);
  background: rgba(208,228,245,0.06);
}
.page-home .hero-path-preview {
  display: grid;
  gap: 12px;
}
.page-home .path-preview-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.page-home .path-preview-card:hover {
  border-color: var(--green);
  background: rgba(255,255,255,0.09);
}
.page-home .path-preview-card strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cyan);
  font-size: 15px;
}
.page-home .path-preview-card small {
  display: block;
  color: var(--gray);
  font-size: 13px;
  margin-top: 4px;
}
.page-home .path-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--glow-green);
  flex-shrink: 0;
  animation: page-home-pulse 2s ease-in-out infinite;
}
.page-home .path-status-dot[data-tone="orange"] {
  background: var(--orange);
  box-shadow: 0 0 12px var(--glow-orange);
  animation-delay: 0.4s;
}
.page-home .hero-visual {
  position: relative;
}
.page-home .hero-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-lift);
}
.page-home .hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .hero-score-chip {
  position: absolute;
  bottom: -14px;
  right: 16px;
  background: rgba(0,0,0,0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.page-home .hero-score-chip .score-text {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
}
.page-home .chip-note {
  font-size: 12px;
  color: var(--gray);
}
.page-home .home-kpi {
  padding: 48px 0 12px;
}
.page-home .home-kpi .kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.page-home .kpi-item {
  background: var(--glass);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  border-top: 2px solid transparent;
}
.page-home .kpi-item:nth-child(1) {
  border-top-color: var(--green);
}
.page-home .kpi-item:nth-child(2) {
  border-top-color: var(--violet);
}
.page-home .kpi-item:nth-child(3) {
  border-top-color: var(--orange);
}
.page-home .kpi-value {
  display: block;
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.1;
  margin-bottom: 8px;
}
.page-home .kpi-label {
  font-size: 13px;
  color: var(--gray);
}
.page-home .section-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.page-home .section-index {
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  min-width: 48px;
}
.page-home .section-heading h2 {
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1.3;
  color: var(--cyan);
  margin-bottom: 6px;
}
.page-home .section-heading p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.page-home .home-paths,
.page-home .home-coverage,
.page-home .home-apple,
.page-home .home-free {
  padding: 56px 0;
}
.page-home .paths-grid {
  display: grid;
  gap: 16px;
}
.page-home .path-panel {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s ease;
}
.page-home .path-panel:hover {
  transform: translateY(-4px);
}
.page-home .path-panel-head {
  margin-bottom: 16px;
}
.page-home .panel-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,255,136,0.12);
  color: var(--green);
  margin-bottom: 12px;
}
.page-home .panel-tag[data-tone="orange"] {
  background: rgba(255,122,0,0.12);
  color: var(--orange);
}
.page-home .path-panel h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--cyan);
  margin-bottom: 10px;
}
.page-home .path-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 16px;
}
.page-home .path-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.page-home .path-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--gray);
}
.page-home .path-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.page-home .path-panel:nth-child(2) .path-list li::before {
  background: var(--orange);
}
.page-home .text-link {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.page-home .text-link:hover {
  color: var(--cyan);
}
.page-home .coverage-layout {
  display: grid;
  gap: 24px;
}
.page-home .coverage-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}
.page-home .coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.page-home .coverage-stat-item {
  background: var(--glass);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.page-home .stat-num {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.page-home .stat-unit {
  font-size: 16px;
  margin-left: 2px;
  color: var(--green);
}
.page-home .stat-label {
  font-size: 12px;
  color: var(--gray);
}
.page-home .coverage-visual {
  position: relative;
}
.page-home .coverage-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.page-home .league-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.page-home .league-strip span {
  font-family: var(--font-data);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(90,92,255,0.12);
  color: var(--violet);
  border: 1px solid rgba(90,92,255,0.25);
}
.page-home .coverage-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.6;
}
.page-home .apple-layout {
  display: grid;
  gap: 28px;
}
.page-home .apple-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.page-home .apple-features {
  display: grid;
  gap: 16px;
}
.page-home .feature-card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid transparent;
  transition: background 0.25s;
}
.page-home .feature-card:first-child {
  border-left-color: var(--violet);
}
.page-home .feature-card:last-child {
  border-left-color: var(--green);
}
.page-home .feature-card:hover {
  background: rgba(255,255,255,0.08);
}
.page-home .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
  background: rgba(90,92,255,0.15);
  color: var(--violet);
}
.page-home .feature-icon[data-tone="green"] {
  background: rgba(0,255,136,0.15);
  color: var(--green);
}
.page-home .feature-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 8px;
}
.page-home .feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}
.page-home .home-free {
  position: relative;
}
.page-home .free-panel {
  background: var(--hero-gradient);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  display: grid;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.page-home .free-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  filter: blur(80px);
  pointer-events: none;
}
.page-home .free-copy {
  position: relative;
}
.page-home .free-copy h2 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 14px;
  line-height: 1.3;
}
.page-home .free-copy p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 16px;
}
.page-home .free-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.page-home .free-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--gray);
}
.page-home .free-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.page-home .free-note {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
}
.page-home .free-visual img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}
.page-home .home-more {
  padding: 32px 0 56px;
}
.page-home .more-grid {
  display: grid;
  gap: 14px;
}
.page-home .more-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.page-home .more-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--violet);
}
.page-home .more-index {
  font-family: var(--font-data);
  color: var(--gray);
  font-size: 14px;
}
.page-home .more-card strong {
  font-size: 16px;
  color: var(--cyan);
  font-weight: 600;
  min-width: 80px;
}
.page-home .more-card span:last-child {
  font-size: 13px;
  color: var(--gray);
}
@keyframes page-home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 72px 0 48px;
  }
  .page-home .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }
  .page-home .hero-path-preview {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .home-kpi {
    padding: 64px 0 24px;
  }
  .page-home .kpi-item {
    padding: 28px 20px;
  }
  .page-home .paths-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .page-home .coverage-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
  }
  .page-home .apple-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }
  .page-home .apple-features {
    gap: 20px;
  }
  .page-home .free-panel {
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    padding: 48px;
    gap: 40px;
  }
  .page-home .more-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .page-home .section-heading {
    margin-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .path-status-dot {
    animation: none;
  }
  .page-home .path-panel {
    transition: none;
  }
}
.page-home {
  scroll-behavior: smooth;
}
