.home-hero {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.home-hero .hero__title {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(36px, 4vw, 48px);
}

.home-hero .hero__actions {
  margin-bottom: 18px;
}

.home-qualities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-qualities .fact-chip {
  cursor: default;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.home-orbit-wrap {
  position: relative;
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--content-width);
  height: clamp(330px, 37vw, 470px);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-frame);
  background:
    radial-gradient(circle at 24% 78%, var(--color-peach), transparent 32%),
    radial-gradient(circle at 50% 8%, var(--color-lavender), transparent 36%),
    radial-gradient(circle at 82% 58%, var(--color-mint), transparent 34%),
    var(--color-bg);
  box-shadow: var(--shadow-frame);
}

.home-orbit-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .48;
}

.home-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 600px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.home-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--color-accent-ring);
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%);
}

.home-orbit__ring::before,
.home-orbit__ring::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 0 6px var(--color-accent-ring);
}

.home-orbit__ring::before {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
}

.home-orbit__ring::after {
  right: -4px;
  bottom: 34%;
  width: 8px;
  height: 8px;
}

.home-orbit__ring--outer {
  width: 100%;
  height: 62%;
  animation: home-orbit-turn 24s linear infinite;
}

.home-orbit__ring--inner {
  width: 68%;
  height: 43%;
  animation: home-orbit-turn-reverse 18s linear infinite;
}

.home-orbit__label {
  position: absolute;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 4px 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-accent-dark);
  background: var(--color-white-glass);
  box-shadow: var(--shadow-frame);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 650;
}

.home-orbit__label--one {
  top: 10%;
  left: 4%;
}

.home-orbit__label--two {
  top: 3%;
  right: 9%;
}

.home-orbit__label--three {
  right: 1%;
  bottom: 12%;
}

.home-orbit__label--four {
  top: 7%;
  left: 2%;
}

.home-orbit__label--five {
  right: 0;
  bottom: 5%;
}

.home-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(154px, 18vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 22px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text);
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
  animation: home-core-pulse 5s ease-in-out infinite;
}

.home-orbit__core img {
  width: 68px;
  height: 68px;
}

.home-orbit__core strong {
  font-family: var(--font-mono);
  font-size: 17px;
}

.home-orbit__core span {
  color: var(--color-muted);
  font-size: 12px;
}

.home-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-border);
}

.home-status__item {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  background: var(--color-bg);
  font-family: var(--font-mono);
}

.home-status__item span {
  color: var(--color-muted);
  font-size: 10px;
  letter-spacing: .08em;
}

.home-status__item strong {
  font-size: 13px;
}

.home-section-head {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 48px);
}

.home-section-head .eyebrow {
  margin-bottom: 14px;
}

.home-section-head h2 {
  margin-bottom: 14px;
}

.home-section-head p {
  color: var(--color-muted);
  font-size: 16px;
}

.home-section-head--split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.home-section-head--split > div {
  max-width: 760px;
}

.home-section-head--split > a,
.home-more-link a,
.home-faq-picks__head a {
  flex: 0 0 auto;
  font-weight: 650;
  text-decoration: none;
}

.home-feature-browser .tab-panel {
  grid-column: 1;
  grid-row: 1;
}

.home-feature-browser .browser-window__content {
  position: relative;
  min-height: 410px;
}

.home-feature-browser .tab-panel h3 {
  margin-bottom: 10px;
}

.home-feature-browser .tab-panel > p {
  color: var(--color-muted);
}

.home-toggle-sheet {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.home-toggle-sheet > div {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  font-weight: 600;
}

.home-toggle-sheet > div:last-child {
  border-bottom: 0;
}

.home-platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-platform-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  box-shadow: var(--shadow-frame);
}

.home-platform-card:nth-child(1),
.home-platform-card:nth-child(2) {
  grid-column: span 3;
}

.home-platform-card:nth-child(3),
.home-platform-card:nth-child(4),
.home-platform-card:nth-child(5) {
  grid-column: span 2;
}

.home-platform-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  background: var(--color-panel);
}

.home-platform-card__icon svg {
  width: 20px;
  height: 20px;
}

.home-platform-card h3 {
  font-size: 21px;
}

.home-platform-card p {
  flex: 1;
  color: var(--color-muted);
}

.home-platform-card .button {
  align-self: flex-start;
  margin-top: 8px;
}

.home-more-link {
  margin-top: 26px;
  text-align: right;
}

.home-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.home-trust-copy {
  display: grid;
  gap: 30px;
}

.home-trust-copy article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.home-trust-copy article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-trust-copy p {
  color: var(--color-muted);
}

.home-repo-card {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  padding: 26px;
}

.home-repo-card h3 {
  margin-top: 16px;
}

.home-repo-card > p {
  color: var(--color-muted);
}

.home-command {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.home-command code {
  display: block;
  overflow-x: auto;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-code-text);
  background: var(--color-code-bg);
  white-space: nowrap;
}

.home-command .button {
  width: 100%;
}

.home-copy-note {
  margin-top: 10px;
  font-size: 12px;
}

.home-repo-facts {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-border);
}

.home-repo-facts div {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  background: var(--color-bg);
}

.home-repo-facts span {
  color: var(--color-muted);
  font-size: 12px;
}

.home-repo-facts strong {
  font-size: 12px;
}

.home-faq-picks {
  margin-top: clamp(54px, 7vw, 82px);
  padding-top: 34px;
  border-top: 1px solid var(--color-border);
}

.home-faq-picks__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.home-faq-picks__head h3 {
  margin: 0;
}

.home-faq-picks .card h4 {
  font-size: 16px;
}

.home-faq-picks .card p {
  color: var(--color-muted);
}

.home-faq-picks .card a {
  font-weight: 600;
  text-decoration: none;
}

@keyframes home-orbit-turn {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes home-orbit-turn-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes home-core-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@media (max-width: 920px) {
  .home-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-platform-card:nth-child(1),
  .home-platform-card:nth-child(2),
  .home-platform-card:nth-child(3),
  .home-platform-card:nth-child(4),
  .home-platform-card:nth-child(5) {
    grid-column: auto;
  }

  .home-platform-card:last-child {
    grid-column: 1 / -1;
  }

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

  .home-repo-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .home-hero .hero__title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .home-orbit-wrap {
    height: 350px;
  }

  .home-orbit {
    width: 520px;
  }

  .home-section-head--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-feature-browser .browser-window__content {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .hero-platforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-platforms .platform-chip {
    width: 100%;
  }

  .hero-platforms .platform-chip:last-child {
    grid-column: 1 / -1;
  }

  .home-orbit-wrap {
    height: 310px;
    margin-top: 26px;
  }

  .home-orbit {
    width: 410px;
  }

  .home-orbit__core {
    width: 142px;
  }

  .home-orbit__core img {
    width: 56px;
    height: 56px;
  }

  .home-orbit__label {
    padding-inline: 8px;
    font-size: 10px;
  }

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

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

  .home-platform-card:last-child {
    grid-column: auto;
  }

  .home-platform-card .button {
    width: 100%;
  }

  .home-more-link {
    text-align: left;
  }

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

@media (max-width: 390px) {
  .home-orbit {
    width: 350px;
  }

  .home-orbit__ring--outer {
    height: 66%;
  }

  .home-orbit__label--three {
    right: 8%;
  }

  .home-status__item {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-orbit__ring,
  .home-orbit__core {
    animation: none;
  }
}