.page-home{
  --home-font-display: Impact, 'Arial Black', sans-serif;
  --home-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  background: linear-gradient(180deg, #0B1B3D 0%, #0F2A5E 68%, #0B1B3D 100%);
  color: #F4F7FA;
  overflow-x: hidden;
}

.page-home .container{
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
}

.page-home .breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #6B7B96;
  font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
}

.page-home .breadcrumb__current{
  color: #FF6B2C;
  font-weight: 700;
}

.page-home .breadcrumb__sep{
  color: #8B3DFF;
}

.page-home .home-hero{
  position: relative;
  padding: 56px 0 48px;
}

.page-home .home-hero__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .home-hero__eyebrow{
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BDE0FE;
  border: 1px solid rgba(141, 61, 255, 0.5);
  border-left: 4px solid #FF6B2C;
  padding: 8px 14px;
  margin-bottom: 20px;
  background: rgba(11, 27, 61, 0.6);
  font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
}

.page-home .home-hero__title{
  font-family: var(--home-font-display);
  font-size: clamp(3.2rem, 10vw, 6.8rem);
  line-height: 0.92;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  color: #F4F7FA;
  text-transform: uppercase;
  transform: skewX(-2deg);
  text-shadow: 0 4px 0 rgba(139, 61, 255, 0.35), 0 0 60px rgba(11, 27, 61, 0.8);
}

.page-home .home-hero__title span{
  display: block;
  color: #FF6B2C;
  font-size: 0.72em;
  letter-spacing: 0.06em;
}

.page-home .home-hero__desc{
  font-size: 16px;
  line-height: 1.85;
  color: #BDE0FE;
  max-width: 620px;
  margin: 0 0 30px;
  font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
}

.page-home .home-hero__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-home .hero-meta__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #BDE0FE;
  background: rgba(15, 42, 94, 0.7);
  padding: 8px 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  font-family: 'Roboto Mono', monospace;
}

.page-home .hero-meta__item--data{
  border-right: 2px solid #8B3DFF;
}

.page-home .hero-meta__item .data-cell{
  color: #FF6B2C;
}

.page-home .home-hero__visual{
  position: relative;
}

.page-home .home-hero__img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  clip-path: polygon(8% 0%, 92% 0%, 100% 10%, 100% 90%, 96% 100%, 4% 100%, 0% 92%, 0% 10%);
  object-fit: cover;
}

.page-home .home-hero__badge{
  position: absolute;
  top: 18px;
  right: 10px;
  background: #FF6B2C;
  color: #0B1B3D;
  font-family: var(--home-font-display);
  padding: 10px 18px;
  transform: skewX(-6deg);
  box-shadow: 0 6px 24px rgba(255, 107, 44, 0.4);
}

.page-home .home-hero__badge-num{
  display: block;
  font-size: 28px;
  line-height: 1;
}

.page-home .home-hero__badge-label{
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Noto Sans SC', sans-serif;
}

.page-home .home-hero__ring{
  position: absolute;
  width: 96px;
  height: 96px;
  bottom: -18px;
  left: -10px;
  opacity: 0.6;
  animation: homeRingRotate 24s linear infinite;
  filter: drop-shadow(0 0 10px rgba(139, 61, 255, 0.5));
}

@keyframes homeRingRotate{
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-home .home-hero .speed-lines{
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, #FF6B2C 0%, #8B3DFF 60%, transparent 100%);
  width: 100%;
  margin-top: 44px;
  opacity: 0.7;
}

.page-home .home-hero .speed-lines::before{
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 90%;
  height: 8px;
  background: repeating-linear-gradient(100deg, transparent 0 20px, rgba(189, 224, 254, 0.3) 20px 22px, transparent 22px 38px);
}

.page-home .home-ticker{
  margin-bottom: 72px;
}

.page-home .home-ticker__head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-left: 4px;
}

.page-home .home-ticker__label{
  font-family: var(--home-font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .home-ticker__time{
  font-size: 13px;
  color: #BDE0FE;
  margin-left: auto;
  font-family: 'Roboto Mono', monospace;
}

.page-home .home-ticker__board{
  position: relative;
  background: rgba(15, 42, 94, 0.85);
  border: 1px solid rgba(139, 61, 255, 0.25);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  padding: 18px 18px 0;
  overflow: hidden;
}

.page-home .home-ticker__board::after{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 44, 0.12), transparent);
  animation: homeTickerSweep 180s linear infinite;
  pointer-events: none;
}

@keyframes homeTickerSweep{
  0% { left: -60%; }
  10% { left: 130%; }
  100% { left: 130%; }
}

.page-home .home-ticker__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-ticker__list li{
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px dashed rgba(107, 123, 150, 0.4);
  font-size: 14px;
  transition: background 0.3s var(--home-ease);
}

.page-home .home-ticker__list li:hover{
  background: rgba(139, 61, 255, 0.08);
}

.page-home .ticker__date{
  font-family: 'Roboto Mono', monospace;
  color: #FF6B2C;
  font-weight: 700;
}

.page-home .ticker__event{
  color: #F4F7FA;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .ticker__cat{
  color: #8B3DFF;
  font-size: 12px;
  border: 1px solid rgba(139, 61, 255, 0.4);
  padding: 2px 8px;
  justify-self: center;
}

.page-home .ticker__time{
  font-family: 'Roboto Mono', monospace;
  color: #BDE0FE;
}

.page-home .ticker__status{
  display: none;
}

.page-home .home-ticker__foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.page-home .home-ticker__banner{
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-top: 18px;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  object-fit: cover;
}

.page-home .home-match{
  margin-bottom: 72px;
}

.page-home .section-heading__block{
  margin-bottom: 24px;
}

.page-home .section-heading__eyebrow{
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8B3DFF;
  font-weight: 700;
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto Mono', monospace;
}

.page-home .section-heading__eyebrow::before{
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #FF6B2C;
  transform: skewX(-30deg);
}

.page-home .section-heading__title{
  font-family: var(--home-font-display);
  font-size: clamp(2rem, 4.6vw, 3rem);
  margin: 0 0 12px;
  color: #F4F7FA;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .section-heading__desc{
  font-size: 15px;
  color: #BDE0FE;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.page-home .home-match__filter{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-home .tag-filter{
  appearance: none;
  background: rgba(15, 42, 94, 0.8);
  border: 1px solid rgba(139, 61, 255, 0.3);
  color: #BDE0FE;
  font-size: 13px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  transition: all 0.25s var(--home-ease);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.page-home .tag-filter:hover{
  border-color: #FF6B2C;
  color: #F4F7FA;
}

.page-home .tag-filter.is-active{
  background: #FF6B2C;
  color: #0B1B3D;
  border-color: #FF6B2C;
  font-weight: 700;
}

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

.page-home .match-card{
  position: relative;
  display: block;
  background: rgba(15, 42, 94, 0.65);
  padding: 20px 20px 18px 56px;
  text-decoration: none;
  color: #F4F7FA;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  border: 1px solid rgba(107, 123, 150, 0.25);
  transition: all 0.3s var(--home-ease);
}

.page-home .match-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #FF6B2C, #8B3DFF);
}

.page-home .match-card:hover{
  transform: translateY(-4px);
  background: rgba(139, 61, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-home .match-card__index{
  position: absolute;
  left: 18px;
  top: 18px;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  color: #FF6B2C;
  opacity: 0.7;
}

.page-home .match-card__cat{
  display: inline-block;
  background: #8B3DFF;
  color: #F4F7FA;
  font-size: 11px;
  padding: 3px 10px;
  margin-bottom: 8px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-home .match-card__name{
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.page-home .match-card__meta{
  font-size: 13px;
  color: #BDE0FE;
  font-family: 'Roboto Mono', monospace;
}

.page-home .home-fee{
  background: linear-gradient(120deg, #0F2A5E 0%, #0B1B3D 70%);
  padding: 56px 0 64px;
  margin-bottom: 8px;
  position: relative;
}

.page-home .home-fee::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B2C 0%, #8B3DFF 45%, transparent 45%);
}

.page-home .home-fee__layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-home .home-fee__panel{
  background: #0B1B3D;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-home .fee-card{
  padding: 8px 20px 16px;
}

.page-home .fee-card__row{
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-areas:
    "type type unit"
    "desc desc data";
  gap: 4px 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(107, 123, 150, 0.4);
}

.page-home .fee-card__row:last-child{
  border-bottom: none;
}

.page-home .fee-card__type{
  grid-area: type;
  font-size: 17px;
  font-weight: 700;
  color: #F4F7FA;
}

.page-home .fee-card__desc{
  grid-area: desc;
  font-size: 13px;
  color: #BDE0FE;
}

.page-home .fee-card__data{
  grid-area: data;
}

.page-home .fee-card .data-cell{
  grid-area: unit;
  font-family: var(--font-data);
  font-size: 2.4rem;
  font-weight: 800;
  color: #FF6B2C;
  line-height: 1;
}

.page-home .fee-card__unit{
  font-size: 12px;
  color: #BDE0FE;
  font-family: 'Roboto Mono', monospace;
}

.page-home .fee-card__note{
  font-size: 12px;
  color: #6B7B96;
  margin: 12px 0 0;
  border-left: 2px solid #8B3DFF;
  padding-left: 10px;
  font-family: 'Noto Sans SC', sans-serif;
}

.page-home .panel{
  background: rgba(15, 42, 94, 0.8);
  border-left: 4px solid #FF6B2C;
  padding: 24px;
}

.page-home .panel__title{
  font-family: var(--home-font-display);
  font-size: 20px;
  margin: 0 0 12px;
  color: #F4F7FA;
  text-transform: uppercase;
}

.page-home .panel__meta{
  font-size: 14px;
  line-height: 1.8;
  color: #BDE0FE;
  margin: 0 0 18px;
}

.page-home .home-sync{
  padding: 56px 0 64px;
}

.page-home .home-sync__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-sync__lead{
  font-size: 18px;
  line-height: 1.8;
  color: #F4F7FA;
  margin: 20px 0 28px;
  padding-left: 16px;
  border-left: 3px solid #8B3DFF;
}

.page-home .txt-accent{
  color: #FF6B2C;
  font-weight: 700;
}

.page-home .steps{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  counter-reset: homeStep;
}

.page-home .steps__item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(107, 123, 150, 0.2);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .steps__num{
  flex: 0 0 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8B3DFF;
  color: #F4F7FA;
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.page-home .steps__body{
  flex: 1;
  color: #BDE0FE;
}

.page-home .home-sync__meta{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.page-home .home-sync__visual{
  position: relative;
}

.page-home .home-sync__img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  clip-path: polygon(6% 0, 94% 0, 100% 8%, 100% 92%, 94% 100%, 6% 100%, 0 92%, 0 8%);
  object-fit: cover;
}

.page-home .home-price{
  background: rgba(15, 42, 94, 0.5);
  padding: 56px 0 64px;
  margin-bottom: 8px;
}

.page-home .home-price__layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-home .home-price__table{
  background: #0B1B3D;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  padding: 8px;
  overflow-x: auto;
}

.page-home .home-price__table table{
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-family: 'Noto Sans SC', sans-serif;
}

.page-home .home-price__table th{
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BDE0FE;
  background: rgba(139, 61, 255, 0.15);
  padding: 14px 16px;
  border-bottom: 2px solid #FF6B2C;
  font-family: 'Roboto Mono', monospace;
}

.page-home .home-price__table td{
  padding: 14px 16px;
  border-bottom: 1px dashed rgba(107, 123, 150, 0.3);
  font-size: 14px;
  color: #BDE0FE;
}

.page-home .home-price__table tr:hover td{
  background: rgba(255, 107, 44, 0.06);
}

.page-home .home-price__table td .data-cell{
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FF6B2C;
}

.page-home .home-price__note{
  font-size: 12px;
  color: #6B7B96;
  padding: 12px 16px 8px;
  margin: 0;
}

.page-home .home-price__visual{
  position: relative;
}

.page-home .home-price__img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  object-fit: cover;
}

.page-home .home-app{
  padding: 56px 0 64px;
}

.page-home .home-app__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

.page-home .app-card{
  background: rgba(15, 42, 94, 0.7);
  border: 1px solid rgba(139, 61, 255, 0.2);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--home-ease);
}

.page-home .app-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 107, 44, 0.15), transparent);
  transition: left 0.5s var(--home-ease);
}

.page-home .app-card:hover{
  transform: translateY(-4px);
  border-color: #FF6B2C;
}

.page-home .app-card:hover::after{
  left: 130%;
}

.page-home .app-card__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: #F4F7FA;
  background: linear-gradient(135deg, #FF6B2C, #8B3DFF);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  margin-bottom: 16px;
  font-family: var(--home-font-display);
}

.page-home .app-card__title{
  font-family: var(--home-font-display);
  font-size: 20px;
  margin: 0 0 8px;
  color: #F4F7FA;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-home .app-card__desc{
  font-size: 14px;
  color: #BDE0FE;
  line-height: 1.7;
  margin: 0;
}

.page-home .home-app__links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-home .home-trust{
  padding-bottom: 56px;
}

.page-home .home-trust__inner{
  text-align: left;
  border-top: 1px solid rgba(139, 61, 255, 0.3);
  padding-top: 28px;
}

.page-home .home-trust__text{
  font-family: var(--home-font-display);
  font-size: 22px;
  color: #F4F7FA;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-home .home-trust__meta{
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #6B7B96;
  margin: 0;
}

.page-home .home-trust__meta a{
  color: #BDE0FE;
  text-decoration: none;
  transition: color 0.2s;
}

.page-home .home-trust__meta a:hover{
  color: #FF6B2C;
}

.page-home .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF6B2C;
  color: #0B1B3D;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: all 0.3s var(--home-ease);
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
}

.page-home .btn:hover{
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 8px 24px rgba(255, 107, 44, 0.35);
}

.page-home .btn--ghost{
  background: transparent;
  color: #BDE0FE;
  border: 1px solid rgba(139, 61, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.page-home .btn--ghost:hover{
  border-color: #FF6B2C;
  color: #F4F7FA;
  box-shadow: 0 0 14px rgba(139, 61, 255, 0.25);
}

.page-home .btn--sm{
  padding: 8px 16px;
  font-size: 13px;
}

.page-home .btn--block{
  width: 100%;
}

.page-home .data-cell{
  font-family: var(--font-data);
  font-weight: 800;
  color: #FF6B2C;
}

.page-home .txt-muted{
  color: #6B7B96;
  font-size: 13px;
}

.page-home .state-dot{
  width: 8px;
  height: 8px;
  background: #3A5F4B;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.page-home .state-dot::after{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #3A5F4B;
  animation: homePulse 2s ease-out infinite;
}

.page-home .state-dot--sync{
  background: #8B3DFF;
}

.page-home .state-dot--sync::after{
  border-color: #8B3DFF;
}

@keyframes homePulse{
  0% { transform: scale(0.6); opacity: 1; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.page-home .divider{
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #FF6B2C, #8B3DFF, transparent);
  margin: 18px 0;
}

.page-home [data-reveal].is-visible{
  animation: homeRevealUp 0.7s var(--home-ease) both;
}

@keyframes homeRevealUp{
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px){
  .page-home .home-ticker__list li{
    grid-template-columns: 48px 1fr auto auto auto;
  }

  .page-home .ticker__status{
    display: inline;
    color: #3A5F4B;
    font-size: 12px;
    background: rgba(58, 95, 75, 0.18);
    padding: 2px 8px;
    white-space: nowrap;
    font-family: 'Roboto Mono', monospace;
  }

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

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

@media (min-width: 900px){
  .page-home .home-hero{
    padding: 72px 0 64px;
  }

  .page-home .home-hero__inner{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-home .home-hero__title{
    font-size: clamp(4rem, 7vw, 6.8rem);
  }

  .page-home .home-fee__layout{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }

  .page-home .home-sync__inner{
    grid-template-columns: 1fr 0.85fr;
    gap: 48px;
  }

  .page-home .home-price__layout{
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }

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

@media (prefers-reduced-motion: reduce){
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-home [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
  }
}
