.page-home {
  --ph-gold: #F5B301;
  --ph-gold-light: #FFD66B;
  --ph-green: #00FF9D;
  --ph-green-dark: #00C77E;
  --ph-blue-900: #0A1E3C;
  --ph-blue-700: #102A48;
  --ph-blue-500: #1B3A5F;
  --ph-text: #E3EEF7;
  --ph-muted: #B8C4D0;
  --ph-radius: 18px;
  --ph-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  position: relative;
  background: var(--ph-blue-900);
  color: var(--ph-text);
  overflow-x: clip;
}

/* ========== HERO ========== */
.ph-hero {
  position: relative;
  padding: 96px 0 140px;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--ph-blue-900);
}

.ph-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ph-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 30, 60, .96) 0%, rgba(10, 30, 60, .86) 40%, rgba(27, 58, 95, .55) 100%),
    radial-gradient(circle at 15% 85%, rgba(0, 255, 157, .22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(245, 179, 1, .18), transparent 32%);
}

.ph-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, var(--ph-blue-900) 100%);
  pointer-events: none;
}

.ph-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
  align-items: center;
}

.ph-hero__core {
  max-width: 780px;
}

.ph-hero__core .mono-label {
  margin-bottom: 14px;
}

.ph-hero__core h1 {
  font-family: 'Oswald', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: .01em;
  margin: 0 0 24px;
  color: var(--ph-text);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.ph-hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ph-muted);
  margin: 0 0 30px;
  max-width: 660px;
}

.ph-hero__desc strong {
  color: var(--ph-gold-light);
  font-weight: 600;
}

.ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.ph-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ph-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ph-mono);
  font-size: .78rem;
  color: var(--ph-muted);
  border: 1px solid rgba(184, 196, 208, .28);
  background: rgba(16, 42, 72, .55);
  border-radius: 999px;
  padding: 6px 14px;
  backdrop-filter: blur(6px);
}

.ph-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ph-green);
  box-shadow: 0 0 8px rgba(0, 255, 157, .65);
  flex: none;
}

.ph-hero__side {
  display: flex;
  justify-content: flex-start;
}

.ph-account-card {
  background: linear-gradient(145deg, rgba(16, 42, 72, .92), rgba(10, 30, 60, .88));
  border: 1px solid rgba(245, 179, 1, .28);
  border-radius: var(--ph-radius);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.ph-account-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ph-gold), var(--ph-green), transparent 80%);
  opacity: .8;
}

.ph-account-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  color: var(--ph-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 196, 208, .16);
}

.ph-account-card__green {
  color: var(--ph-green);
  font-family: var(--ph-mono);
  font-size: .78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ph-account-card__green::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ph-green);
  box-shadow: 0 0 8px rgba(0, 255, 157, .7);
}

.ph-account-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0 6px;
}

.ph-tag {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--ph-mono);
  font-size: .82rem;
  color: var(--ph-muted);
  border: 1px solid rgba(184, 196, 208, .24);
  background: rgba(10, 30, 60, .4);
  border-radius: 10px;
  padding: 9px 14px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.ph-tag .ph-tag__note {
  font-style: normal;
  font-size: .7rem;
  color: rgba(184, 196, 208, .62);
}

.ph-tag:hover {
  border-color: var(--ph-gold);
  background: rgba(27, 58, 95, .55);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.ph-tag--active {
  border-color: var(--ph-gold);
  color: var(--ph-gold-light);
  background: rgba(245, 179, 1, .1);
  box-shadow: 0 0 14px rgba(245, 179, 1, .12);
}

.ph-tag--lw {
  border-color: var(--ph-green);
  color: var(--ph-green);
  background: rgba(0, 255, 157, .08);
  box-shadow: 0 0 14px rgba(0, 255, 157, .14);
}

.ph-account-card__foot {
  padding-top: 14px;
  border-top: 1px solid rgba(184, 196, 208, .16);
  margin-top: 10px;
}

.ph-account-card__foot .mono-label {
  margin: 0;
}

.ph-hero__slant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 3;
  background: linear-gradient(115deg, transparent 0%, transparent 58%, rgba(10, 30, 60, .12) 58%, rgba(10, 30, 60, .12) 100%);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  pointer-events: none;
}

/* ========== SECTION 01: FIND ARCHIVE ========== */
.ph-find {
  padding: 80px 0 72px;
  background: var(--ph-blue-900);
}

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

.ph-find__text h2 {
  font-family: 'Oswald', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0 20px;
  color: var(--ph-text);
}

.ph-find__text p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.ph-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--ph-muted);
  line-height: 1.7;
  font-size: .95rem;
}

.ph-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ph-gold);
  font-family: var(--ph-mono);
  font-size: 1.15rem;
  line-height: 1.6;
}

.ph-list strong {
  color: var(--ph-text);
  font-weight: 600;
}

.ph-find__cta {
  margin-top: 24px;
}

.ph-find__visual {
  position: relative;
}

.ph-figure {
  margin: 0;
  border-radius: var(--ph-radius);
  overflow: hidden;
  background: var(--ph-blue-700);
  border: 1px solid rgba(184, 196, 208, .16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.ph-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ph-figure figcaption {
  font-family: var(--ph-mono);
  font-size: .75rem;
  color: var(--ph-muted);
  padding: 12px 16px;
  border-top: 1px solid rgba(184, 196, 208, .14);
}

.ph-find__float {
  position: absolute;
  right: 16px;
  bottom: -20px;
  background: var(--ph-blue-500);
  border: 1px solid rgba(0, 255, 157, .38);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}

.ph-float-tag {
  font-size: .72rem;
  color: var(--ph-muted);
  font-family: var(--ph-mono);
}

.ph-float-val {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ph-mono);
  color: var(--ph-green);
}

.ph-float-val i {
  font-style: normal;
  font-size: .75rem;
  color: var(--ph-muted);
  font-weight: 400;
  margin-left: 4px;
}

/* ========== SECTION 02: WORLD CUP LW ========== */
.ph-lw {
  padding: 76px 0 80px;
  background: var(--ph-blue-700);
  position: relative;
}

.ph-lw::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 157, .35), var(--ph-gold), transparent);
}

.ph-lw__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.ph-lw__head h2,
.ph-path__head h2,
.ph-sub__content h2,
.ph-stat__text h2,
.ph-platform__head h2,
.ph-news__header h2,
.ph-contact2__text h2 {
  font-family: 'Oswald', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0 16px;
  color: var(--ph-text);
}

.ph-lw__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.ph-lw__visual {
  border-radius: var(--ph-radius);
  overflow: hidden;
  background: var(--ph-blue-500);
  border: 1px solid rgba(245, 179, 1, .2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.ph-lw__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ph-lw__list p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: .98rem;
}

.ph-lw__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.ph-lw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(27, 58, 95, .45);
  border: 1px solid rgba(184, 196, 208, .16);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--ph-text);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.ph-lw-item:hover {
  border-color: var(--ph-gold);
  background: rgba(27, 58, 95, .75);
  transform: translateY(-2px);
}

.ph-lw-item i {
  font-style: normal;
  font-family: var(--ph-mono);
  font-size: .76rem;
  color: var(--ph-gold);
  background: rgba(245, 179, 1, .1);
  border-radius: 6px;
  padding: 2px 8px;
  border: 1px solid rgba(245, 179, 1, .22);
}

.ph-lw__note {
  font-size: .9rem;
  color: var(--ph-muted);
}

.ph-lw__note a {
  color: var(--ph-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 179, 1, .5);
  transition: border-color .25s ease, color .25s ease;
}

.ph-lw__note a:hover {
  border-color: var(--ph-gold);
  color: var(--ph-gold);
}

/* ========== SECTION 03: PATH / LEAGUE NAV ========== */
.ph-path {
  padding: 80px 0 72px;
  background: var(--ph-blue-900);
}

.ph-path__head {
  max-width: 620px;
  margin-bottom: 40px;
}

.ph-path__head p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin-top: 12px;
}

.ph-path__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.ph-path-step {
  background: rgba(16, 42, 72, .55);
  border: 1px solid rgba(184, 196, 208, .16);
  border-left: 3px solid var(--ph-gold);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: background .25s ease, transform .25s ease;
}

.ph-path-step:hover {
  background: rgba(27, 58, 95, .55);
  transform: translateY(-3px);
}

.ph-path-step__num {
  font-family: var(--ph-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ph-gold);
  opacity: .85;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.ph-path-step h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ph-text);
  margin: 0 0 8px;
}

.ph-path-step p {
  color: var(--ph-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}

.ph-path__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ph-chip {
  font-family: var(--ph-mono);
  font-size: .78rem;
  color: var(--ph-muted);
  background: rgba(27, 58, 95, .45);
  border: 1px solid rgba(184, 196, 208, .2);
  border-radius: 999px;
  padding: 7px 16px;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.ph-chip:hover {
  border-color: var(--ph-green);
  color: var(--ph-green);
  background: rgba(0, 255, 157, .07);
}

/* ========== SECTION 04: SUBSCRIPTION ========== */
.ph-sub {
  padding: 80px 0;
  background: var(--ph-blue-700);
  position: relative;
}

.ph-sub::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(0, 255, 157, .08), transparent 36%);
  pointer-events: none;
}

.ph-sub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.ph-sub__content > p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.ph-sub__features {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.ph-feature {
  display: flex;
  gap: 14px;
  background: rgba(10, 30, 60, .5);
  border: 1px solid rgba(184, 196, 208, .16);
  border-radius: 14px;
  padding: 18px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.ph-feature:hover {
  border-color: rgba(245, 179, 1, .6);
  transform: translateX(4px);
  background: rgba(27, 58, 95, .5);
}

.ph-feature__idx {
  font-family: var(--ph-mono);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ph-gold);
  background: rgba(245, 179, 1, .1);
  border: 1px solid rgba(245, 179, 1, .3);
  border-radius: 8px;
  padding: 4px 9px;
  height: fit-content;
}

.ph-feature strong {
  font-size: 1rem;
  color: var(--ph-text);
  display: block;
  margin-bottom: 4px;
}

.ph-feature p {
  font-size: .86rem;
  color: var(--ph-muted);
  line-height: 1.6;
  margin: 0;
}

.ph-sub__visual {
  display: flex;
  align-items: center;
}

.ph-push {
  width: 100%;
  background: rgba(10, 30, 60, .6);
  border: 1px solid rgba(0, 255, 157, .24);
  border-radius: var(--ph-radius);
  padding: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
}

.ph-push__title {
  font-family: var(--ph-mono);
  font-size: .75rem;
  color: var(--ph-green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 255, 157, .2);
}

.ph-push__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 196, 208, .1);
}

.ph-push__item:last-child {
  border-bottom: none;
}

.ph-push__time {
  font-family: var(--ph-mono);
  font-size: .7rem;
  color: var(--ph-gold);
  background: rgba(245, 179, 1, .1);
  border-radius: 6px;
  padding: 2px 8px;
  white-space: nowrap;
  flex: none;
}

.ph-push__item--green .ph-push__time {
  color: var(--ph-green);
  background: rgba(0, 255, 157, .1);
}

.ph-push__item p {
  margin: 0;
  font-size: .9rem;
  color: var(--ph-text);
  line-height: 1.5;
}

/* ========== SECTION 05: STATS ========== */
.ph-stat {
  padding: 80px 0;
  background: var(--ph-blue-900);
}

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

.ph-stat__text p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.ph-stat__list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  color: var(--ph-text);
}

.ph-stat__list li b {
  font-family: var(--ph-mono);
  font-size: .86rem;
  color: var(--ph-gold-light);
  min-width: 64px;
  text-align: right;
}

.ph-stat__bar {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(184, 196, 208, .14);
  overflow: hidden;
}

.ph-stat__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--ph-gold), var(--ph-green));
  border-radius: 999px;
  opacity: .9;
}

.ph-stat__aside {
  display: flex;
  justify-content: center;
}

.ph-stat__card {
  background: linear-gradient(145deg, rgba(16, 42, 72, .88), rgba(10, 30, 60, .9));
  border: 1px solid rgba(245, 179, 1, .3);
  border-radius: var(--ph-radius);
  padding: 26px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
  position: relative;
}

.ph-stat__card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-green);
  box-shadow: 0 0 10px rgba(0, 255, 157, .6);
}

.ph-stat__card-label {
  font-family: var(--ph-mono);
  font-size: .72rem;
  color: var(--ph-muted);
  margin-bottom: 8px;
}

.ph-stat__card-id {
  font-family: var(--ph-mono);
  font-size: 1.3rem;
  color: var(--ph-gold-light);
  margin: 0 0 20px;
}

.ph-stat__card-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(184, 196, 208, .12);
  font-size: .92rem;
  color: var(--ph-text);
}

.ph-stat__card-row span:last-child {
  font-family: var(--ph-mono);
  color: var(--ph-text);
}

.ph-stat__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--ph-mono);
  font-size: .73rem;
  color: var(--ph-green);
}

/* ========== SECTION 06: PLATFORM ========== */
.ph-platform {
  padding: 84px 0 80px;
  background: var(--ph-blue-700);
  position: relative;
  overflow: hidden;
}

.ph-platform::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(245, 179, 1, .18);
  box-sizing: border-box;
}

.ph-platform::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, .14);
  box-sizing: border-box;
}

.ph-platform__head {
  max-width: 640px;
  margin-bottom: 40px;
}

.ph-platform__head p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.ph-platform__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ph-platform__visual {
  border-radius: var(--ph-radius);
  overflow: hidden;
  border: 1px solid rgba(184, 196, 208, .16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.ph-platform__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.ph-platform__nums {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ph-statnum {
  background: rgba(10, 30, 60, .55);
  border: 1px solid rgba(184, 196, 208, .15);
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .25s ease, transform .25s ease;
}

.ph-statnum:hover {
  border-color: var(--ph-gold);
  transform: translateY(-3px);
}

.ph-statnum__value {
  font-family: var(--ph-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ph-gold-light);
  line-height: 1.1;
}

.ph-statnum__label {
  font-size: .82rem;
  color: var(--ph-muted);
}

.ph-platform__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.ph-fact {
  background: rgba(27, 58, 95, .45);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(184, 196, 208, .14);
}

.ph-fact span {
  font-family: var(--ph-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ph-green);
}

.ph-fact p {
  font-size: .82rem;
  color: var(--ph-muted);
  margin: 0;
  line-height: 1.5;
}

.ph-platform__team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.ph-platform__team div {
  background: rgba(10, 30, 60, .5);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(184, 196, 208, .1);
}

.ph-platform__team span {
  display: block;
  font-family: var(--ph-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ph-text);
}

.ph-platform__team p {
  margin: 4px 0 0;
  font-size: .68rem;
  color: var(--ph-muted);
  line-height: 1.4;
}

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

.ph-platform__honors div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(245, 179, 1, .06);
  border: 1px solid rgba(245, 179, 1, .24);
  border-radius: 12px;
  padding: 14px 18px;
}

.ph-platform__honors span {
  font-size: .92rem;
  color: var(--ph-text);
  font-weight: 500;
}

.ph-platform__honors i {
  font-style: normal;
  font-size: .7rem;
  font-family: var(--ph-mono);
  color: var(--ph-gold);
  white-space: nowrap;
}

/* ========== SECTION 07: NEWS ========== */
.ph-news {
  padding: 80px 0;
  background: var(--ph-blue-900);
}

.ph-news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.ph-news__header h2 {
  margin-bottom: 0;
}

.ph-news__list {
  display: grid;
  gap: 12px;
}

.ph-news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background: rgba(16, 42, 72, .55);
  border: 1px solid rgba(184, 196, 208, .14);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.ph-news-item:hover {
  border-color: rgba(245, 179, 1, .4);
  background: rgba(27, 58, 95, .4);
  transform: translateY(-2px);
}

.ph-news-item__cat {
  font-family: var(--ph-mono);
  font-size: .7rem;
  color: var(--ph-green);
  background: rgba(0, 255, 157, .08);
  border: 1px solid rgba(0, 255, 157, .18);
  border-radius: 6px;
  padding: 3px 10px;
  width: fit-content;
}

.ph-news-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ph-text);
  margin: 0;
  line-height: 1.5;
}

.ph-news-item p {
  font-size: .86rem;
  color: var(--ph-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========== SECTION 08: CONTACT ========== */
.ph-contact2 {
  padding: 80px 0 100px;
  background: var(--ph-blue-900);
}

.ph-contact2__card {
  background: linear-gradient(135deg, rgba(16, 42, 72, .9), rgba(27, 58, 95, .8));
  border: 1px solid rgba(245, 179, 1, .24);
  border-radius: 20px;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.ph-contact2__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ph-gold), var(--ph-green));
}

.ph-contact2__text h2 {
  margin-bottom: 12px;
}

.ph-contact2__text p {
  color: var(--ph-muted);
  line-height: 1.75;
  margin: 0;
  font-size: .95rem;
}

.ph-contact2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ph-contact2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-family: var(--ph-mono);
  font-size: .78rem;
  color: var(--ph-muted);
  border-top: 1px solid rgba(184, 196, 208, .16);
  padding-top: 16px;
}

/* ============== MEDIA: TABLET ============== */
@media (min-width: 768px) {
  .ph-hero {
    padding: 120px 0 160px;
    min-height: 700px;
  }

  .ph-hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }

  .ph-account-card {
    padding: 28px;
  }

  .ph-find__grid {
    grid-template-columns: 5fr 6fr;
    gap: 56px;
    align-items: center;
  }

  .ph-lw__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .ph-lw__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ph-path__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .ph-sub__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .ph-stat__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .ph-platform__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .ph-platform__facts {
    grid-template-columns: repeat(4, 1fr);
  }

  .ph-platform__honors {
    grid-template-columns: repeat(2, 1fr);
  }

  .ph-news-item {
    grid-template-columns: 180px 1fr;
    gap: 4px 20px;
    align-items: start;
  }

  .ph-news-item__cat {
    grid-row: span 2;
  }

  .ph-contact2__card {
    padding: 44px 40px;
    grid-template-columns: 1fr auto;
    gap: 20px 32px;
  }

  .ph-contact2__text {
    grid-column: 1 / -1;
  }

  .ph-contact2__meta {
    grid-column: 1 / -1;
  }
}

/* ============== MEDIA: DESKTOP ============== */
@media (min-width: 1024px) {
  .ph-hero {
    min-height: 760px;
  }

  .ph-lw__body {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: center;
  }

  .ph-lw__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ph-path__steps {
    gap: 20px;
  }

  .ph-platform__nums {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ph-platform__team {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .ph-platform__honors {
    gap: 16px;
  }
}

.page-home {
  --w: 1rem;
}
