.page-home {
  --triage-angle: 16px;
  --gold-deep: rgba(232, 184, 75, 0.12);
  --red-deep: rgba(192, 57, 43, 0.10);
  --gold-line: rgba(232, 184, 75, 0.35);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  background: var(--gradient-hero);
}
.page-home .home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(232, 184, 75, 0.16), transparent 32%),
    radial-gradient(circle at 70% 60%, rgba(192, 57, 43, 0.12), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(245, 213, 130, 0.08), transparent 22%),
    radial-gradient(circle at 28% 80%, rgba(232, 184, 75, 0.06), transparent 18%);
}
.page-home .home-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-red-light) 60%, transparent);
  z-index: 1;
}
.page-home .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 72px 0 56px;
}
.page-home .hero-copy {
  position: relative;
  z-index: 2;
}
.page-home .hero-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-impact);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}
.page-home .hero-topline::before {
  content: '';
  flex: 0 0 auto;
  width: 32px;
  height: 2px;
  background: var(--color-red-light);
}
.page-home .hero-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 3.8rem);
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.page-home .hero-title-accent {
  position: relative;
  display: block;
  color: var(--color-gold);
  padding-bottom: 8px;
}
.page-home .hero-title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}
.page-home .hero-title-base {
  display: block;
}
.page-home .hero-lede {
  margin: 0 0 28px;
  max-width: 33em;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}
.page-home .hero-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.page-home .hero-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(122, 92, 46, 0.4);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.page-home .hero-tab:hover {
  border-color: var(--color-gold);
  background: rgba(232, 184, 75, 0.06);
}
.page-home .hero-tab-num {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  color: var(--color-gold);
}
.page-home .hero-tab-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.98rem;
}
.page-home .hero-tab-arrow {
  color: var(--color-gold);
  transition: transform 0.3s var(--ease);
}
.page-home .hero-tab:hover .hero-tab-arrow {
  transform: translateX(6px);
}
.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 92, 46, 0.45);
}
.page-home .hero-meta-tag {
  font-family: var(--font-impact);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: var(--gold-deep);
  padding: 5px 12px;
  border-left: 3px solid var(--color-gold);
}
.page-home .hero-meta-note {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}
.page-home .hero-ios-link {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-red-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 76, 60, 0.4);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.page-home .hero-ios-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.page-home .hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid rgba(192, 57, 43, 0.25);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.page-home .hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-home .hero-trail {
  position: absolute;
  left: 6%;
  bottom: 16%;
  width: 70%;
  max-width: 260px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.page-home .hero-watermark {
  position: absolute;
  right: 8px;
  bottom: 10px;
  font-family: var(--font-impact);
  font-size: clamp(44px, 9vw, 96px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(232, 184, 75, 0.10);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.page-home .home-triage {
  padding: 64px 0 56px;
}
.page-home .triage-head {
  margin-bottom: 36px;
}
.page-home .triage-grid {
  display: grid;
  gap: 20px;
}
.page-home .triage-card {
  --card-accent: var(--color-gold);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--gradient-card);
  clip-path: polygon(
    var(--triage-angle) 0,
    100% 0,
    100% calc(100% - var(--triage-angle)),
    calc(100% - var(--triage-angle)) 100%,
    0 100%,
    0 var(--triage-angle)
  );
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.page-home .triage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(122, 92, 46, 0.55);
  clip-path: inherit;
  pointer-events: none;
}
.page-home .triage-card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.35));
}
.page-home .triage-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.page-home .triage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.page-home .triage-card:hover .triage-media img {
  transform: scale(1.04);
}
.page-home .triage-media-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 22%, rgba(232, 184, 75, 0.14), transparent 50%),
    linear-gradient(145deg, #171717, #0d0d0d);
}
.page-home .triage-viz {
  width: 56%;
  max-width: 140px;
  height: auto;
}
.page-home .triage-card-data {
  --card-accent: var(--color-red-light);
}
.page-home .triage-card-replay {
  --card-accent: var(--color-gold-light);
}
.page-home .triage-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-impact);
  font-size: 1.6rem;
  line-height: 1;
  padding: 6px 10px;
  background: rgba(10, 10, 10, 0.72);
  color: var(--card-accent, var(--color-gold));
  border-left: 3px solid var(--card-accent, var(--color-gold));
}
.page-home .triage-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}
.page-home .triage-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--card-accent, var(--color-gold));
}
.page-home .triage-desc {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.page-home .triage-subs {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .triage-subs li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
}
.page-home .triage-subs li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--card-accent, var(--color-red-light));
}
.page-home .triage-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 3px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 184, 75, 0.4);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.page-home .triage-link:hover {
  gap: 12px;
  color: var(--color-gold);
}

.page-home .home-hybrid {
  padding: 56px 0;
}
.page-home .hybrid-grid {
  display: grid;
  gap: 24px;
}
.page-home .expert-panel,
.page-home .video-panel {
  background: var(--gradient-card);
  border: 1px solid rgba(122, 92, 46, 0.4);
  padding: 24px;
}
.page-home .panel-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(122, 92, 46, 0.5);
}
.page-home .panel-titlebar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-text);
}
.page-home .expert-list,
.page-home .video-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.page-home .expert-list {
  display: grid;
  gap: 16px;
}
.page-home .expert-item {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(122, 92, 46, 0.5);
}
.page-home .expert-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.page-home .expert-cat {
  font-family: var(--font-impact);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red-light);
}
.page-home .expert-title-link {
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.page-home .expert-title-link:hover {
  color: var(--color-gold);
}
.page-home .expert-meta {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}
.page-home .panel-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.page-home .panel-more-link:hover {
  gap: 12px;
  color: var(--color-gold-light);
}
.page-home .video-list {
  display: grid;
  gap: 14px;
}
.page-home .video-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  column-gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(122, 92, 46, 0.5);
  text-decoration: none;
  color: var(--color-text);
}
.page-home .video-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.page-home .video-thumb {
  position: relative;
  display: block;
}
.page-home .video-thumb img {
  display: block;
  width: 100px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
}
.page-home .video-duration {
  position: absolute;
  right: 3px;
  bottom: 3px;
  padding: 1px 5px;
  font-size: 0.65rem;
  background: rgba(10, 10, 10, 0.8);
  color: var(--color-gold-light);
}
.page-home .video-info {
  display: grid;
  gap: 4px;
}
.page-home .video-title {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}
.page-home .video-meta {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}
.page-home .video-cta {
  font-size: 1.1rem;
  color: var(--color-gold);
}
.page-home .video-item-textonly {
  grid-template-columns: 36px 1fr auto;
}
.page-home .video-index {
  font-family: var(--font-impact);
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0.75;
}

.page-home .home-ios {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}
.page-home .home-ios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232, 184, 75, 0.10), transparent 45%);
  pointer-events: none;
}
.page-home .ios-shell {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}
.page-home .ios-lede {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
.page-home .check-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-home .check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--color-text);
}
.page-home .check-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 3px;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(-45deg);
}
.page-home .ios-visual {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.12), rgba(10, 10, 10, 0.5));
}
.page-home .ios-visual img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-home .home-update {
  padding: 24px 0 80px;
}
.page-home .update-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(232, 184, 75, 0.25);
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.08) 0%, rgba(10, 10, 10, 0) 55%);
}
.page-home .update-banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-red-light) 70%, transparent 100%);
}
.page-home .update-mark {
  flex: 0 0 auto;
}
.page-home .update-mark svg {
  display: block;
  width: 44px;
  height: 44px;
}
.page-home .update-kicker {
  margin: 0 0 4px;
  font-family: var(--font-impact);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red-light);
}
.page-home .update-copy h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-gold);
}
.page-home .update-copy p {
  margin: 0;
  max-width: 480px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.page-home .update-cta {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .page-home .hero-inner {
    padding: 96px 0 80px;
  }
  .page-home .hero-visual {
    min-height: 320px;
  }
  .page-home .hero-tabs {
    flex-direction: row;
  }
  .page-home .hero-tab {
    flex: 1;
  }
  .page-home .home-triage,
  .page-home .home-hybrid,
  .page-home .home-ios {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .page-home .hybrid-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .page-home .update-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
  }
  .page-home .hero-visual {
    min-height: 460px;
  }
  .page-home .triage-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .page-home .ios-shell {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .page-home .home-update {
    padding-bottom: 96px;
  }
}
<<<PAGE_CSS_END>>>
