.page-home {
  --home-hero-bg: var(--color-paper);
  --home-card-bg: var(--color-cream);
  --home-ink: var(--color-ink);
  --home-gold: var(--color-gold);
  --home-orange: var(--color-orange);
  --home-green: var(--color-green);

  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--color-paper);
}

.page-home .container {
  max-width: var(--width-site);
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 3.5rem);
  padding-right: clamp(1rem, 4vw, 3.5rem);
}

.page-home .section {
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.page-home .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 107, 53, 0.08);
  border-left: 3px solid var(--color-orange);
}

.page-home .home-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  color: var(--color-ink);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-paper) 0%, #FDF9F0 60%, var(--color-ink) 60%, var(--color-ink) 100%);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 35%;
  width: 45%;
  height: 80%;
  background: rgba(212, 175, 55, 0.12);
  transform: rotate(-18deg);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

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

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

.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--color-ink);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-graphite);
  margin: 0 0 2rem;
  max-width: 560px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

.page-home .btn:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

.page-home .page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn--primary {
  background-color: var(--color-orange);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.page-home .btn--primary:hover {
  background-color: #E85A28;
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.35);
}

.page-home .btn--outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.page-home .btn--outline:hover {
  background-color: var(--color-ink);
  color: var(--color-paper);
}

.page-home .home-hero__visual {
  position: relative;
  margin-top: 0;
}

.page-home .home-hero__visual .media-frame {
  margin: 0;
}

.page-home .media-frame {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-cream);
}

.page-home .media-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .media-frame--ratio {
  aspect-ratio: 4 / 3;
}

.page-home .media-frame--ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.page-home .home-hero__mark {
  position: absolute;
  right: -12px;
  top: 12%;
  width: 40px;
  height: 200px;
  opacity: 0.7;
  pointer-events: none;
}

.page-home .home-hero__mark-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 180px;
  background: var(--color-gold);
  transform: rotate(15deg);
  transform-origin: top center;
}

.page-home .home-hero__mark-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}

.page-home .home-hero__mark-dot--one {
  top: 10px;
  left: 20px;
}

.page-home .home-hero__mark-dot--two {
  top: 90px;
  left: 4px;
}

.page-home .home-hero__mark-dot--three {
  bottom: -12px;
  right: 12px;
}

.page-home .home-hero__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: clamp(1rem, 4vw, 3.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-graphite);
  text-decoration: none;
  z-index: 2;
  padding: 0.25rem 0;
}

.page-home .home-hero__scroll-arrow {
  display: inline-block;
  animation: home-bounce 2s infinite;
}

@keyframes home-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.page-home .home-daily {
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(184, 196, 217, 0.4);
}

.page-home .home-daily__aside {
  margin-bottom: 2rem;
}

.page-home .home-daily__note {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-graphite);
  margin: 0 0 1.5rem;
  max-width: 360px;
}

.page-home .data-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-fog);
}

.page-home .data-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-fog);
}

.page-home .data-key {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-graphite);
}

.page-home .data-value {
  font-family: var(--font-number);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
}

.page-home .data-value--green {
  color: var(--color-green);
}

.page-home .data-value--orange {
  color: var(--color-orange);
}

.page-home .home-daily__board {
  background: var(--color-paper);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.06);
  border: 1px solid rgba(184, 196, 217, 0.35);
  height: 100%;
}

.page-home .home-daily__board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-home .home-daily__board-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ink);
}

.page-home .home-daily__board-time {
  font-family: var(--font-number);
  font-size: 0.8rem;
  color: var(--color-orange);
}

.page-home .home-daily__wave {
  width: 100%;
  height: 90px;
  margin-bottom: 1.75rem;
  display: block;
}

.page-home .home-daily__wave-path {
  stroke-dasharray: 6 6;
  animation: home-dash 18s linear infinite;
}

@keyframes home-dash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -240; }
}

.page-home .home-daily__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-home .home-daily__item {
  padding: 0.875rem 1rem;
  background: var(--color-cream);
  border-radius: 12px;
  border-left: 4px solid var(--color-gold);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .home-daily__item:hover {
  background: #FFFFFF;
  transform: translateX(4px);
}

.page-home .home-daily__item a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
}

.page-home .home-daily__item a:hover {
  color: var(--color-orange);
}

.page-home .home-entry {
  background-color: var(--color-paper);
}

.page-home .home-entry__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home .home-entry__note {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-graphite);
  max-width: 520px;
  margin: 0;
}

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

.page-home .home-entry__card {
  display: block;
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  text-decoration: none;
  border: 1px solid rgba(184, 196, 217, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.page-home .home-entry__card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
}

.page-home .home-entry__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 31, 68, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
}

.page-home .home-entry__card:hover::after {
  transform: scale(1.6);
}

.page-home .home-entry__icon {
  display: inline-flex;
  margin-bottom: 1rem;
}

.page-home .home-entry__icon svg {
  width: 40px;
  height: 40px;
}

.page-home .home-entry__title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.page-home .home-entry__desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}

.page-home .home-entry__meta {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 0.8rem;
  color: var(--color-orange);
  background: rgba(255, 107, 53, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.page-home .home-entry__figure .media-frame {
  height: 100%;
  min-height: 180px;
  margin: 0;
}

.page-home .home-entry__figure .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-pricing {
  background-color: var(--color-ink);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-home .home-pricing::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-pricing .section-label {
  background: rgba(212, 175, 55, 0.12);
  border-left-color: var(--color-gold);
  color: var(--color-gold);
}

.page-home .home-pricing .home-section-title {
  color: #FFFFFF;
}

.page-home .home-pricing__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.page-home .home-pricing__head .btn--outline {
  border-color: var(--color-gold);
  color: var(--color-gold);
  align-self: flex-start;
}

.page-home .home-pricing__head .btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-ink);
}

.page-home .home-pricing__intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2.5rem;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.page-home .home-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.page-home .home-pricing__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.page-home .home-pricing__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
}

.page-home .home-pricing__card--featured {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}

.page-home .home-pricing__card--featured:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.6);
}

.page-home .home-pricing__card-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.page-home .home-pricing__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  background: var(--color-gold);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.page-home .home-pricing__plan {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.page-home .home-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0 0 0.25rem;
}

.page-home .home-pricing__amount {
  font-family: var(--font-number);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.page-home .home-pricing__unit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-pricing__annual {
  font-family: var(--font-number);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-pricing__quota {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.page-home .home-pricing__quota-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-pricing__quota-value {
  font-family: var(--font-number);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.page-home .home-pricing__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.page-home .home-pricing__link:hover {
  border-bottom-color: var(--color-gold);
}

.page-home .home-archive {
  background-color: var(--color-paper);
}

.page-home .home-archive__aside {
  margin-bottom: 2rem;
}

.page-home .home-archive__intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-graphite);
  margin: 0 0 1.75rem;
  max-width: 400px;
}

.page-home .home-archive__list {
  margin-bottom: 1.75rem;
}

.page-home .home-archive__figure .media-frame {
  margin: 0;
  box-shadow: 0 18px 50px rgba(10, 31, 68, 0.1);
}

.page-home .home-news {
  background-color: var(--color-cream);
  border-top: 1px solid rgba(184, 196, 217, 0.4);
}

.page-home .home-news__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-home .home-news__intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-graphite);
  max-width: 560px;
  margin: 0 0 2rem;
}

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

.page-home .home-news__item {
  background: var(--color-paper);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(184, 196, 217, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.page-home .home-news__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 31, 68, 0.07);
}

.page-home .home-news__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
  opacity: 0.5;
}

.page-home .home-news__item--price::before {
  background: var(--color-orange);
}

.page-home .home-news__item--quote::before {
  background: var(--color-gold);
}

.page-home .home-news__item--quota::before {
  background: #6C8EBF;
}

.page-home .home-news__item--version::before {
  background: var(--color-green);
}

.page-home .home-news__item--secure::before {
  background: #7A86A8;
}

.page-home .home-news__item--award::before {
  background: var(--color-orange);
}

.page-home .home-news__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background: rgba(184, 196, 217, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

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

.page-home .home-news__summary {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-graphite);
  margin: 0 0 0.875rem;
}

.page-home .home-news__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.page-home .home-news__link:hover {
  border-bottom-color: var(--color-orange);
}

.page-home .home-trust {
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-ink) 100%);
}

.page-home .home-trust__inner {
  background: var(--color-ink);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.15);
}

.page-home .home-trust__content {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.page-home .home-trust .section-label {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
  border-left-color: var(--color-gold);
}

.page-home .home-trust .home-section-title {
  color: #FFFFFF;
}

.page-home .home-trust__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  max-width: 640px;
}

.page-home .home-trust__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-number);
  font-size: 0.85rem;
  color: var(--color-gold);
}

.page-home .home-trust__figure .media-frame {
  margin: 0;
  width: 100%;
}

.page-home .home-trust__figure .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

  .page-home .home-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .page-home .home-trust__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }

  .page-home .home-trust__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-home .home-trust__figure {
    display: flex;
  }

  .page-home .home-trust__figure .media-frame {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: 5fr 5fr;
    align-items: center;
    min-height: 520px;
  }

  .page-home .home-hero__content {
    padding-right: 2rem;
  }

  .page-home .home-hero__visual {
    margin-left: 2rem;
  }

  .page-home .home-daily__aside {
    margin-bottom: 0;
  }

  .page-home .home-daily__board {
    max-width: 560px;
  }

  .page-home .home-entry__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .home-entry__note {
    text-align: right;
  }

  .page-home .home-entry__card--primary {
    background: linear-gradient(135deg, var(--color-ink) 0%, #132A58 100%);
    border-color: transparent;
  }

  .page-home .home-entry__card--primary .home-entry__title {
    color: #FFFFFF;
  }

  .page-home .home-entry__card--primary .home-entry__desc {
    color: rgba(255, 255, 255, 0.8);
  }

  .page-home .home-entry__card--primary .home-entry__meta {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
  }

  .page-home .home-pricing__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .home-archive__grid {
    align-items: center;
  }

  .page-home .home-archive__aside {
    margin-bottom: 0;
  }

  .page-home .home-news__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .home-sidebar {
    display: block;
    position: fixed;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
  }

  .page-home .home-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(253, 249, 240, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 196, 217, 0.4);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 8px 28px rgba(10, 31, 68, 0.08);
  }

  .page-home .home-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.25s var(--ease);
  }

  .page-home .home-sidebar__link:hover {
    background: rgba(212, 175, 55, 0.12);
  }

  .page-home .home-sidebar__num {
    font-family: var(--font-number);
    font-size: 0.7rem;
    color: var(--color-gold);
    font-weight: 700;
  }

  .page-home .home-sidebar__text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-ink);
    font-weight: 500;
  }
}

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

  .page-home .home-trust__content {
    padding: 3rem 4rem;
  }

  .page-home .home-hero {
    padding-top: clamp(3rem, 6vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__scroll-arrow,
  .page-home .home-daily__wave-path {
    animation: none;
  }

  .page-home .home-hero::before {
    filter: none;
  }

  .page-home .home-entry__card,
  .page-home .home-pricing__card,
  .page-home .home-news__item {
    transition: none;
  }
}
