.page-home {
  --home-blue-deep: #0A192F;
  --home-blue-mid: #1D3557;
  --home-blue-soft: #233B5E;
  --home-orange: #FF6B35;
  --home-cream: #F4F1DE;
  --home-green: #2A9D8F;
  --home-yellow: #E9C46A;
  --home-grey-deep: #2B2D42;
  --home-radius-md: 20px;
  --home-radius-lg: 32px;
  --home-radius-pill: 999px;
  --home-shadow: 0 24px 60px rgba(5, 12, 25, 0.45);
  --home-glow: 0 0 80px rgba(255, 107, 53, 0.15);
  background: var(--home-blue-deep);
  color: var(--home-cream);
  overflow-x: clip;
}

.page-home .container {
  max-width: var(--max-width, 1280px);
  margin-inline: auto;
  padding-inline: 24px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--home-radius-pill);
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  padding: 15px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition, 0.3s), box-shadow var(--transition, 0.3s), background var(--transition, 0.3s);
}

.page-home .btn-primary {
  background: var(--home-orange);
  color: var(--home-blue-deep);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

.page-home .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.45);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--home-cream);
  border-color: rgba(244, 241, 222, 0.35);
}

.page-home .btn-outline:hover {
  border-color: var(--home-orange);
  color: var(--home-orange);
  transform: translateY(-3px);
}

/* ===== HERO ===== */
.ph-hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(var(--header-height, 72px) + 48px);
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--home-blue-deep) 0%, var(--home-blue-mid) 62%, #152A4A 100%);
}

.ph-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ph-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.ph-hero__ring--one {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -80px;
}

.ph-hero__ring--two {
  width: 300px;
  height: 300px;
  right: 180px;
  bottom: -90px;
  border-color: rgba(233, 196, 74, 0.18);
}

.ph-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 70%);
}

.ph-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.ph-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 222, 0.7);
  margin-bottom: 28px;
}

.ph-hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
  animation: ph-pulse 2s infinite;
}

@keyframes ph-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.08); }
}

.ph-hero__title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--home-cream);
  margin-bottom: 20px;
  max-width: 680px;
}

.ph-hero__title-sub {
  display: block;
  color: var(--home-orange);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: -0.01em;
}

.ph-hero__lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(244, 241, 222, 0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

.ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.ph-hero__btn-icon {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.ph-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(244, 241, 222, 0.12);
}

.ph-hero__meta-num {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--home-cream);
  display: block;
  line-height: 1.1;
}

.ph-hero__meta-unit {
  font-size: 16px;
  color: var(--home-orange);
  margin-left: 2px;
}

.ph-hero__meta-label {
  display: block;
  font-size: 13px;
  color: rgba(244, 241, 222, 0.58);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.ph-hero__visual {
  position: relative;
}

.ph-hero__device {
  position: relative;
  max-width: 380px;
  margin-left: auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--home-shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(1.5deg);
  transition: transform var(--transition, 0.3s);
}

.ph-hero__device:hover {
  transform: rotate(0deg) translateY(-6px);
}

.ph-hero__img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  object-fit: cover;
}

.ph-hero__device-glow {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  box-shadow: inset 0 0 60px rgba(255, 107, 53, 0.12);
  pointer-events: none;
}

.ph-hero__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  color: var(--home-cream);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--home-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ph-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-green);
}

.ph-hero__note {
  position: absolute;
  bottom: -36px;
  left: -12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--home-yellow);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.ph-hero__note-line {
  width: 1px;
  height: 64px;
  background: var(--home-yellow);
  opacity: 0.5;
}

.ph-hero__scroll {
  position: absolute;
  right: 24px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.ph-hero__scroll-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 222, 0.45);
  writing-mode: vertical-rl;
}

.ph-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--home-orange), transparent);
  animation: ph-scroll 2.4s infinite;
}

@keyframes ph-scroll {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== QUICK NAV ===== */
.ph-quicknav {
  background: var(--home-blue-deep);
  border-bottom: 1px solid rgba(244, 241, 222, 0.08);
}

.ph-quicknav__inner {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
  padding-block: 24px;
}

.ph-quicknav__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(244, 241, 222, 0.5);
  align-self: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
}

.ph-quicknav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 241, 222, 0.08);
  border-radius: var(--home-radius-md);
  padding: 18px 20px;
  transition: background var(--transition, 0.3s), border-color var(--transition, 0.3s), transform var(--transition, 0.3s);
}

.ph-quicknav__item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-3px);
}

.ph-quicknav__item-num {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  color: var(--home-orange);
  font-weight: 700;
}

.ph-quicknav__item-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--home-cream);
  line-height: 1.4;
}

/* ===== SECTION HEAD ===== */
.ph-section-head {
  margin-bottom: 48px;
  max-width: 720px;
}

.ph-section-head--row {
  max-width: none;
}

.ph-section-head__kicker {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--home-orange);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ph-section-head__title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--home-cream);
  margin: 0;
}

.ph-section-head__desc {
  color: rgba(244, 241, 222, 0.65);
  font-size: 16px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 480px;
}

/* ===== LATEST ===== */
.ph-latest {
  background: var(--home-blue-deep);
  padding-block: 96px;
}

.ph-latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ph-post-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 241, 222, 0.09);
  border-radius: var(--home-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition, 0.3s), border-color var(--transition, 0.3s), background var(--transition, 0.3s);
}

.ph-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  background: rgba(255, 107, 53, 0.06);
}

.ph-post-card--feature {
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.14), rgba(255, 107, 53, 0.02));
  border-color: rgba(255, 107, 53, 0.28);
}

.ph-post-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-yellow);
  background: rgba(233, 196, 74, 0.1);
  padding: 6px 14px;
  border-radius: var(--home-radius-pill);
  border: 1px solid rgba(233, 196, 74, 0.22);
}

.ph-post-card__title {
  margin: 0;
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.ph-post-card__title a {
  color: var(--home-cream);
  text-decoration: none;
  transition: color var(--transition, 0.3s);
}

.ph-post-card__title a:hover {
  color: var(--home-orange);
}

.ph-post-card__excerpt {
  color: rgba(244, 241, 222, 0.62);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.ph-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 241, 222, 0.08);
  font-size: 12.5px;
  color: rgba(244, 241, 222, 0.45);
}

/* ===== PC GUIDE ===== */
.ph-pcguide {
  background: linear-gradient(180deg, var(--home-blue-deep) 0%, #0E2140 100%);
  padding-block: 96px;
}

.ph-pcguide__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.ph-pcguide__visual {
  position: relative;
}

.ph-pcguide__img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--home-shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ph-pcguide__frame-note {
  position: absolute;
  top: -16px;
  right: -12px;
  background: var(--home-orange);
  color: var(--home-blue-deep);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: var(--home-radius-pill);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.ph-pcguide__content {
  padding-left: 8px;
}

.ph-pcguide__lead {
  color: rgba(244, 241, 222, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 32px;
}

.ph-pcguide__steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 0;
}

.ph-pcguide__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(244, 241, 222, 0.08);
  position: relative;
}

.ph-pcguide__step:first-child {
  border-top: 1px solid rgba(244, 241, 222, 0.08);
}

.ph-pcguide__step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.14);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: var(--home-orange);
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-pcguide__step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--home-cream);
  margin: 0 0 6px;
}

.ph-pcguide__step-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 241, 222, 0.6);
  margin: 0;
}

.ph-pcguide__btn {
  margin-top: 8px;
}

/* ===== SUBSCRIBE ===== */
.ph-subscribe {
  padding-block: 96px;
  background: var(--home-blue-deep);
}

.ph-subscribe__panel {
  position: relative;
  background: linear-gradient(120deg, #123257 0%, var(--home-blue-mid) 50%, #1A3D66 100%);
  border-radius: var(--home-radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--home-shadow);
}

.ph-subscribe__panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.22), transparent 70%);
  right: -60px;
  bottom: -60px;
  pointer-events: none;
}

.ph-subscribe__number {
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ph-subscribe__kicker {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--home-orange);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.ph-subscribe__title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--home-cream);
  margin: 0 0 16px;
}

.ph-subscribe__text {
  color: rgba(244, 241, 222, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 12px;
  max-width: 500px;
}

.ph-subscribe__note {
  color: rgba(244, 241, 222, 0.5);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.ph-subscribe__calendar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 200px;
  min-height: 200px;
  background: rgba(10, 25, 47, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: var(--home-shadow);
  text-align: center;
}

.ph-subscribe__weekday {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1;
}

.ph-subscribe__badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--home-cream);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--home-radius-pill);
}

.ph-subscribe__sim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(244, 241, 222, 0.5);
}

.ph-subscribe__sim-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-green);
  animation: ph-pulse 2s infinite;
}

/* ===== LIBRARY ===== */
.ph-library {
  background: #0C1B34;
  padding-block: 96px;
}

.ph-library__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ph-library__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 241, 222, 0.09);
  border-radius: var(--home-radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition, 0.3s), border-color var(--transition, 0.3s);
}

.ph-library__card:hover {
  transform: translateY(-5px);
  border-color: rgba(42, 157, 143, 0.5);
}

.ph-library__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ph-library__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(42, 157, 143, 0.16);
  border: 1px solid rgba(42, 157, 143, 0.35);
  color: var(--home-green);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-library__card-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 222, 0.4);
  font-weight: 700;
  text-transform: uppercase;
}

.ph-library__card-title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--home-cream);
  margin: 0;
  line-height: 1.35;
}

.ph-library__card-text {
  color: rgba(244, 241, 222, 0.62);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.ph-library__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 12px;
  transition: gap var(--transition, 0.3s);
}

.ph-library__card-link:hover {
  gap: 12px;
}

.ph-library__wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 241, 222, 0.09);
  border-radius: var(--home-radius-lg);
  overflow: hidden;
}

.ph-library__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-library__wide-copy {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.ph-library__wide-title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--home-cream);
  margin: 0;
}

.ph-library__wide-text {
  color: rgba(244, 241, 222, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ===== V3 ===== */
.ph-v3 {
  background: var(--home-blue-deep);
  padding-block: 96px;
}

.ph-v3__inner {
  max-width: 1080px;
}

.ph-v3__head {
  margin-bottom: 48px;
  max-width: 680px;
}

.ph-v3__lead {
  color: rgba(244, 241, 222, 0.65);
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0 0;
}

.ph-v3__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ph-v3__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 241, 222, 0.09);
  border-radius: var(--home-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition, 0.3s), border-color var(--transition, 0.3s);
}

.ph-v3__card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 196, 74, 0.5);
}

.ph-v3__card--accent {
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.14), rgba(255, 107, 53, 0.02));
  border-color: rgba(255, 107, 53, 0.3);
}

.ph-v3__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ph-v3__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--home-yellow);
  background: rgba(233, 196, 74, 0.1);
  padding: 6px 12px;
  border-radius: var(--home-radius-pill);
}

.ph-v3__count {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  color: rgba(244, 241, 222, 0.35);
  font-weight: 700;
}

.ph-v3__card-title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-cream);
  margin: 0;
  line-height: 1.4;
}

.ph-v3__card-text {
  color: rgba(244, 241, 222, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.ph-v3__bottom {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.ph-v3__note {
  font-size: 13px;
  color: rgba(244, 241, 222, 0.45);
  margin: 0;
  max-width: 420px;
}

/* ===== TRUST ===== */
.ph-trust {
  background: linear-gradient(180deg, var(--home-blue-deep), #081523);
  padding-block: 96px;
  border-top: 1px solid rgba(244, 241, 222, 0.07);
}

.ph-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 64px;
}

.ph-trust__title {
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--home-cream);
  line-height: 1.2;
  margin: 0 0 20px;
}

.ph-trust__text {
  color: rgba(244, 241, 222, 0.65);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 32px;
  max-width: 560px;
}

.ph-trust__aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ph-trust__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 241, 222, 0.09);
  border-radius: var(--home-radius-md);
  padding: 24px 20px;
  text-align: center;
}

.ph-trust__stat-num {
  display: block;
  font-family: var(--font-heading, "Space Grotesk", "Noto Sans SC", sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1.1;
}

.ph-trust__stat-label {
  display: block;
  font-size: 12.5px;
  color: rgba(244, 241, 222, 0.5);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ph-hero__inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .ph-hero__visual {
    max-width: 360px;
  }

  .ph-quicknav__inner {
    grid-template-columns: 1fr 1fr;
  }

  .ph-quicknav__title {
    display: none;
  }

  .ph-latest__grid {
    grid-template-columns: 1fr;
  }

  .ph-pcguide__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ph-pcguide__visual {
    max-width: 640px;
  }

  .ph-v3__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ph-trust__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .page-home .container {
    padding-inline: 20px;
  }

  .ph-hero {
    min-height: 0;
    padding-top: calc(var(--header-height, 72px) + 40px);
    padding-bottom: 64px;
  }

  .ph-hero__title {
    font-size: 38px;
  }

  .ph-hero__title-sub {
    font-size: 22px;
  }

  .ph-hero__meta {
    gap: 24px;
  }

  .ph-hero__visual {
    max-width: 100%;
    margin-left: 0;
  }

  .ph-hero__note {
    left: auto;
    right: 0;
  }

  .ph-hero__scroll {
    display: none;
  }

  .ph-quicknav__inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 16px;
  }

  .ph-quicknav__item {
    padding: 14px 16px;
  }

  .ph-latest {
    padding-block: 64px;
  }

  .ph-post-card {
    padding: 24px;
  }

  .ph-pcguide {
    padding-block: 64px;
  }

  .ph-pcguide__step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .ph-subscribe {
    padding-block: 64px;
  }

  .ph-subscribe__panel {
    padding: 36px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ph-subscribe__calendar {
    width: 100%;
    min-height: 160px;
  }

  .ph-library {
    padding-block: 64px;
  }

  .ph-library__grid {
    grid-template-columns: 1fr;
  }

  .ph-library__wide {
    grid-template-columns: 1fr;
  }

  .ph-library__wide-copy {
    padding: 24px;
  }

  .ph-v3 {
    padding-block: 64px;
  }

  .ph-v3__grid {
    grid-template-columns: 1fr;
  }

  .ph-trust {
    padding-block: 64px;
  }

  .ph-trust__aside {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ph-trust__stat {
    padding: 18px 12px;
  }
}
