.page-home {
  --ph-hero-clip: polygon(0 0, 100% 0, 100% calc(100% - clamp(28px, 5vw, 68px)), 0 100%);
  --ph-corner: 14px;
  --ph-card-bg: linear-gradient(145deg, rgba(26, 26, 46, 0.92), rgba(11, 16, 38, 0.88));
  --ph-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-deep);
  clip-path: var(--ph-hero-clip);
  padding: clamp(64px, 10vw, 128px) 0 clamp(88px, 13vw, 168px);
  margin-bottom: -3px;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.85) contrast(1.1);
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 8, 24, 0.94) 0%, rgba(11, 16, 38, 0.72) 52%, rgba(11, 16, 38, 0.4) 100%),
    radial-gradient(1200px 420px at 78% 18%, rgba(57, 255, 20, 0.12), transparent 64%),
    radial-gradient(900px 360px at 18% 82%, rgba(255, 111, 0, 0.1), transparent 62%);
}

.page-home .home-hero__shell {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.page-home .home-hero__copy {
  max-width: 680px;
}

.page-home .home-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0.6rem 0 1.1rem;
  max-width: 11em;
}

.page-home .home-hero__lead {
  color: var(--c-text-2);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.75;
  max-width: 44em;
  margin-bottom: 1.6rem;
}

.page-home .home-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem;
  align-items: center;
  max-width: 540px;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-search:focus-within {
  border-color: var(--c-green);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.14), 0 18px 50px rgba(0, 0, 0, 0.35);
}

.page-home .search-bar__input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0.7rem 0.5rem 0.7rem 0;
  color: var(--c-text);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.page-home .search-bar__input:focus {
  outline: none;
}

.page-home .search-bar__input::placeholder {
  color: var(--c-text-2);
}

.page-home .search-bar__btn {
  border-radius: 10px;
  white-space: nowrap;
  padding: 0.7rem 1.1rem;
}

.page-home .home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.page-home .home-hero__aside {
  width: 100%;
  max-width: 560px;
}

.page-home .home-cal {
  background: var(--ph-card-bg);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: var(--ph-shadow);
  position: relative;
}

.page-home .home-cal::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 28px;
  width: 42%;
  height: 6px;
  background: var(--c-green);
  opacity: 0.55;
  transform: skewX(-36deg);
  border-radius: 4px;
  pointer-events: none;
}

.page-home .home-cal__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.page-home .home-cal .panel__title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -0.01em;
}

.page-home .home-cal__months {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.page-home .home-cal__tab {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--c-text-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-cal__tab[aria-selected="true"] {
  color: #08120b;
  background: var(--c-green);
  border-color: var(--c-green);
  font-weight: 700;
}

.page-home .home-cal__body {
  padding-top: 0.25rem;
}

.page-home .mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.page-home .mini-cal__head {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 0.6rem;
}

.page-home .mini-cal__dow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-text-2);
  text-align: center;
  padding: 0.35rem 0;
}

.page-home .mini-cal__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.page-home .mini-cal__day--muted {
  background: transparent;
  opacity: 0.2;
}

.page-home .mini-cal__day--today {
  background: var(--c-green);
  color: #08120b;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.18);
}

.page-home .home-cal__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--c-line);
}

.page-home .home-cal__note-text {
  font-size: 0.8rem;
  color: var(--c-text-2);
}

.page-home .home-preview {
  position: relative;
  z-index: 2;
  margin-top: clamp(16px, 4vw, 56px);
  padding: clamp(48px, 8vw, 96px) 0;
}

.page-home .home-preview__head {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.page-home .home-preview__head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.6rem;
}

.page-home .home-preview__desc {
  color: var(--c-text-2);
  line-height: 1.7;
  font-size: 0.96rem;
}

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

.page-home .home-preview__card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.3rem 1.3rem 1.5rem;
  border-radius: var(--ph-corner);
  text-decoration: none;
  background: var(--ph-card-bg);
  border: 1px solid var(--c-line);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-preview__card:hover,
.page-home .home-preview__card:focus-visible {
  transform: translateY(-4px) skewX(-1.5deg);
  border-color: var(--c-green);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.page-home .home-preview__idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-cyan);
  letter-spacing: 0.1em;
  line-height: 1;
}

.page-home .home-preview__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0;
}

.page-home .home-preview__state {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--c-text-2);
  margin-top: auto;
}

.page-home .home-preview__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}

.page-home .home-fees {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 16, 38, 0.4), var(--c-bg-deep) 100%),
    radial-gradient(1100px 420px at 85% 10%, rgba(255, 111, 0, 0.1), transparent 60%);
  padding-block: clamp(64px, 9vw, 116px);
}

.page-home .home-fees__stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(4px, 1vw, 10px);
  background: var(--c-orange);
  transform: skewY(-1.2deg) scale(1.02);
  transform-origin: left top;
  pointer-events: none;
}

.page-home .home-fees__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.page-home .home-fees__head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.8rem;
  max-width: 18em;
}

.page-home .home-fees__lead {
  color: var(--c-text-2);
  line-height: 1.75;
  font-size: 0.98rem;
  max-width: 38em;
}

.page-home .home-fees__ver {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--c-orange);
  color: #1c0a00;
  min-width: 126px;
  padding: 1rem 1.5rem;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  box-shadow: 0 18px 40px rgba(255, 111, 0, 0.16);
}

.page-home .home-fees__ver-num {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 0.9;
}

.page-home .home-fees__ver-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  margin-top: 0.3rem;
  opacity: 0.78;
}

.page-home .home-fees__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.page-home .home-fees__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-2);
  position: relative;
}

.page-home .home-fees__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 6;
  object-fit: cover;
  display: block;
}

.page-home .home-fees__media::after {
  content: "V7";
  position: absolute;
  right: 14px;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1c0a00;
  background: var(--c-orange);
  padding: 0.25rem 0.7rem;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

.page-home .home-fees__list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.page-home .home-fees__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px dashed var(--c-line);
}

.page-home .home-fees__item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}

.page-home .home-fees__item p {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-fees__item-idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-cyan);
  background: rgba(79, 195, 247, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.28);
  border-radius: 6px;
  padding: 0.28rem 0.45rem;
  height: fit-content;
  margin-top: 0.1rem;
}

.page-home .home-fees .btn {
  width: fit-content;
  margin-top: 0.3rem;
}

.page-home .home-history {
  padding-block: clamp(64px, 9vw, 116px);
}

.page-home .home-history__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.page-home .home-history__copy h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.8rem;
}

.page-home .home-history__lead {
  color: var(--c-text-2);
  line-height: 1.75;
  font-size: 0.98rem;
  max-width: 40em;
  margin-bottom: 1.5rem;
}

.page-home .home-history__facts {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.page-home .home-history__facts li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.6;
}

.page-home .home-history__facts li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-green);
  font-family: var(--font-mono);
}

.page-home .home-history__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-home .home-history__stat {
  flex: 1 1 96px;
  min-width: 96px;
  background: var(--ph-card-bg);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
}

.page-home .home-history__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-home .home-history__unit {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-text-2);
  margin-top: 0.35rem;
}

.page-home .home-history__media {
  margin: 0;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-bg-2);
  transform: rotate(1deg);
  box-shadow: var(--ph-shadow);
}

.page-home .home-history__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 6;
  object-fit: cover;
  display: block;
}

.page-home .home-history__media figcaption {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--c-text-2);
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--c-line);
  background: rgba(11, 16, 38, 0.6);
}

.page-home .home-switch {
  position: relative;
  padding-block: clamp(64px, 9vw, 116px);
  overflow: hidden;
}

.page-home .home-switch__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 340px at 8% 10%, rgba(79, 195, 247, 0.1), transparent 60%),
    linear-gradient(120deg, rgba(57, 255, 20, 0.06), transparent 42%);
}

.page-home .home-switch .shell {
  position: relative;
  z-index: 1;
}

.page-home .home-switch__head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.page-home .home-switch__head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.8rem;
}

.page-home .home-switch__lead {
  color: var(--c-text-2);
  line-height: 1.75;
  font-size: 0.98rem;
}

.page-home .home-switch__tabs {
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: var(--ph-card-bg);
  box-shadow: var(--ph-shadow);
  overflow: hidden;
}

.page-home .home-switch__tabs-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.02);
}

.page-home .home-switch__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text-2);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--c-line);
  cursor: pointer;
  position: relative;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .home-switch__tab::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--c-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.page-home .home-switch__tab[aria-selected="true"] {
  color: var(--c-text);
  background: rgba(57, 255, 20, 0.04);
}

.page-home .home-switch__tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

.page-home .home-switch__tab-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-orange);
  background: rgba(255, 111, 0, 0.12);
  border: 1px solid rgba(255, 111, 0, 0.3);
  border-radius: 5px;
  padding: 0.15rem 0.4rem;
  letter-spacing: 0.08em;
}

.page-home .home-switch__body {
  padding: 1rem;
}

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

.page-home .home-switch__card {
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--c-line);
  background: rgba(11, 16, 38, 0.55);
}

.page-home .home-switch__card .panel__label {
  margin-bottom: 0.4rem;
}

.page-home .home-switch__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-amber);
  margin-bottom: 0.35rem;
}

.page-home .home-switch__card p {
  font-size: 0.82rem;
  color: var(--c-text-2);
  line-height: 1.6;
  margin: 0;
}

.page-home .home-switch__foot {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--c-text-2);
  line-height: 1.7;
  max-width: 44em;
}

.page-home .home-steps {
  padding-block: clamp(64px, 9vw, 116px);
  background:
    linear-gradient(180deg, rgba(11, 16, 38, 0.35), var(--c-bg-deep) 100%);
}

.page-home .home-steps__head {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.page-home .home-steps__head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.8rem;
}

.page-home .home-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: steps;
}

.page-home .home-steps__item {
  position: relative;
  background: var(--ph-card-bg);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 1.4rem 1.3rem 1.5rem;
  overflow: hidden;
}

.page-home .home-steps__item::after {
  content: "";
  position: absolute;
  right: -14px;
  top: -14px;
  width: 80px;
  height: 80px;
  background: var(--c-green);
  opacity: 0.08;
  transform: rotate(24deg);
  border-radius: 8px;
  pointer-events: none;
}

.page-home .home-steps__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-green);
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

.page-home .home-steps__item h3 {
  font-size: 1.12rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.page-home .home-steps__item p {
  font-size: 0.88rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-steps__media {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-2);
  box-shadow: var(--ph-shadow);
}

.page-home .home-steps__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 4;
  object-fit: cover;
  display: block;
}

.page-home .home-steps__cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.6rem;
}

.page-home .home-status {
  padding-block: clamp(64px, 9vw, 110px) clamp(48px, 8vw, 96px);
}

.page-home .home-status__frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.page-home .home-status__panel {
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--c-line);
  background: var(--ph-card-bg);
}

.page-home .home-status__panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}

.page-home .home-status__panel p {
  color: var(--c-text-2);
  font-size: 0.94rem;
  line-height: 1.75;
  max-width: 46em;
}

.page-home .home-status__panel .btn {
  margin-top: 1rem;
}

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

.page-home .home-status__items li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--ph-card-bg);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 1rem;
}

.page-home .home-status__items span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-text-2);
  letter-spacing: 0.1em;
}

.page-home .home-status__items strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}

@media (min-width: 640px) {
  .page-home .home-switch__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-switch__body {
    padding: clamp(1.2rem, 3vw, 2rem);
  }

  .page-home .home-fees__head {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-home .home-fees__ver {
    flex-shrink: 0;
    margin-bottom: 0.4rem;
  }

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

  .page-home .home-steps__item::after {
    width: 110px;
    height: 110px;
  }

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

@media (min-width: 960px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(2.4rem, 6vw, 5.5rem);
  }

  .page-home .home-hero h1 {
    font-size: clamp(3rem, 5.6vw, 4.9rem);
  }

  .page-home .home-preview__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }

  .page-home .home-preview__card {
    min-height: 196px;
    justify-content: flex-start;
  }

  .page-home .home-fees__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .page-home .home-history__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-home .home-history__media {
    transform: rotate(1.2deg) translateX(8px);
  }

  .page-home .home-history__stats {
    flex-wrap: nowrap;
  }

  .page-home .home-switch__head {
    max-width: 780px;
  }

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

  .page-home .home-switch__card {
    padding: 1.2rem;
  }

  .page-home .home-steps__media img {
    height: auto;
    max-height: none;
  }

  .page-home .home-status__frame {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 1.5rem;
  }

  .page-home .home-status__items li {
    padding: 1.1rem 1.2rem;
  }
}
