.page-home {
  --home-gold-soft: rgba(242, 201, 76, 0.12);
  --home-gold-line: rgba(242, 201, 76, 0.30);
  --home-cyan-soft: rgba(0, 212, 255, 0.10);
  --home-surface-2: #15151F;
  --home-title-size: clamp(2.5rem, 8vw, 5.4rem);
  --home-section-space: clamp(4rem, 9vw, 7rem);
}

.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(680px, 94vh);
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
  background: var(--site-bg);
}

.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(242, 201, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 201, 76, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 32% 40%, black, transparent 72%);
  mask-image: radial-gradient(circle at 32% 40%, black, transparent 72%);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(242, 201, 76, 0.16), transparent 54%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.70) 0%, rgba(10, 10, 15, 0.88) 100%);
  pointer-events: none;
}

.page-home .home-hero-shell {
  position: relative;
  z-index: 3;
}

.page-home .home-hero-inner {
  max-width: 900px;
}

.page-home .home-eyebrow {
  margin: 0 0 1.2rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.page-home .home-hero-title {
  margin: 0;
  font-size: var(--home-title-size);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 900;
}

.page-home .home-hero-divider {
  color: var(--gold);
  font-weight: 300;
  margin: 0 0.12em;
}

.page-home .home-hero-slogan {
  display: block;
  background: linear-gradient(100deg, var(--gold) 0%, var(--text) 48%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-hero-lead {
  margin: 1.6rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.9;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.page-home .home-hero-stats {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.6rem;
}

.page-home .home-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
}

.page-home .home-hero-stats strong {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-home .home-hero-stats span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.page-home .home-scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  pointer-events: none;
}

.page-home .home-scroll-hint::after {
  content: "";
  width: 1px;
  height: 30px;
  margin-left: 0.6rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: home-scroll-pulse 2.4s var(--ease) infinite;
}

@keyframes home-scroll-pulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.page-home .home-section {
  position: relative;
  padding: var(--home-section-space) 0;
}

.page-home .home-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.page-home .section-title {
  margin: 0 0 1.4rem;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.page-home .home-para {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
  max-width: 54ch;
}

.page-home .home-update {
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 201, 76, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(242, 201, 76, 0.05), transparent 22rem),
    var(--site-bg);
  border-bottom: 1px solid var(--line-cool);
}

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

.page-home .home-release-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-home .home-release-mark {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.page-home .home-update-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-home .home-version-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 0%, rgba(242, 201, 76, 0.16), transparent 54%),
    var(--surface);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.page-home .home-version-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  background: conic-gradient(from 220deg, var(--gold), var(--gold-deep), rgba(242, 201, 76, 0.1), var(--gold));
  box-shadow: 0 0 26px rgba(242, 201, 76, 0.16);
}

.page-home .home-version-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-home .home-version-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.page-home .home-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9rem;
}

.page-home .home-arrow-link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.page-home .home-arrow-link:hover::after {
  transform: translateX(4px);
}

.page-home .home-update-content {
  min-width: 0;
}

.page-home .home-timeline {
  border-left: 1px solid var(--line);
  margin: 0 0 1.8rem;
  padding-left: clamp(1.2rem, 3vw, 1.6rem);
}

.page-home .home-timeline-item {
  position: relative;
  padding: 0 0 1.8rem 1rem;
}

.page-home .home-timeline-item:last-child {
  padding-bottom: 0;
}

.page-home .home-timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1.2rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.15);
}

.page-home .home-timeline-version {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.page-home .home-timeline-content h3 {
  margin: 0 0 0.3rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.page-home .home-timeline-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.page-home .home-tab-card {
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.page-home .home-tab-triggers {
  display: flex;
  gap: 0.4rem;
  border-bottom: 1px solid var(--line-cool);
  margin-bottom: 1.1rem;
}

.page-home .home-tab-btn {
  appearance: none;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 0.7rem 0.9rem;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.page-home .home-tab-btn.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

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

.page-home .home-update-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
}

.page-home .home-update-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}

.page-home .home-feedback {
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 212, 255, 0.07), transparent 24rem),
    var(--site-bg);
}

.page-home .home-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.page-home .home-split-media {
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.page-home .home-feature-list {
  list-style: none;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.page-home .home-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-home .home-feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  border-radius: 50%;
  background: var(--cyan);
}

.page-home .home-search {
  background:
    radial-gradient(circle at 88% 42%, rgba(242, 201, 76, 0.10), transparent 26rem),
    linear-gradient(180deg, rgba(10, 10, 15, 0.4), transparent),
    var(--site-bg);
}

.page-home .home-search-visual {
  display: grid;
  gap: 0.8rem;
  max-width: 480px;
  margin: 1.8rem 0 0;
}

.page-home .home-search-box {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1rem;
  color: var(--muted);
}

.page-home .home-search-box::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-62%);
}

.page-home .home-search-box::before {
  content: "";
  position: absolute;
  right: 0.6rem;
  bottom: 0.55rem;
  width: 8px;
  height: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-home .home-search-connector {
  width: 1px;
  height: 24px;
  margin-left: 1rem;
  background: var(--line);
}

.page-home .home-search-result {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--surface);
  padding: 0.8rem 1rem;
}

.page-home .home-search-result p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.page-home .home-search-metric {
  margin: 1rem 0 0;
  color: var(--muted);
}

.page-home .home-search-metric strong {
  color: var(--gold);
  font-weight: 700;
}

.page-home .home-quick {
  background:
    linear-gradient(180deg, rgba(242, 201, 76, 0.04), transparent),
    var(--surface);
  border-block: 1px solid var(--line-cool);
}

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

.page-home .home-quick-lead {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.8;
}

.page-home .home-quick-visual {
  margin-bottom: 1.6rem;
  max-width: 640px;
}

.page-home .home-quick-browser {
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: rgba(10, 10, 15, 0.7);
}

.page-home .home-quick-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line-cool);
}

.page-home .home-quick-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.page-home .home-quick-url {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.page-home .home-quick-feedback {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.page-home .home-quick-viewport {
  padding: 2.8rem 1.4rem 3.2rem;
  text-align: center;
  color: rgba(160, 160, 184, 0.45);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

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

.page-home .home-quick-step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.page-home .home-quick-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.page-home .home-step-num {
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.page-home .home-quick-step h3 {
  margin: 0.6rem 0 0.3rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.page-home .home-quick-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.page-home .home-steps {
  background: var(--site-bg);
}

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

.page-home .home-steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.page-home .home-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem;
}

.page-home .home-step-card-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.08);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-home .home-step-card h3 {
  margin: 0 0 0.3rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.page-home .home-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.page-home .home-trust {
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  padding: 0;
  overflow: hidden;
}

.page-home .home-trust-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-home .home-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.92), rgba(10, 10, 15, 0.42));
}

.page-home .home-trust-shell {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 3.2rem;
}

.page-home .home-trust-inner {
  display: grid;
  gap: 1.6rem;
  max-width: 780px;
}

.page-home .home-trust-quote {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.6;
}

.page-home .home-trust-meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.9rem;
}

.page-home .home-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .page-home .home-hero-stats {
    gap: 0 3rem;
  }

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

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

@media (min-width: 920px) {
  .page-home .home-hero {
    min-height: 720px;
  }

  .page-home .home-update-body {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.8rem, 4vw, 4rem);
  }

  .page-home .home-version-card {
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }

  .page-home .home-split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.8rem, 4vw, 4rem);
  }

  .page-home .home-split-reverse .home-split-media {
    order: -1;
  }

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

  .page-home .home-quick-visual {
    margin-bottom: 0;
  }

  .page-home .home-quick-steps {
    gap: 1.2rem;
  }

  .page-home .home-steps-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .page-home .home-steps-list {
    gap: 1rem;
  }

  .page-home .home-trust {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-scroll-hint::after {
    animation: none;
  }

  .page-home .home-arrow-link::after {
    transition: none;
  }
}
