.page-shell--home {
  gap: 12px;
  padding-bottom: 12px;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr);
  gap: 28px;
  min-height: 454px;
  padding: 38px 34px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(73, 115, 180, 0.22);
  background:
    linear-gradient(115deg, rgba(8, 18, 36, 0.98) 0%, rgba(8, 18, 36, 0.95) 30%, rgba(8, 18, 36, 0.36) 66%, rgba(8, 18, 36, 0.18) 100%);
  box-shadow: 0 32px 80px rgba(2, 7, 18, 0.42);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 30, 0.98) 0%, rgba(7, 15, 30, 0.94) 28%, rgba(7, 15, 30, 0.62) 48%, rgba(7, 15, 30, 0.16) 72%, rgba(7, 15, 30, 0.06) 100%),
      url("../../assets/images/whale-home-experiment.png") 94% 37% / auto 176% no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 0%, rgba(138, 207, 255, 0.34) 0%, transparent 24%),
    radial-gradient(circle at 92% 36%, rgba(17, 110, 255, 0.18) 0%, transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 14%);
  pointer-events: none;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(110, 142, 199, 0.18);
  background: rgba(16, 28, 48, 0.72);
  color: rgba(223, 233, 255, 0.88);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
}

.home-hero__title {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 620px;
  font-size: clamp(40px, 4.9vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-h1);
}

.home-hero__title strong {
  display: inline-block;
  margin-left: 12px;
  color: var(--gold-light);
}

.home-hero__subtitle {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.52;
  color: rgba(232, 240, 255, 0.9);
}

.home-hero__desc {
  max-width: 560px;
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.86;
  color: rgba(207, 220, 244, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.home-hero__actions .btn {
  min-width: 136px;
  min-height: 42px;
}

.home-hero__stats {
  display: grid;
  align-self: end;
  align-content: end;
  justify-items: end;
  gap: 12px;
  padding-right: 2px;
  padding-bottom: 9px;
}

.hero-quote {
  width: min(212px, 100%);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(91, 133, 204, 0.18);
  background: rgba(9, 18, 32, 0.72);
  box-shadow: 0 14px 28px rgba(2, 7, 18, 0.24);
  backdrop-filter: blur(10px);
}

.hero-quote strong,
.hero-quote span,
.hero-quote small {
  display: block;
  white-space: nowrap;
}

.hero-quote strong {
  color: rgba(229, 236, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-quote span {
  margin-top: 8px;
  color: var(--text-h1);
  font-family: var(--font-data);
  font-size: 22px;
  line-height: 1;
}

.hero-quote small {
  margin-top: 4px;
  color: var(--data-up);
  font-size: 11px;
  line-height: 1;
}

.home-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 16px;
  border-radius: 22px;
}

.home-toolbar__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.home-toolbar__label svg {
  width: var(--icon-size-tag);
  height: var(--icon-size-tag);
  stroke-width: var(--icon-stroke-tag);
  color: var(--gold-light);
  flex-shrink: 0;
}

.home-toolbar__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-toolbar__tags::-webkit-scrollbar {
  display: none;
}

.home-toolbar__search {
  width: min(330px, 100%);
}

.home-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@keyframes homeSkeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.home-hero__main,
.home-hero__stats,
.home-toolbar > *:not(.home-toolbar__skeleton),
.home-card-grid > .home-card {
  transition: opacity 180ms ease;
}

.home-hero__skeleton,
.home-toolbar__skeleton,
.home-card-grid__skeleton {
  display: none;
  pointer-events: none;
}

.home-skeleton-block {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 46, 76, 0.96) 0%, rgba(78, 112, 168, 0.42) 48%, rgba(31, 46, 76, 0.96) 100%);
  background-size: 220% 100%;
  animation: homeSkeletonShimmer 1.8s linear infinite;
}

body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy strong,
body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy span,
body:has(.page-shell--home[data-home-ready="pending"]) .vip-chip,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-email span,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-crumb {
  position: relative;
  color: transparent !important;
}

body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy strong::after,
body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy span::after,
body:has(.page-shell--home[data-home-ready="pending"]) .vip-chip::after,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-email span::after,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-crumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.8em;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(31, 46, 76, 0.96) 0%, rgba(78, 112, 168, 0.42) 48%, rgba(31, 46, 76, 0.96) 100%);
  background-size: 220% 100%;
  animation: homeSkeletonShimmer 1.8s linear infinite;
}

.page-shell--home[data-home-ready="pending"] .home-hero__main,
.page-shell--home[data-home-ready="pending"] .home-hero__stats,
.page-shell--home[data-home-ready="pending"] .home-toolbar > *:not(.home-toolbar__skeleton),
.page-shell--home[data-home-ready="pending"] .home-card-grid > .home-card {
  opacity: 0;
  pointer-events: none;
}

.page-shell--home[data-home-ready="pending"] .home-hero__skeleton {
  position: absolute;
  inset: 38px 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr);
  gap: 28px;
}

.page-shell--home[data-home-ready="pending"] .home-toolbar__skeleton {
  position: absolute;
  inset: 9px 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-shell--home[data-home-ready="pending"] .home-card-grid__skeleton {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.page-shell--home[data-home-ready="fallback"] .home-hero__skeleton,
.page-shell--home[data-home-ready="fallback"] .home-toolbar__skeleton,
.page-shell--home[data-home-ready="fallback"] .home-card-grid__skeleton,
.page-shell--home[data-home-ready="ready"] .home-hero__skeleton,
.page-shell--home[data-home-ready="ready"] .home-toolbar__skeleton,
.page-shell--home[data-home-ready="ready"] .home-card-grid__skeleton {
  display: none;
}

body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy strong,
body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy span,
body:has(.page-shell--home[data-home-ready="pending"]) .vip-chip,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-email span,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-crumb {
  color: inherit !important;
}

body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy strong::after,
body:has(.page-shell--home[data-home-ready="pending"]) .brand__copy span::after,
body:has(.page-shell--home[data-home-ready="pending"]) .vip-chip::after,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-email span::after,
body:has(.page-shell--home[data-home-ready="pending"]) .topbar-crumb::after,
.page-shell--home[data-home-ready="pending"] .home-hero__skeleton,
.page-shell--home[data-home-ready="pending"] .home-toolbar__skeleton,
.page-shell--home[data-home-ready="pending"] .home-card-grid__skeleton {
  display: none;
}

.page-shell--home[data-home-ready="pending"] .home-hero__main,
.page-shell--home[data-home-ready="pending"] .home-hero__stats,
.page-shell--home[data-home-ready="pending"] .home-toolbar > *:not(.home-toolbar__skeleton),
.page-shell--home[data-home-ready="pending"] .home-card-grid > .home-card {
  opacity: 1;
  pointer-events: auto;
}

.home-hero__skeleton-copy {
  display: flex;
  flex-direction: column;
  max-width: 560px;
}

.home-hero__skeleton-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.home-skeleton-block--chip {
  width: 144px;
  height: 30px;
}

.home-skeleton-block--chip-wide {
  width: 176px;
}

.home-skeleton-block--title {
  width: 74%;
  height: 58px;
  border-radius: 22px;
}

.home-skeleton-block--title-short {
  width: 52%;
  margin-top: 10px;
}

.home-skeleton-block--subtitle {
  width: 62%;
  height: 19px;
  margin-top: 18px;
}

.home-hero__skeleton-desc {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.home-skeleton-block--line {
  width: 100%;
  height: 12px;
}

.home-skeleton-block--line-short {
  width: 72%;
}

.home-hero__skeleton-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.home-skeleton-block--button {
  width: 138px;
  height: 42px;
}

.home-skeleton-block--button-primary {
  width: 176px;
}

.home-skeleton-block--button-short {
  width: 126px;
}

.home-hero__skeleton-stats {
  display: grid;
  align-self: end;
  align-content: end;
  justify-items: end;
  gap: 12px;
  padding-right: 2px;
  padding-bottom: 9px;
}

.home-hero__skeleton-card {
  width: min(212px, 100%);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(91, 133, 204, 0.18);
  background: rgba(9, 18, 32, 0.72);
  box-shadow: 0 14px 28px rgba(2, 7, 18, 0.24);
  backdrop-filter: blur(10px);
}

.home-skeleton-block--stat-label {
  width: 42%;
  height: 12px;
}

.home-skeleton-block--stat-value {
  width: 68%;
  height: 22px;
  margin-top: 8px;
  border-radius: 12px;
}

.home-skeleton-block--stat-delta {
  width: 36%;
  height: 11px;
  margin-top: 8px;
}

.home-toolbar__skeleton-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-skeleton-block--toolbar-label {
  width: 92px;
  height: 16px;
}

.home-skeleton-block--toolbar-tag {
  width: 68px;
  height: 28px;
}

.home-skeleton-block--toolbar-tag-wide {
  width: 88px;
}

.home-skeleton-block--toolbar-search {
  width: min(330px, 100%);
  height: 42px;
  flex-shrink: 0;
}

.home-card-skeleton {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(73, 115, 180, 0.18);
  background: linear-gradient(180deg, rgba(14, 23, 39, 0.98) 0%, rgba(10, 18, 31, 1) 100%);
}

.home-card-skeleton__media {
  aspect-ratio: 16 / 7.1;
  background: rgba(22, 36, 60, 0.76);
}

.home-card-skeleton__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 12px;
}

.home-skeleton-block--card-title {
  width: 54%;
  height: 22px;
  border-radius: 12px;
}

.home-skeleton-block--card-line {
  width: 100%;
  height: 11px;
}

.home-skeleton-block--card-line-short {
  width: 72%;
}

.home-card-skeleton__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-skeleton-block--card-helper {
  width: 48%;
  height: 11px;
}

.home-skeleton-block--card-cta {
  width: 112px;
  height: 38px;
}

.home-card {
  --home-card-accent: var(--blue-primary);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 23, 39, 0.98) 0%, rgba(10, 18, 31, 1) 100%);
}

.home-card--market {
  --home-card-accent: #56a9ff;
}

.home-card--tools {
  --home-card-accent: #2ad8ff;
}

.home-card--data {
  --home-card-accent: #9c67ff;
}

.home-card--connect {
  --home-card-accent: #ffcc58;
}

.home-card__media {
  position: relative;
  aspect-ratio: 16 / 7.1;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(9, 17, 31, 0.08) 0%, rgba(9, 17, 31, 0.3) 100%);
}

.home-card__media::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 10%, rgba(255, 255, 255, 0.02) 100%);
}

.home-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-card--market .home-card__image {
  object-position: center 54%;
}

.home-card--tools .home-card__image {
  object-position: 64% 54%;
}

.home-card--data .home-card__image {
  object-position: 58% 54%;
}

.home-card--connect .home-card__image {
  object-position: 60% 54%;
}

.home-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 12px;
}

.home-card__copy {
  min-width: 0;
}

.home-card__copy h2 {
  margin-bottom: 4px;
  color: var(--text-h1);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
}

.home-card__copy p {
  color: rgba(204, 216, 236, 0.84);
  font-size: 12px;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-card__helper {
  color: rgba(194, 207, 229, 0.78);
  font-size: 11px;
  line-height: 1.5;
}

.home-card .article-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--home-card-accent) 44%, transparent);
  background: color-mix(in srgb, var(--home-card-accent) 14%, rgba(255, 255, 255, 0));
  color: var(--home-card-accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-card .article-readmore:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--home-card-accent) 76%, transparent);
  background: color-mix(in srgb, var(--home-card-accent) 18%, rgba(255, 255, 255, 0));
}

@media (max-width: 1360px) {
  .home-hero {
    min-height: 418px;
    padding: 30px 28px;
  }

  .page-shell--home[data-home-ready="pending"] .home-hero__skeleton {
    inset: 30px 28px;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 15, 30, 0.98) 0%, rgba(7, 15, 30, 0.94) 30%, rgba(7, 15, 30, 0.62) 52%, rgba(7, 15, 30, 0.18) 74%, rgba(7, 15, 30, 0.08) 100%),
      url("../../assets/images/whale-home-experiment.png") 96% 39% / auto 170% no-repeat;
  }

  .home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-shell--home[data-home-ready="pending"] .home-card-grid__skeleton {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
    padding: 30px 22px;
    border-radius: 26px;
  }

  .page-shell--home[data-home-ready="pending"] .home-hero__skeleton {
    inset: 30px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 15, 30, 0.74) 0%, rgba(7, 15, 30, 0.46) 36%, rgba(7, 15, 30, 0.92) 100%),
      radial-gradient(circle at 84% 10%, rgba(87, 169, 255, 0.24) 0%, transparent 24%),
      url("../../assets/images/whale-home-experiment.png") 72% 20% / cover no-repeat;
  }

  .home-hero__skeleton-copy {
    max-width: none;
  }

  .home-hero__skeleton-badges {
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
  }

  .home-skeleton-block--title {
    width: 84%;
    height: 40px;
  }

  .home-skeleton-block--title-short {
    width: 58%;
    margin-top: 8px;
  }

  .home-skeleton-block--subtitle {
    width: 68%;
    height: 16px;
    margin-top: 14px;
  }

  .home-hero__skeleton-desc {
    margin-top: 16px;
  }

  .home-hero__skeleton-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .home-skeleton-block--button,
  .home-skeleton-block--button-primary,
  .home-skeleton-block--button-short {
    width: 100%;
  }

  .home-hero__skeleton-stats {
    display: flex;
    gap: 10px;
    padding-bottom: 2px;
    justify-content: flex-start;
  }

  .home-hero__skeleton-card {
    width: auto;
    min-width: 156px;
    flex-shrink: 0;
  }

  .home-hero__badge-row {
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
  }

  .home-hero__title {
    margin-top: 10px;
    margin-bottom: 12px;
    max-width: none;
    font-size: 34px;
  }

  .home-hero__title strong {
    margin-left: 8px;
  }

  .home-hero__subtitle {
    margin-top: 2px;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .home-hero__desc {
    max-width: none;
    margin-top: 4px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8;
  }

  .home-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 6px;
  }

  .home-hero__actions .btn {
    min-width: 0;
    justify-content: center;
  }

  .home-hero__stats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    justify-items: start;
    scrollbar-width: none;
  }

  .home-hero__stats::-webkit-scrollbar {
    display: none;
  }

  .hero-quote {
    width: auto;
    min-width: 156px;
    flex-shrink: 0;
  }

  .hero-quote span {
    font-size: 20px;
  }

  .home-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .page-shell--home[data-home-ready="pending"] .home-toolbar__skeleton {
    inset: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .home-toolbar__skeleton-tags {
    flex-wrap: wrap;
  }

  .home-skeleton-block--toolbar-search {
    width: 100%;
  }

  .home-toolbar__search {
    width: 100%;
  }

  .home-card-grid {
    gap: 14px;
  }

  .page-shell--home[data-home-ready="pending"] .home-card-grid__skeleton {
    gap: 14px;
  }

  .home-card__body {
    gap: 14px;
    padding: 18px 18px 16px;
  }

  .home-card__copy h2 {
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding: 22px 18px;
  }

  .page-shell--home[data-home-ready="pending"] .home-hero__skeleton {
    inset: 22px 18px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 15, 30, 0.78) 0%, rgba(7, 15, 30, 0.44) 34%, rgba(7, 15, 30, 0.94) 100%),
      radial-gradient(circle at 84% 8%, rgba(87, 169, 255, 0.22) 0%, transparent 26%),
      url("../../assets/images/whale-home-experiment.png") 68% 18% / cover no-repeat;
  }

  .home-hero__title {
    font-size: 30px;
  }

  .home-hero__actions,
  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__skeleton-actions,
  .page-shell--home[data-home-ready="pending"] .home-card-grid__skeleton {
    grid-template-columns: 1fr;
  }

  .home-card__media {
    aspect-ratio: 16 / 9;
  }

  .home-card-skeleton__media {
    aspect-ratio: 16 / 9;
  }

  .home-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-card-skeleton__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-card .article-readmore {
    width: 100%;
  }

  .home-skeleton-block--card-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .home-hero__badge {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .home-hero__title {
    font-size: 28px;
  }

  .home-hero__title strong {
    margin-left: 6px;
  }

  .home-hero__subtitle {
    font-size: 14px;
  }

  .home-hero__desc {
    font-size: 11px;
  }

  .home-hero__actions {
    grid-template-columns: 1fr;
  }
}
