.page-home{
  --home-gold-glow: rgba(212, 175, 55, 0.35);
  --home-purple-glow: rgba(123, 47, 190, 0.35);
  --home-orange-glow: rgba(255, 107, 53, 0.3);
  --home-grid-line: rgba(212, 175, 55, 0.18);
  --home-card-radius: 1.25rem;
  --home-hero-angle: 78deg;
  background: var(--color-canvas);
  overflow-x: clip;
}

.page-home .home-hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  background: var(--color-sky);
  color: var(--color-white);
  isolation: isolate;
  padding: calc(var(--header-height, 5rem) + 2rem) 0 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
}

.page-home .home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 15%, var(--home-purple-glow) 0%, transparent 42%),
    radial-gradient(circle at 15% 80%, var(--home-orange-glow) 0%, transparent 36%),
    radial-gradient(circle at 50% 50%, var(--home-gold-glow) 0%, transparent 56%),
    var(--color-sky);
}

.page-home .home-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, transparent 62%, rgba(212, 175, 55, 0.08) 62%, rgba(212, 175, 55, 0.12) 100%),
    linear-gradient(-78deg, transparent 0%, transparent 72%, rgba(123, 47, 190, 0.16) 72%, rgba(123, 47, 190, 0.1) 100%);
}

.page-home .home-hero__shield{
  position: absolute;
  top: -4rem;
  right: -6rem;
  width: 44rem;
  height: 14rem;
  background: linear-gradient(115deg, transparent 42%, var(--color-purple) 42%, var(--color-purple) 56%, transparent 56%), linear-gradient(115deg, transparent 66%, rgba(212, 175, 55, 0.55) 66%, rgba(212, 175, 55, 0.55) 78%, transparent 78%);
  opacity: 0.5;
  transform: rotate(-8deg);
  z-index: 0;
}

.page-home .home-hero__grain{
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  pointer-events: none;
}

.page-home .home-hero__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.page-home .home-hero__content{
  max-width: 44rem;
}

.page-home .home-hero__kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border-radius: 999rem;
  margin-bottom: 1.5rem;
}

.page-home .home-hero__kicker::before{
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0.9rem var(--home-gold-glow);
}

.page-home .home-hero__title{
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--color-white);
}

.page-home .home-hero__lead{
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--color-gold);
  padding-left: 1.25rem;
}

.page-home .home-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-home .home-hero__actions .btn{
  padding: 0.9rem 1.75rem;
  font-weight: 700;
}

.page-home .home-hero__stats{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.page-home .home-hero__stat{
  margin: 0;
}

.page-home .home-hero__stat-label{
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.page-home .home-hero__stat-value{
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-gold);
  font-variant-numeric: tabular-nums;
}

.page-home .home-hero__media{
  position: relative;
  border-radius: var(--home-card-radius);
  overflow: hidden;
  box-shadow:
    0 2rem 4rem rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(212, 175, 55, 0.22);
}

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

.page-home .home-hero__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 20, 34, 0.82) 100%);
  pointer-events: none;
}

.page-home .home-hero__media-tag{
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-white);
  background: rgba(8, 20, 34, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.5rem 0.9rem;
  border-radius: 999rem;
}

.page-home .home-hero__vnote{
  position: absolute;
  right: 0.5rem;
  bottom: 4.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.35) !important;
}

.page-home .home-hero__vnote:empty{
  display: none;
}

.page-home .home-checklist{
  padding: 4.5rem 0 5rem;
}

.page-home .home-checklist__head{
  margin-bottom: 2.75rem;
}

.page-home .home-checklist__layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-home .home-checklist__steps{
  display: flex;
  flex-direction: column;
}

.page-home .home-checklist__steps .accordion-item{
  border: 1px solid rgba(26, 42, 58, 0.14);
  border-left: 4px solid var(--color-gold);
  border-radius: 0.65rem;
  background: var(--color-white);
  box-shadow: 0 0.4rem 1rem rgba(10, 26, 47, 0.06);
  margin-bottom: 0.875rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.page-home .home-checklist__steps .accordion-item:is(:hover){
  transform: translateX(0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(10, 26, 47, 0.1);
  border-left-color: var(--color-orange);
}

.page-home .home-checklist__steps .accordion-trigger{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.page-home .home-checklist__steps .accordion-trigger::-webkit-details-marker{
  display: none;
}

.page-home .home-checklist__num{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-sky);
}

.page-home .home-checklist__step-title{
  flex: 1;
}

.page-home .home-checklist__steps .accordion-icon{
  flex: 0 0 auto;
  width: 1rem;
  height: 0.5625rem;
  position: relative;
}

.page-home .home-checklist__steps .accordion-icon::before,
.page-home .home-checklist__steps .accordion-icon::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 0.65rem;
  height: 2px;
  background: var(--color-gold-deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.page-home .home-checklist__steps .accordion-icon::before{
  left: 0;
}

.page-home .home-checklist__steps .accordion-icon::after{
  right: 0;
}

.page-home .home-checklist__steps .accordion-trigger[aria-expanded="true"] .accordion-icon::before{
  transform: rotate(45deg);
}

.page-home .home-checklist__steps .accordion-trigger[aria-expanded="true"] .accordion-icon::after{
  transform: rotate(-45deg);
}

.page-home .home-checklist__steps .accordion-panel{
  padding: 0 1.35rem 1.15rem 4.6rem;
}

.page-home .home-checklist__steps .accordion-panel-inner{
  color: var(--color-gray);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.page-home .home-checklist__aside{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .home-checklist__aside img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--home-card-radius);
  box-shadow: 0 1.25rem 2.5rem rgba(10, 26, 47, 0.12);
}

.page-home .home-checklist__aside-caption{
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.6;
  border-left: 2px solid var(--color-purple);
  padding-left: 0.9rem;
}

.page-home .home-adapt{
  background: var(--color-sky);
  color: var(--color-white);
  position: relative;
  isolation: isolate;
  padding: 5rem 0 5.5rem;
}

.page-home .home-adapt::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 90% 10%, rgba(123, 47, 190, 0.24) 0%, transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.12) 0%, transparent 38%);
}

.page-home .home-adapt .section-kicker{
  color: var(--color-gold);
}

.page-home .home-adapt .section-title{
  color: var(--color-white);
}

.page-home .home-adapt .section-note{
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-adapt__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.page-home .home-adapt__card{
  background: rgba(8, 20, 34, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--home-card-radius);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-adapt__card:is(:hover){
  border-color: var(--color-gold);
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.3);
}

.page-home .home-adapt__card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-home .home-adapt__card-title{
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 0.75rem;
}

.page-home .home-adapt__card-text{
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.page-home .home-adapt__card-list{
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.page-home .home-adapt__card-list li{
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.page-home .home-adapt__card-list li + li{
  margin-top: 0.45rem;
}

.page-home .home-adapt__card-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.page-home .home-record{
  padding: 5rem 0;
}

.page-home .home-record__layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.page-home .home-record__steps{
  margin: 2rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-home .home-record__step{
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 42, 58, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 0.4rem 1rem rgba(10, 26, 47, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-record__step:is(:hover){
  border-color: var(--color-purple);
  box-shadow: 0 0.6rem 1.5rem rgba(123, 47, 190, 0.14);
}

.page-home .home-record__step-num{
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-sky) 100%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 0.55rem;
}

.page-home .home-record__step-title{
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 0.35rem;
}

.page-home .home-record__step-text{
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-gray);
  margin: 0;
}

.page-home .home-record__media{
  position: relative;
  align-self: center;
}

.page-home .home-record__media img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--home-card-radius);
  box-shadow: 0 1.5rem 3rem rgba(10, 26, 47, 0.14);
}

.page-home .home-record__badge{
  position: absolute;
  right: -0.625rem;
  bottom: 1.25rem;
  background: var(--color-sky);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 0.75rem;
  padding: 0.9rem 1.2rem;
  text-align: center;
  box-shadow: 0 0.8rem 1.6rem rgba(10, 26, 47, 0.28);
}

.page-home .home-record__badge-num{
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.page-home .home-record__badge-unit{
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

.page-home .home-history{
  background: var(--color-abyss);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
}

.page-home .home-history::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 14rem;
  background: linear-gradient(135deg, transparent 0%, rgba(123, 47, 190, 0.22) 100%);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.page-home .home-history .section-kicker{
  color: var(--color-gold);
}

.page-home .home-history .section-title{
  color: var(--color-white);
}

.page-home .home-history .section-note{
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-history__timeline{
  position: relative;
  margin: 3rem 0 0;
  padding-left: 0;
}

.page-home .home-history__timeline::before{
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.page-home .home-history__item{
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1.5rem;
}

.page-home .home-history__dot{
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
  z-index: 1;
}

.page-home .home-history__item:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1.4rem;
  bottom: 0;
  width: 2px;
  background: rgba(212, 175, 55, 0.18);
}

.page-home .home-history__card{
  background: rgba(240, 244, 248, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.page-home .home-history__card:is(:hover){
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(240, 244, 248, 0.06);
}

.page-home .home-history__card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  cursor: pointer;
}

.page-home .home-history__tag{
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 999rem;
  margin-bottom: 0.5rem;
}

.page-home .home-history__title{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.35;
}

.page-home .home-history__arrow{
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  position: relative;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.page-home .home-history__card-head[aria-expanded="true"] .home-history__arrow{
  transform: rotate(225deg) translate(-0.15rem, -0.15rem);
}

.page-home .home-history__detail{
  padding: 0 1.4rem 1.4rem;
}

.page-home .home-history__detail ul{
  list-style: none;
  margin: 0;
  padding: 0.8rem 0 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.page-home .home-history__detail li{
  position: relative;
  padding-left: 1.3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.page-home .home-history__detail li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-left: 2px solid var(--color-orange);
  border-bottom: 2px solid var(--color-orange);
}

.page-home .home-history__more{
  margin-top: 2.5rem;
  text-align: center;
}

.page-home .home-history__more .btn{
  color: var(--color-white);
  border-color: rgba(212, 175, 55, 0.45);
}

.page-home .home-history__more .btn:is(:hover){
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
}

.page-home .home-activity{
  padding: 5rem 0;
  position: relative;
}

.page-home .home-activity__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.page-home .home-activity__list{
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home .home-activity__item{
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 1.25rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 42, 58, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-home .home-activity__item:is(:hover){
  transform: translateX(0.25rem);
  border-color: var(--color-gold-deep);
  box-shadow: 0 0.5rem 1.4rem rgba(10, 26, 47, 0.08);
}

.page-home .home-activity__icon{
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%);
  border-radius: 0.55rem;
}

.page-home .home-activity__item-title{
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 0.3rem;
}

.page-home .home-activity__item-text{
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-gray);
  margin: 0;
}

.page-home .home-activity__media{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.page-home .home-activity__media img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--home-card-radius);
  box-shadow: 0 1rem 2rem rgba(10, 26, 47, 0.1);
}

.page-home .home-activity__cta{
  text-align: center;
  justify-content: center;
}

.page-home .home-help{
  background: var(--color-sky);
  color: var(--color-white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-help::before{
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-home .home-help__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .home-help__inner .section-kicker{
  color: var(--color-gold);
  font-size: 0.75rem;
}

.page-home .home-help__title{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 900;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.page-home .home-help__desc{
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
  max-width: 38rem;
}

.page-home .home-help__action .btn{
  padding: 0.95rem 2rem;
}

.page-home .home-trust{
  background: var(--color-canvas);
  padding: 3.5rem 0;
}

.page-home .home-trust__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .home-trust__card{
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--color-white);
  border: 1px solid rgba(26, 42, 58, 0.1);
  border-radius: 0.85rem;
  padding: 1.4rem;
}

.page-home .home-trust__icon{
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--color-white);
  background: var(--color-sky);
  border-radius: 50%;
}

.page-home .home-trust__title{
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.page-home .home-trust__text{
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin: 0;
}

.page-home .breadcrumb{
  background: var(--color-canvas);
  padding-top: 0;
  padding-bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}

.page-home .breadcrumb__current{
  font-weight: 700;
  color: var(--color-ink);
}

@media (min-width: 600px){
  .page-home .home-adapt__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-history__detail ul{
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-trust__inner{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px){
  .page-home .home-hero{
    padding: calc(var(--header-height, 5rem) + 4rem) 0 5rem;
  }

  .page-home .home-hero__inner{
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
  }

  .page-home .home-checklist{
    padding: 6rem 0 6.5rem;
  }

  .page-home .home-checklist__layout{
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 4rem;
    align-items: start;
  }

  .page-home .home-record__layout{
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 4.5rem;
    align-items: center;
  }

  .page-home .home-adapt__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .page-home .home-adapt{
    padding: 6.5rem 0 7rem;
  }

  .page-home .home-history{
    padding: 6.5rem 0 7rem;
  }

  .page-home .home-history__timeline{
    padding-left: 2rem;
  }

  .page-home .home-history__detail ul{
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-activity{
    padding: 6.5rem 0;
  }

  .page-home .home-activity__inner{
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 4rem;
    align-items: center;
  }

  .page-home .home-help{
    padding: 5.5rem 0;
  }

  .page-home .home-help__inner{
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1080px){
  .page-home .home-hero__title{
    letter-spacing: -0.03em;
  }

  .page-home .home-hero__actions{
    gap: 1.25rem;
  }
}

.page-home .home-hero__actions .btn-ghost{
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.page-home .home-hero__actions .btn-ghost:is(:hover){
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.page-home .btn-purple{
  background: linear-gradient(135deg, var(--color-purple) 0%, #5B1F91 100%);
  color: var(--color-white);
  border-color: transparent;
}

.page-home .btn-purple:is(:hover){
  box-shadow: 0 0 1.4rem rgba(123, 47, 190, 0.4);
}

.page-home .home-help__action .btn-light{
  border-color: var(--color-gold);
}

.page-home .home-help__action .btn-light:hover{
  background: var(--color-gold);
  color: var(--color-sky);
}

.page-home .home-record__content .btn-purple{
  margin-top: 0.5rem;
}

.page-home .section-head.home-activity__head .section-title::after{
  content: "CLUB";
  font-size: 0.5em;
  vertical-align: super;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-left: 0.5em;
}

.page-home .home-adapt__card .status-tag{
  font-size: 0.7rem;
}

.page-home .home-history .home-history__item--current .home-history__card{
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.06);
}

@media (prefers-reduced-motion: reduce){
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    transition: none !important;
    animation: none !important;
  }
}
