.page-home {
  --hero-pad: 72px;
  --card-radius: 16px;
  font-family: var(--body-font);
}
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: var(--hero-pad) 0 72px;
  background: linear-gradient(160deg, var(--mint) 0%, var(--tint-kiwi) 55%, var(--bg) 100%);
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 44px solid rgba(123, 192, 67, 0.12);
  top: -160px;
  right: -110px;
  pointer-events: none;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 22px solid rgba(31, 58, 147, 0.08);
  bottom: -50px;
  left: -60px;
  pointer-events: none;
}
.page-home .hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-home .hero-copy {
  flex: 0 0 auto;
}
.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--white);
  border: 2px solid var(--kiwi);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--kiwi-deep);
}
.page-home .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.page-home .hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.page-home .hero-lead {
  max-width: 34em;
  margin-bottom: 28px;
  font-size: 1.0625rem;
  line-height: var(--line-height);
  color: var(--ink);
}
.page-home .hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.page-home .hero-index a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.page-home .hero-index a span {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--orange);
}
.page-home .hero-index a:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.page-home .hero-index a:hover span {
  color: var(--mint);
}
.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .hero-meta span {
  padding: 6px 12px;
  background: var(--white);
  border: 2px solid var(--kiwi);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.page-home .hero-visual {
  flex: 0 0 auto;
}
.page-home .hero-visual-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.page-home .hero-vector {
  position: absolute;
  top: -22px;
  left: -18px;
  width: 96px;
  height: 96px;
  z-index: 2;
}
.page-home .hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.page-home .hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 3px solid var(--kiwi);
  border-radius: 24px;
  z-index: -1;
}
@media (prefers-reduced-motion: no-preference) {
  .page-home .hero-copy > * {
    animation: heroFadeIn 0.6s ease both;
  }
  .page-home .hero-copy > *:nth-child(2) {
    animation-delay: 0.1s;
  }
  .page-home .hero-copy > *:nth-child(3) {
    animation-delay: 0.2s;
  }
  .page-home .hero-copy > *:nth-child(4) {
    animation-delay: 0.3s;
  }
  .page-home .hero-copy > *:nth-child(5) {
    animation-delay: 0.4s;
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-home .home-category,
.page-home .home-guide,
.page-home .home-update,
.page-home .home-feedback {
  padding: 72px 0;
}
.page-home .chapter-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--kiwi);
}
.page-home .chapter-num {
  flex: 0 0 auto;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--kiwi);
}
.page-home .chapter-head h2 {
  margin: 0 0 4px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--navy);
}
.page-home .chapter-sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink);
  opacity: 0.85;
}
.page-home .cat-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .cat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}
.page-home .cat-icon {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
  background: var(--mint);
  border: 2px solid var(--kiwi);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.page-home .cat-card:hover .cat-icon {
  transform: rotate(15deg);
}
.page-home .cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .cat-content h3 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--navy);
}
.page-home .cat-content p {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  line-height: var(--line-height);
  color: var(--ink);
}
.page-home .cat-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kiwi-deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.page-home .cat-more:hover {
  border-bottom-color: var(--kiwi-deep);
}
.page-home .cat-card-tool {
  background: var(--tint-kiwi);
  border-color: var(--kiwi-deep);
}
.page-home .home-guide {
  background: var(--bg);
}
.page-home .guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .guide-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}
.page-home .guide-step {
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(255, 140, 0, 0.08);
  border-radius: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--orange);
}
.page-home .guide-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.page-home .guide-card p {
  flex-grow: 1;
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: var(--line-height);
  color: var(--ink);
}
.page-home .guide-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kiwi-deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.page-home .guide-more:hover {
  border-bottom-color: var(--kiwi-deep);
}
.page-home .home-update {
  background: var(--white);
}
.page-home .update-panel {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--navy);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.page-home .update-info {
  padding: 36px 28px;
  color: var(--white);
}
.page-home .update-info h3 {
  margin: 0 0 14px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
}
.page-home .update-info p {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  line-height: var(--line-height);
  color: rgba(255, 255, 255, 0.88);
}
.page-home .update-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.page-home .update-cta:hover {
  background: #e67e00;
  transform: translateY(-2px);
}
.page-home .update-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: center;
  padding: 28px 20px;
  background: var(--kiwi);
}
.page-home .stat-block {
  padding: 10px 4px;
  text-align: center;
}
.page-home .stat-block strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.1;
  color: var(--navy);
}
.page-home .stat-block span {
  display: inline-block;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 2px solid var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.page-home .home-feedback {
  background: linear-gradient(180deg, var(--bg) 0%, var(--mint) 100%);
}
.page-home .feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .feedback-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.page-home .feedback-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--navy);
}
.page-home .feedback-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: var(--line-height);
  color: var(--ink);
}
.page-home .feedback-primary {
  background: var(--navy);
  border-color: var(--navy);
}
.page-home .feedback-primary h3 {
  color: var(--white);
}
.page-home .feedback-primary p {
  color: rgba(255, 255, 255, 0.88);
}
.page-home .feedback-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 22px;
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.page-home .feedback-cta:hover {
  background: #e67e00;
  transform: translateY(-2px);
}
.page-home .feedback-muted {
  background: var(--white);
}
.page-home .feedback-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kiwi-deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.page-home .feedback-link:hover {
  border-bottom-color: var(--kiwi-deep);
}
@media (min-width: 720px) {
  .page-home .cat-bento {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .cat-card-video {
    grid-column: span 7;
  }
  .page-home .cat-card-app {
    grid-column: span 5;
  }
  .page-home .cat-card-tool {
    grid-column: span 12;
  }
  .page-home .cat-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-home .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .page-home .hero-shell {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: center;
  }
  .page-home .update-panel {
    grid-template-columns: 7fr 5fr;
  }
  .page-home .feedback-grid {
    grid-template-columns: 1fr 1fr;
  }
}
