.page-home {
  --ph-diag: clamp(120px, 22vw, 280px);
  --ph-hero-pad: clamp(72px, 12vw, 148px);
  --ph-score-w: clamp(260px, 30vw, 360px);
  overflow-x: clip;
}

/* ============ HERO ============ */
.page-home .ph-hero {
  position: relative;
  padding: var(--ph-hero-pad) 0 clamp(64px, 9vw, 120px);
  background: var(--night);
  overflow: hidden;
  isolation: isolate;
}

.page-home .ph-hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: clamp(320px, 60vw, 720px);
  height: clamp(320px, 60vw, 720px);
  background: linear-gradient(150deg, var(--phantom), var(--shadow-purple) 62%, transparent 100%);
  transform: rotate(-14deg);
  opacity: .55;
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.page-home .ph-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .22;
  mix-blend-mode: screen;
}

.page-home .ph-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  max-width: 100%;
}

.page-home .ph-hero__pitch {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .09;
  pointer-events: none;
}

.page-home .ph-hero__pitch svg {
  width: 140%;
  height: 100%;
  fill: none;
  stroke: var(--steel);
  stroke-width: 1.4;
  transform: translateX(-18%);
}

.page-home .ph-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.page-home .ph-hero__copy {
  max-width: 34ch;
}

.page-home .ph-eyebrow,
.page-home .gs-eyebrow {
  display: inline-block;
}

.page-home .ph-hero__title {
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.02em;
  color: var(--mist);
  text-wrap: balance;
}

.page-home .ph-hero__title-accent {
  position: relative;
  display: inline-block;
  color: var(--phantom);
}

.page-home .ph-hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: -4px;
  bottom: .08em;
  height: .16em;
  background: var(--lime);
  opacity: .85;
  z-index: -1;
}

.page-home .ph-hero__lede {
  max-width: 30ch;
  color: var(--mist);
  font-size: clamp(1rem, 1.1vw + .7rem, 1.18rem);
  line-height: 1.7;
  opacity: .9;
}

.page-home .ph-hero__cta {
  margin-top: 28px;
}

.page-home .ph-hero__device {
  margin-top: 18px;
  color: var(--steel);
}

/* score board */
.page-home .ph-score {
  justify-self: stretch;
  padding: 22px 22px 18px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--line-strong);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.page-home .ph-score:hover {
  transform: translateY(-4px);
  border-color: var(--phantom);
}

.page-home .ph-score__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .ph-score__round {
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--steel);
  text-transform: uppercase;
}

.page-home .ph-score__board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .ph-score__side {
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--steel);
  text-transform: uppercase;
}

.page-home .ph-score__side:first-child { text-align: right; }
.page-home .ph-score__side:last-child { text-align: left; }

.page-home .ph-score__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(198, 255, 74, .5), 0 0 4px rgba(198, 255, 74, .7);
  letter-spacing: .04em;
}

.page-home .ph-score__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  color: var(--mist);
  width: 100%;
  font: inherit;
  font-size: .88rem;
  letter-spacing: .04em;
  cursor: pointer;
  border-bottom: 1px dashed var(--line);
}

.page-home .ph-score__panel-icon {
  color: var(--lime);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .2s var(--ease);
}

.page-home .ph-score__panel[aria-expanded="true"] .ph-score__panel-icon {
  transform: rotate(45deg);
}

.page-home .ph-score__detail {
  margin-top: 12px;
}

.page-home .ph-score__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .ph-score__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .84rem;
  color: var(--mist);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.page-home .ph-score__list li:last-child { border-bottom: 0; }
.page-home .ph-score__list span:last-child { color: var(--lime); }

@media (min-width: 880px) {
  .page-home .ph-hero__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .78fr);
  }
  .page-home .ph-score {
    justify-self: end;
    width: var(--ph-score-w);
  }
}

/* ============ SIX COLUMNS ============ */
.page-home .ph-cols {
  position: relative;
  background: var(--night);
  padding: clamp(72px, 10vw, 128px) 0 clamp(72px, 10vw, 120px);
  color: var(--mist);
}

.page-home .ph-cols__head {
  max-width: 62ch;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.page-home .ph-cols__lede {
  max-width: 52ch;
  color: var(--mist);
  opacity: .78;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-top: 12px;
}

.page-home .ph-cols__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.page-home .ph-col {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(233,230,245,.06), rgba(122,77,255,.05));
  border: 1px solid var(--line);
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.page-home .ph-col:hover,
.page-home .ph-col:focus-within {
  transform: translateY(-4px);
  border-color: var(--phantom);
  box-shadow: 0 30px 60px -34px rgba(122, 77, 255, .8);
}

.page-home .ph-col__index {
  display: block;
  font-size: .78rem;
  letter-spacing: .22em;
  color: var(--steel);
  margin-bottom: 12px;
}

.page-home .ph-col__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--mist);
  margin: 0 0 10px;
  font-weight: 700;
}

.page-home .ph-col__text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--mist);
  opacity: .82;
  margin: 0 0 16px;
}

.page-home .ph-cols__foot {
  margin-top: clamp(36px, 5vw, 56px);
  font-size: .94rem;
  color: var(--steel);
}

.page-home .ph-cols__foot .gs-link {
  margin-left: 6px;
}

@media (min-width: 620px) {
  .page-home .ph-cols__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-home .ph-cols__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(0, auto);
    align-items: start;
  }
  .page-home .ph-col--a { grid-column: 1 / 3; grid-row: 1; }
  .page-home .ph-col--b { grid-column: 3 / 5; grid-row: 1; margin-top: 28px; }
  .page-home .ph-col--c { grid-column: 5 / 7; grid-row: 1; margin-top: -12px; }
  .page-home .ph-col--d { grid-column: 1 / 3; grid-row: 2; margin-top: 12px; }
  .page-home .ph-col--e { grid-column: 3 / 5; grid-row: 2; margin-top: 40px; }
  .page-home .ph-col--f { grid-column: 5 / 7; grid-row: 2; margin-top: 0; }
}

/* ============ STATS ============ */
.page-home .ph-stats {
  position: relative;
  padding: clamp(80px, 10vw, 132px) 0;
  background: var(--night);
  overflow: hidden;
}

.page-home .ph-stats__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
}

.page-home .ph-stats__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-home .ph-stats::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -40%;
  height: 70%;
  background: radial-gradient(60% 100% at 50% 0, rgba(122,77,255,.28), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.page-home .ph-stats__inner {
  position: relative;
  z-index: 1;
}

.page-home .ph-stats__head {
  max-width: 54ch;
  margin-bottom: clamp(36px, 5vw, 56px);
}

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

.page-home .ph-stat {
  padding: 22px 18px 20px;
  border-radius: var(--radius-s);
}

.page-home .ph-stat .gs-data-card__value {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.page-home .ph-stats__tape {
  margin-top: clamp(36px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--steel);
}

.page-home .ph-stats__tape span::after {
  content: "·";
  margin-left: 20px;
  color: var(--steel);
  opacity: .6;
}

.page-home .ph-stats__tape span:last-child::after { content: ""; }

.page-home .ph-stats__note {
  margin-top: 20px;
  color: var(--steel);
}

@media (min-width: 720px) {
  .page-home .ph-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============ INSTALL ============ */
.page-home .ph-install {
  padding: clamp(80px, 10vw, 128px) 0;
}

.page-home .ph-install__inner {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.page-home .ph-install__copy {
  max-width: 58ch;
}

.page-home .ph-install__lede {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.75;
}

.page-home .ph-steps {
  list-style: none;
  margin: clamp(32px, 4vw, 44px) 0 0;
  padding: 0;
  position: relative;
}

.page-home .ph-steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom, var(--phantom) 0%, var(--shadow-purple) 60%, transparent 100%);
  opacity: .55;
}

.page-home .ph-step {
  position: relative;
  padding: 0 0 26px 58px;
}

.page-home .ph-step:last-child { padding-bottom: 0; }

.page-home .ph-step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  border: 1px solid var(--phantom);
  color: var(--lime);
  font-size: .95rem;
  box-shadow: 0 0 0 6px rgba(122,77,255,.08);
}

.page-home .ph-step__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -.005em;
  margin: 4px 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.page-home .ph-step__text {
  margin: 0;
  font-size: .95rem;
  line-height: 1.72;
  color: var(--ink);
  opacity: .82;
}

.page-home .ph-install__cta {
  margin-top: clamp(28px, 4vw, 40px);
}

.page-home .ph-install__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.6);
  margin: 0;
}

@media (min-width: 960px) {
  .page-home .ph-install__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: center;
  }
}

/* ============ ORG ============ */
.page-home .ph-org {
  position: relative;
  background: var(--night);
  padding: clamp(80px, 10vw, 132px) 0;
  overflow: hidden;
}

.page-home .ph-org__card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #F7F2E9;
  border-radius: var(--radius);
  border: 1px solid rgba(34,27,26,.08);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.9);
}

.page-home .ph-org__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .28;
}

.page-home .ph-org__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .ph-org__body {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4.6vw, 56px);
  max-width: 62ch;
}

.page-home .ph-org__body .gs-eyebrow {
  color: var(--phantom);
}

.page-home .ph-org__text {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink);
  opacity: .86;
}

.page-home .ph-org__list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .ph-org__list li {
  position: relative;
  padding-left: 22px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink);
}

.page-home .ph-org__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,210,63,.22);
}

.page-home .ph-org__list li:nth-child(2)::before { background: var(--red); box-shadow: 0 0 0 3px rgba(255,61,87,.2); }
.page-home .ph-org__list li:nth-child(3)::before { background: var(--phantom); box-shadow: 0 0 0 3px rgba(122,77,255,.2); }

.page-home .ph-org__card .gs-title--s {
  color: var(--ink);
}

/* ============ FAQ ============ */
.page-home .ph-faq {
  padding: clamp(80px, 10vw, 128px) 0;
}

.page-home .ph-faq__head {
  margin-bottom: clamp(32px, 4.4vw, 48px);
}

.page-home .ph-faq__list {
  gap: 12px;
}

.page-home .ph-faq__item {
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  background: rgba(233,230,245,.03);
  transition: border-color .2s var(--ease);
}

.page-home .ph-faq__item:hover {
  border-color: var(--phantom);
}

.page-home .ph-faq__toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--mist);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.005em;
  cursor: pointer;
  position: relative;
  padding-right: 56px;
}

.page-home .ph-faq__toggle::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lime);
  font-size: 1.35rem;
  font-family: var(--font-mono);
  transition: transform .2s var(--ease);
}

.page-home .ph-faq__toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-home .ph-faq__panel {
  padding: 0 22px 22px;
}

.page-home .ph-faq__panel p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.78;
  color: var(--mist);
  opacity: .84;
}

.page-home .ph-faq__foot {
  margin-top: 28px;
  color: var(--steel);
}

.page-home .ph-faq__foot .gs-link {
  margin: 0 4px;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .page-home .ph-hero::before,
  .page-home .ph-hero__pitch svg {
    transform: none;
  }
  .page-home .ph-score,
  .page-home .ph-col {
    transition: none;
  }
}

<link rel="stylesheet" href="/assets/page-home.css">
<<<END_CSS>>>
