.page-home {
  --home-gap: 20px;
  --home-radius: 24px;
  --home-cut: 14px;
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
}
.page-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 75% 15%, rgba(255,179,0,0.5), transparent),
    radial-gradient(2px 2px at 85% 55%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(0,210,106,0.4), transparent),
    radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 90% 90%, rgba(255,179,0,0.3), transparent);
}
.page-home .container {
  position: relative;
  z-index: 1;
}
.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}
.js-enabled .page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-enabled .page-home [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.page-home [data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
.page-home [data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
.page-home [data-reveal-delay="3"] {
  transition-delay: 0.3s;
}
.page-home .home-head {
  position: relative;
  padding: 28px 0 24px;
}
.page-home .home-head::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,179,0,0.12), transparent 70%);
  pointer-events: none;
}
.page-home .home-head .breadcrumb {
  margin-bottom: 18px;
}
.page-home .home-head .page-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-heading);
  margin-bottom: 14px;
}
.page-home .home-head .page-title--accent {
  display: block;
  color: var(--color-amber);
}
.page-home .home-head .lead-paragraph {
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0;
}
.page-home .bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}
.page-home .home-bento-top {
  margin-bottom: 4px;
}
.page-home .home-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 16px;
}
.page-home .home-focus {
  position: relative;
  border-radius: var(--home-radius);
  background: var(--color-bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255,179,0,0.18);
  transform: skewX(-0.8deg);
}
.page-home .home-focus__media {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.page-home .home-focus__media .home-focus__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-focus__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg-deep) 0%, rgba(11,30,58,0.1) 70%, rgba(11,30,58,0.4) 100%);
}
.page-home .home-focus__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.page-home .home-focus__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.page-home .home-focus__title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.page-home .home-focus__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-amber);
  margin-bottom: 10px;
}
.page-home .home-focus__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-body);
  margin-bottom: 16px;
}
.page-home .home-focus__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .home-focus__calendar {
  background: rgba(11,30,58,0.55);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(255,179,0,0.15);
}
.page-home .home-focus__calendar-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 280px;
  margin: 0 auto;
}
.page-home .home-updates__panel {
  height: 100%;
  background:
    linear-gradient(135deg, rgba(18,44,79,0.95), rgba(11,30,58,0.9)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,179,0,0.03) 10px, rgba(255,179,0,0.03) 20px);
  border-radius: var(--home-radius);
  padding: 22px;
  border: 1px solid rgba(255,179,0,0.12);
}
.page-home .home-updates__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-home .home-updates__item {
  margin: 0;
}
.page-home .home-updates__link {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--color-body);
  transition: color 0.2s ease;
}
.page-home .home-updates__link:hover {
  color: var(--color-amber);
}
.page-home .home-updates__dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--grad-green);
  box-shadow: 0 0 8px rgba(0,210,106,0.5);
}
.page-home .home-updates__text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.5;
}
.page-home .home-updates__text strong {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-heading);
  margin-bottom: 2px;
}
.page-home .home-stats {
  margin: 32px 0 4px;
}
.page-home .home-stats__intro {
  margin-bottom: 4px;
}
.page-home .home-stat-card {
  background: var(--color-bg-card);
  border-radius: var(--home-radius);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-deep);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.page-home .home-stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-amber);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.page-home .home-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,179,0,0.35);
}
.page-home .home-stat-card:hover::after {
  transform: scaleX(1);
}
.page-home .home-stat-card__num {
  font-family: var(--font-mono);
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-amber);
  margin-bottom: 8px;
}
.page-home .home-stat-card__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
.page-home .home-chart__frame {
  height: 100%;
  min-height: 180px;
}
.page-home .home-chart__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-note {
  background:
    linear-gradient(135deg, rgba(0,210,106,0.08), rgba(18,44,79,0.9)),
    var(--color-bg-card);
  border-radius: var(--home-radius);
  padding: 24px;
  border: 1px solid rgba(0,210,106,0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home .home-note__big {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-heading);
  margin: 0 0 10px;
}
.page-home .home-note__num {
  font-family: var(--font-mono);
  font-size: 34px;
  color: var(--color-green);
  margin-left: 6px;
}
.page-home .home-note__sub {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-body);
  margin: 0 0 16px;
}
.page-home .home-note__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.page-home .home-apps {
  margin: 32px 0 4px;
}
.page-home .home-apps__intro {
  background: var(--color-bg-card);
  border-radius: var(--home-radius);
  padding: 22px;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255,179,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home .home-apps__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-body);
  margin: 0 0 16px;
}
.page-home .home-apps__features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .home-apps__features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--color-body);
}
.page-home .home-apps__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(-45deg);
}
.page-home .home-apps__media .home-apps__frame {
  height: 100%;
  min-height: 200px;
}
.page-home .home-apps__media .home-apps__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-outro {
  margin: 32px 0 0;
}
.page-home .home-outro__brand .home-outro__frame {
  height: 100%;
}
.page-home .home-outro__brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-outro__content {
  background: var(--color-bg-card);
  border-radius: var(--home-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-deep);
}
.page-home .home-outro__lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 20px;
  max-width: 560px;
}
.page-home .home-outro__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .home-feedback {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--grad-amber);
  color: var(--color-bg-deep);
  font-family: var(--font-mono);
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-deep);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .home-feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(10,22,40,0.6);
}
.page-home .home-feedback__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-bg-deep);
  color: var(--color-amber);
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media (min-width: 900px) {
  .page-home {
    --home-gap: 24px;
    padding-bottom: 24px;
  }
  .page-home .home-head {
    padding: 36px 0 32px;
  }
  .page-home .home-head .page-title {
    font-size: 56px;
  }
  .page-home .bento {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .bento__cell--3 {
    grid-column: span 3;
  }
  .page-home .bento__cell--4 {
    grid-column: span 4;
  }
  .page-home .bento__cell--5 {
    grid-column: span 5;
  }
  .page-home .bento__cell--6 {
    grid-column: span 6;
  }
  .page-home .bento__cell--7 {
    grid-column: span 7;
  }
  .page-home .bento__cell--8 {
    grid-column: span 8;
  }
  .page-home .bento__cell--12 {
    grid-column: span 12;
  }
  .page-home .home-focus__media {
    height: 200px;
  }
  .page-home .home-focus__body {
    flex-direction: row;
    align-items: stretch;
    padding: 24px;
    gap: 24px;
  }
  .page-home .home-focus__info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .page-home .home-focus__calendar {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-home .home-focus__desc {
    margin-bottom: auto;
  }
  .page-home .home-focus__actions {
    margin-top: 18px;
  }
  .page-home .home-updates__panel {
    padding: 26px;
  }
  .page-home .home-stats {
    margin: 40px 0 8px;
  }
  .page-home .home-stat-card {
    min-height: 140px;
  }
  .page-home .home-stat-card__num {
    font-size: 36px;
  }
  .page-home .home-apps {
    margin: 40px 0 8px;
  }
  .page-home .home-apps__intro {
    padding: 28px;
  }
  .page-home .home-outro {
    margin: 40px 0 0;
  }
  .page-home .home-outro__content {
    padding: 32px;
  }
  .page-home .home-feedback {
    right: 32px;
    bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .page-home .home-focus__calendar {
    flex-basis: 280px;
  }
}
