.page-home {
  --home-gap: 18px;
  background: var(--color-cream);
}

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

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}
.page-home .home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(118deg, rgba(28, 42, 68, .92) 0%, rgba(28, 42, 68, .42) 55%, rgba(217, 58, 43, .18) 100%);
}
.page-home .home-hero__scrim::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(115deg, transparent 42%, rgba(217, 58, 43, .14) 50%, transparent 58%);
  animation: phx-home-beam 8s linear infinite;
}
@keyframes phx-home-beam {
  from { transform: translateX(-22%); }
  to { transform: translateX(22%); }
}
.page-home .home-hero__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.2rem;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 4.5rem;
}
.page-home .home-hero__content {
  max-width: 760px;
}
.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 169, 79, .45);
  background: rgba(28, 42, 68, .24);
  color: var(--color-gold);
  font-size: .8rem;
  letter-spacing: .14em;
}
.page-home .home-hero__title {
  color: var(--color-card);
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 1.3rem 0 1rem;
}
.page-home .home-hero__title em {
  font-style: normal;
  color: var(--color-gold);
}
.page-home .home-hero__lead {
  max-width: 32em;
  color: rgba(255, 248, 240, .85);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 0;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}
.page-home .home-hero__actions .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.page-home .home-hero .btn--outline {
  border-color: rgba(255, 248, 240, .55);
  color: var(--color-card);
  background: transparent;
}
.page-home .home-hero .btn--outline:hover {
  border-color: var(--color-card);
  background: rgba(255, 248, 240, .08);
}
.page-home .home-hero__aside {
  max-width: 460px;
}
.page-home .home-hero__panel {
  background: rgba(255, 248, 240, .1);
  border: 1px solid rgba(255, 248, 240, .2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.page-home .home-hero__panel-title {
  display: block;
  color: var(--color-gold);
  font-size: .76rem;
  letter-spacing: .16em;
  margin-bottom: 1rem;
}
.page-home .home-hero__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin: 0;
}
.page-home .home-hero__item dt {
  color: rgba(255, 248, 240, .62);
  font-size: .72rem;
}
.page-home .home-hero__item dd {
  margin: .25rem 0 0;
  color: var(--color-card);
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: .01em;
}
.page-home .home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 248, 240, .72);
  font-size: .72rem;
  letter-spacing: .18em;
  text-decoration: none;
}
.page-home .home-hero__scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.page-home .home-tools {
  padding: 4.5rem 0 1.5rem;
}
.page-home .home-tools__head {
  display: grid;
  gap: .6rem;
  margin-bottom: 2rem;
}
.page-home .section-title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--color-ink);
  margin: 0;
}
.page-home .section-lead {
  color: var(--color-muted);
  max-width: 34em;
  margin: 0;
  line-height: 1.7;
}
.page-home .home-tools__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  align-items: stretch;
}
.page-home .home-tool-card {
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-home .home-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.page-home .home-tool-card--history {
  background: var(--color-deep);
  color: var(--color-card);
  border: none;
}
.page-home .home-tool-card--favorite {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  overflow: hidden;
}
.page-home .home-tool-card--lineup {
  background: var(--grad-flame);
  color: var(--color-card);
  border: none;
}
.page-home .home-tool-card--guide {
  background: var(--color-cream);
  border: 1px dashed var(--color-gold);
  min-height: auto;
}
.page-home .home-tool-card__icon {
  line-height: 0;
}
.page-home .home-tool-card__icon svg {
  width: 46px;
  height: 46px;
}
.page-home .home-tool-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em;
}
.page-home .home-tool-card--history .home-tool-card__title,
.page-home .home-tool-card--lineup .home-tool-card__title {
  color: var(--color-card);
}
.page-home .home-tool-card__desc {
  margin: 0;
  font-size: .94rem;
  line-height: 1.65;
}
.page-home .home-tool-card--history .home-tool-card__desc,
.page-home .home-tool-card--lineup .home-tool-card__desc {
  color: rgba(255, 248, 240, .8);
}
.page-home .home-tool-card__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: .74rem;
  letter-spacing: .04em;
}
.page-home .home-tool-card--favorite .home-tool-card__tag {
  background: rgba(217, 58, 43, .08);
  border-color: rgba(217, 58, 43, .18);
  color: var(--color-flame-dark);
}
.page-home .home-tool-card__figure {
  margin: -1.7rem -1.7rem 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.page-home .home-tool-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-tool-card__body {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.page-home .home-tool-card__guide-label {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--color-flame);
  margin: 0;
}
.page-home .home-tool-card__steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: .5rem;
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.6;
}
.page-home .home-tool-card__steps li::marker {
  color: var(--color-gold);
}
.page-home .home-tool-card--guide .btn {
  align-self: flex-start;
  margin-top: .3rem;
}

.page-home .home-local {
  background: var(--color-deep);
  color: var(--color-card);
  margin-top: 4rem;
  padding: 3.2rem 0 3.6rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.page-home .home-local .section-title {
  color: var(--color-card);
}
.page-home .home-local .section-lead {
  color: rgba(255, 248, 240, .74);
}
.page-home .home-local .section-label {
  background: rgba(212, 169, 79, .14);
  color: var(--color-gold);
  border-color: rgba(212, 169, 79, .4);
}
.page-home .home-local__grid {
  display: grid;
  gap: 2.2rem;
  margin-top: 2.2rem;
}
.page-home .home-local__copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}
.page-home .home-local__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.page-home .home-local__points li {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  color: rgba(255, 248, 240, .82);
  font-size: .94rem;
  line-height: 1.6;
}
.page-home .home-local__points strong {
  color: var(--color-gold);
  font-weight: 600;
}
.page-home .home-local__link {
  display: inline-block;
  color: var(--color-card);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 169, 79, .45);
  font-size: .88rem;
  padding-bottom: 2px;
}
.page-home .home-local__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .75rem;
  align-items: center;
}
.page-home .home-local__compare-item {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}
.page-home .home-local__compare-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 248, 240, .72);
  margin-bottom: .9rem;
}
.page-home .home-local__compare-tag--gold {
  background: rgba(212, 169, 79, .16);
  color: var(--color-gold);
}
.page-home .home-local__switch {
  color: var(--color-gold);
  font-size: 1.5rem;
  text-align: center;
}
.page-home .home-local__mock {
  display: grid;
  gap: .55rem;
}
.page-home .mock-line {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 248, 240, .22);
}
.page-home .mock-line--long { width: 100%; }
.page-home .mock-line--short { width: 68%; }
.page-home .mock-line--shortest { width: 42%; }
.page-home .home-local__mock--simple .mock-line {
  background: rgba(212, 169, 79, .46);
}

.page-home .home-data {
  padding: 4.5rem 0 1.5rem;
}
.page-home .home-data__head {
  margin-bottom: 2rem;
}
.page-home .home-data__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}
.page-home .home-data-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .5rem;
  min-height: 210px;
}
.page-home .home-data-card--primary {
  background: var(--grad-flame);
  color: var(--color-card);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.page-home .home-data-card--users {
  background: var(--color-deep);
  color: var(--color-card);
}
.page-home .home-data-card--speed {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}
.page-home .home-data-card--team {
  background: var(--color-ink);
  color: var(--color-card);
}
.page-home .home-data-card__label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(43, 30, 22, .5);
}
.page-home .home-data-card--primary .home-data-card__label,
.page-home .home-data-card--users .home-data-card__label,
.page-home .home-data-card--team .home-data-card__label {
  color: rgba(255, 248, 240, .62);
}
.page-home .home-data-card__num {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1;
  color: inherit;
  letter-spacing: .01em;
}
.page-home .home-data-card__unit {
  font-size: .86rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.page-home .home-data-card--primary .home-data-card__unit,
.page-home .home-data-card--users .home-data-card__unit,
.page-home .home-data-card--team .home-data-card__unit {
  color: rgba(255, 248, 240, .72);
}
.page-home .home-data-card--chart {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  padding: 1.2rem;
  min-height: auto;
}
.page-home .home-data-card__chart {
  margin: 0;
  display: grid;
  gap: .7rem;
}
.page-home .home-data-card__chart img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.page-home .home-data-card__chart figcaption {
  font-size: .78rem;
  color: var(--color-muted);
  text-align: center;
}
.page-home .home-data__contact {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--color-flame);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 58, 43, .3);
  font-size: .9rem;
  padding-bottom: 2px;
}

.page-home .home-journal {
  padding: 4rem 0 2rem;
}
.page-home .home-journal__head {
  margin-bottom: 1.6rem;
}
.page-home .home-journal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .8rem;
}
.page-home .home-journal__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .4rem 1.1rem;
  padding: 1.15rem 1.35rem;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-ink);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.page-home .home-journal__item a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212, 169, 79, .5);
}
.page-home .home-journal__cat {
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--color-flame);
}
.page-home .home-journal__time {
  font-size: .78rem;
  color: var(--color-muted);
  justify-self: end;
}
.page-home .home-journal__title {
  grid-column: 1 / -1;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.5;
}
.page-home .home-journal__more {
  margin-top: 1.5rem;
}

.page-home .home-cta {
  position: relative;
  margin-top: 3rem;
  background: var(--grad-flame);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  isolation: isolate;
}
.page-home .home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(43, 30, 22, .18), transparent 45%);
}
.page-home .home-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.4rem 0 3.8rem;
}
.page-home .home-cta .section-label {
  background: rgba(255, 248, 240, .14);
  color: var(--color-card);
  border-color: rgba(255, 248, 240, .3);
}
.page-home .home-cta__title {
  margin: .9rem 0 .8rem;
  color: var(--color-card);
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.015em;
}
.page-home .home-cta__desc {
  color: rgba(255, 248, 240, .88);
  line-height: 1.7;
  margin: 0;
  max-width: 26em;
}
.page-home .home-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: 1rem 2.1rem;
  border-radius: var(--radius-pill);
  background: var(--color-card);
  color: var(--color-flame-dark);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(43, 30, 22, .24);
  transition: transform .22s ease, box-shadow .22s ease;
}
.page-home .home-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(43, 30, 22, .32);
}
.page-home .home-cta__note {
  margin-top: 1.2rem;
  font-size: .85rem;
  color: rgba(255, 248, 240, .78);
}
.page-home .home-cta__note a {
  color: var(--color-card);
  text-underline-offset: 3px;
}
.page-home .home-cta__phoenix {
  display: flex;
  justify-content: center;
}
.page-home .home-cta__phoenix img {
  width: min(210px, 70vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
}

.page-home [data-reveal] {
  transition: transform .5s ease, opacity .5s ease;
}
.page-home [data-reveal].is-revealed {
  transform: none;
  opacity: 1;
}

@media (min-width: 768px) {
  .page-home .home-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .page-home .home-hero__content {
    flex: 1 1 62%;
  }
  .page-home .home-hero__aside {
    flex: 0 1 380px;
  }
  .page-home .home-tools__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .home-tool-card--history {
    grid-column: span 5;
  }
  .page-home .home-tool-card--favorite {
    grid-column: span 7;
  }
  .page-home .home-tool-card--lineup {
    grid-column: span 7;
  }
  .page-home .home-tool-card--guide {
    grid-column: span 5;
  }
  .page-home .home-local__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .page-home .home-data__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .home-data-card--primary {
    grid-column: span 5;
  }
  .page-home .home-data-card--users {
    grid-column: span 4;
  }
  .page-home .home-data-card--speed {
    grid-column: span 3;
  }
  .page-home .home-data-card--chart {
    grid-column: span 6;
  }
  .page-home .home-data-card--team {
    grid-column: span 6;
  }
  .page-home .home-cta__inner {
    grid-template-columns: 1.15fr .85fr;
    padding: 4.5rem 0;
  }
  .page-home .home-cta__phoenix img {
    width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__scrim::after {
    animation: none;
  }
  .page-home .home-tool-card,
  .page-home .home-journal__item a,
  .page-home .home-cta__btn {
    transition: none;
  }
}
