.page-home {
  --home-hero-title: 96px;
  --home-gold-grad: linear-gradient(135deg, #D4AF37 0%, #F0C85E 50%, #D4AF37 100%);
  --home-glass-bg: rgba(17, 24, 39, 0.55);
  --home-space-y: 110px;
  background: transparent;
  color: var(--color-text);
  position: relative;
}

.page-home .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.page-home .home-hero {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-home .hero-watermark {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 200px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.1em;
}

.page-home .hero-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.page-home .hero-kicker {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  background: rgba(212, 175, 55, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.page-home .hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.page-home .hero-title {
  font-size: var(--home-hero-title);
  font-weight: 100;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #E5E7EB 0%, #D4AF37 45%, #F0C85E 70%, #E5E7EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  word-break: break-word;
}

.page-home .hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}

.page-home .hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.page-home .meta-dot {
  color: var(--color-gold);
  opacity: 0.6;
}

.page-home .home-section {
  padding: var(--home-space-y) 0;
  position: relative;
}

.page-home .home-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 860px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.page-home .section-index-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .section-index {
  font-size: 96px;
  font-weight: 100;
  line-height: 1;
  background: var(--home-gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.02em;
}

.page-home .section-caption {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-left: 1px solid rgba(212, 175, 55, 0.4);
  padding-left: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.page-home .section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0 0 18px;
}

.page-home .section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0;
  max-width: 580px;
}

.page-home .rule-section {
  background: var(--home-glass-bg);
  border-radius: var(--radius-lg);
  padding-left: 48px;
  padding-right: 48px;
  margin-top: 10px;
}

.page-home .rule-section::before {
  display: none;
}

.page-home .rule-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.page-home .rule-text .section-desc {
  margin-bottom: 34px;
}

.page-home .rule-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .rule-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(156, 163, 175, 0.12);
}

.page-home .rule-item:last-child {
  border-bottom: none;
}

.page-home .rule-tag {
  min-width: 48px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-pill);
  text-align: center;
  padding: 4px 14px;
  letter-spacing: 0.12em;
}

.page-home .rule-text-sm {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.85;
}

.page-home .rule-figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .rule-img {
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(1.5deg);
}

.page-home .entry-section {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.4) 20%, rgba(17, 24, 39, 0.4) 80%, transparent 100%);
}

.page-home .entry-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: end;
}

.page-home .entry-head .section-title {
  margin-bottom: 0;
}

.page-home .entry-head .section-desc {
  max-width: 480px;
}

.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.page-home .entry-card {
  background: rgba(17, 24, 39, 0.75);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-home .entry-card:hover {
  transform: translateY(-6px);
  background: rgba(17, 24, 39, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .entry-main {
  background: rgba(17, 24, 39, 0.85);
  padding: 0;
  overflow: hidden;
}

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

.page-home .entry-main .entry-card-title,
.page-home .entry-main .entry-card-text {
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .entry-main .entry-card-title {
  margin-top: 20px;
}

.page-home .entry-main .entry-card-text {
  padding-bottom: 24px;
  margin-bottom: 0;
}

.page-home .entry-icon {
  font-size: 44px;
  font-weight: 100;
  background: var(--home-gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}

.page-home .entry-card-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}

.page-home .entry-card-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0;
  flex-grow: 1;
}

.page-home .entry-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-md);
  max-width: 760px;
}

.page-home .entry-note-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

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

.page-home .tag-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-home .tag-text .section-desc {
  margin-bottom: 28px;
}

.page-home .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 16px;
}

.page-home .tag-item {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: rgba(17, 24, 39, 0.6);
  color: var(--color-text);
  border: 1px solid rgba(156, 163, 175, 0.2);
  transition: all 0.25s ease;
  font-family: var(--font-sans);
}

.page-home .tag-item:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.08);
}

.page-home .tag-item.is-active {
  background: var(--color-gold);
  color: #0B0F1A;
  font-weight: 600;
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.page-home .tag-tip {
  font-size: 13px;
  color: var(--color-muted);
  margin: 14px 0 0;
  letter-spacing: 0.04em;
}

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

.page-home .tag-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.page-home .update-board {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  margin-top: 44px;
  background: rgba(17, 24, 39, 0.55);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.page-home .update-board::after {
  content: "PG";
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 140px;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.04);
  pointer-events: none;
  line-height: 1;
  font-family: var(--font-serif);
}

.page-home .update-col-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 24px;
}

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

.page-home .update-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.9;
}

.page-home .update-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.6;
  transform: translateY(-2px);
}

.page-home .update-rhythm {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.page-home .update-rhythm-sub {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0;
  max-width: 260px;
}

.page-home .update-arrow {
  font-size: 40px;
  color: var(--color-gold);
  margin: 12px 0;
  opacity: 0.5;
}

.page-home .feedback-section {
  background: rgba(17, 24, 39, 0.45);
  border-radius: var(--radius-lg);
  margin-top: 20px;
  margin-bottom: 100px;
  padding-left: 48px;
  padding-right: 48px;
  border: 1px solid rgba(255, 77, 0, 0.18);
  position: relative;
}

.page-home .feedback-section::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: 12px;
  transform: rotate(5deg);
  opacity: 0.15;
  pointer-events: none;
}

.page-home .feedback-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}

.page-home .feedback-main .section-title {
  margin-bottom: 18px;
}

.page-home .feedback-main .section-desc {
  margin-bottom: 36px;
  max-width: 520px;
}

.page-home .feedback-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
}

.page-home .btn-gold {
  background: var(--color-gold);
  color: #0B0F1A;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.page-home .btn-gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.page-home .btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-gold);
}

.page-home .feedback-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.page-home .feedback-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 12px;
}

.page-home .feedback-note {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home .home-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-home .home-bottom-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.page-home .home-bottom-nav a:hover {
  color: var(--color-gold);
}

.page-home .bottom-sep {
  color: rgba(212, 175, 55, 0.3);
  font-size: 14px;
}

@media (max-width: 992px) {
  .page-home {
    --home-space-y: 80px;
    --home-hero-title: 68px;
  }

  .page-home .hero-watermark {
    font-size: 140px;
  }

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

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

  .page-home .entry-main {
    grid-column: 1 / -1;
  }

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

  .page-home .update-board {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px;
  }

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

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

@media (min-width: 768px) and (max-width: 992px) {
  .page-home .entry-main {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .page-home .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-home .home-hero {
    padding: 80px 0 60px;
  }

  .page-home .hero-watermark {
    font-size: 90px;
    letter-spacing: 0.05em;
  }

  .page-home .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .page-home .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .page-home .hero-desc {
    font-size: 16px;
    line-height: 1.75;
  }

  .page-home .hero-meta-row {
    flex-direction: column;
    gap: 8px;
  }

  .page-home .meta-dot {
    display: none;
  }

  .page-home .section-index {
    font-size: 68px;
  }

  .page-home .section-caption {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .page-home .rule-section,
  .page-home .feedback-section {
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 20px;
  }

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

  .page-home .entry-main {
    grid-column: auto;
  }

  .page-home .entry-card {
    padding: 24px 20px;
  }

  .page-home .tag-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .page-home .tag-item {
    min-width: max-content;
  }

  .page-home .update-board {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .page-home .update-rhythm {
    font-size: 18px;
  }

  .page-home .update-arrow {
    font-size: 30px;
  }

  .page-home .feedback-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .btn {
    width: 100%;
  }

  .page-home .home-bottom-nav {
    gap: 12px;
  }

  .page-home .bottom-sep {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-home .home-hero {
    padding: 60px 0 50px;
  }

  .page-home .hero-title {
    font-size: 32px;
  }

  .page-home .hero-watermark {
    font-size: 70px;
  }

  .page-home .section-title {
    font-size: 28px;
  }

  .page-home .entry-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-home .tag-visual .tag-img {
    max-height: 160px;
  }
}
