.page-home {
  --home-gold: #D4AF37;
  --home-amber: #FFB347;
  --home-cyan: #00D4FF;
  --home-bg: #0B0E14;
  --home-bg-alt: #101B2D;
  --home-text: #F5F7FA;
  --home-muted: #7A8BA6;
  --home-line: rgba(245, 247, 250, 0.1);
  --home-glass: rgba(255, 255, 255, 0.08);
  --home-radius: 18px;
  width: 100%;
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

.page-home .home-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.page-home .btn-primary {
  background: linear-gradient(135deg, #D4AF37, #FFB347);
  color: #0B0E14;
  border: none;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5), 0 8px 24px rgba(212, 175, 55, 0.25);
}

.page-home .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  animation: pageHomeBtnSweep 3.8s ease-in-out infinite;
}

.page-home .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--home-line);
  color: var(--home-text);
}

.page-home .btn-ghost:hover {
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--home-gold);
  background: rgba(212, 175, 55, 0.08);
}

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

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B0E14 0%, #0d1522 42%, #101B2D 76%, #0B0E14 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 15% 35%, rgba(0, 212, 255, 0.7), transparent),
    radial-gradient(1px 1px at 35% 60%, rgba(212, 175, 55, 0.55), transparent),
    radial-gradient(2px 2px at 55% 25%, rgba(255, 179, 71, 0.5), transparent),
    radial-gradient(1px 1px at 72% 48%, rgba(0, 212, 255, 0.6), transparent),
    radial-gradient(2px 2px at 85% 70%, rgba(212, 175, 55, 0.45), transparent),
    radial-gradient(1px 1px at 10% 75%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(2px 2px at 45% 85%, rgba(0, 212, 255, 0.35), transparent);
  animation: pageHomeParticles 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 55%;
  left: -15%;
  width: 130%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), rgba(255, 179, 71, 0.9), transparent);
  transform: rotate(-24deg);
  filter: blur(0.5px);
  animation: pageHomeGoldLine 9s ease-in-out infinite;
  pointer-events: none;
}

.page-home .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.06), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(11, 14, 20, 0) 30%, rgba(11, 14, 20, 0.92) 100%);
  pointer-events: none;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 64px;
  }
}

.page-home .breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .breadcrumb a,
.page-home .breadcrumb span {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--home-muted);
  text-decoration: none;
}

.page-home .breadcrumb [aria-current="page"] {
  color: var(--home-cyan);
  font-weight: 600;
}

.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--home-cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.06);
  border-radius: 999px;
  padding: 8px 16px;
  margin: 16px 0 28px;
}

.page-home .hero-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--home-text);
}

.page-home .hero-title-mark {
  display: block;
  color: var(--home-gold);
  font-size: 0.55em;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .page-home .hero-title {
    font-size: 3.5rem;
  }

  .page-home .hero-title-mark {
    display: inline;
    margin-top: 0;
    margin-left: 10px;
  }
}

.page-home .hero-lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--home-muted);
  max-width: 500px;
  margin: 0 0 32px;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  padding-left: 20px;
}

@media (min-width: 768px) {
  .page-home .hero-lead {
    font-size: 1.12rem;
  }
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.page-home .hero-timestamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.page-home .hero-timestamp .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
  animation: pageHomePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.page-home .hero-gate {
  position: relative;
  background: linear-gradient(145deg, rgba(16, 27, 45, 0.95), rgba(11, 14, 20, 0.9));
  border-radius: var(--home-radius);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.page-home .hero-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.7), transparent 40%, transparent 60%, rgba(0, 212, 255, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.page-home .gate-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: var(--home-cyan);
}

.page-home .gate-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 18px 0 14px;
  color: var(--home-text);
}

.page-home .gate-desc {
  font-size: 0.92rem;
  color: var(--home-muted);
  margin: 0 0 24px;
  line-height: 1.7;
}

.page-home .gate-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--home-gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.page-home .gate-link:hover {
  border-bottom-color: rgba(212, 175, 55, 0.5);
  gap: 14px;
}

.page-home .home-faq {
  background: var(--home-bg-alt);
  padding: 70px 20px;
}

@media (min-width: 1024px) {
  .page-home .home-faq {
    padding: 100px 0;
  }
}

.page-home .faq-inner {
  display: grid;
  gap: 36px;
}

@media (min-width: 1024px) {
  .page-home .faq-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
  }
}

.page-home .faq-visual {
  position: relative;
  max-width: 460px;
}

.page-home .faq-visual img {
  width: 100%;
  border-radius: var(--home-radius);
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .faq-visual::after {
  content: attr(data-caption);
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 14, 20, 0.76);
  border: 1px solid var(--home-line);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--home-text);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .page-home .faq-visual {
    max-width: 100%;
  }
}

.page-home .faq-main {
  min-width: 0;
}

.page-home .section-head {
  margin-bottom: 24px;
}

.page-home .section-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--home-gold);
  margin: 0 0 10px;
}

.page-home .section-title {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--home-text);
}

@media (min-width: 768px) {
  .page-home .section-title {
    font-size: 2.5rem;
  }
}

.page-home .section-desc {
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
}

@media (min-width: 768px) {
  .page-home .section-desc {
    font-size: 1.08rem;
  }
}

.page-home .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .faq-item {
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.page-home .faq-item[open] {
  background: rgba(16, 27, 45, 0.9);
  border-color: rgba(212, 175, 55, 0.4);
}

.page-home .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--home-text);
  cursor: pointer;
  list-style: none;
}

.page-home .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-home .faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--home-gold);
  transition: transform 0.3s ease;
}

.page-home .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.page-home .faq-answer {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--home-muted);
}

.page-home .faq-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-cyan);
  text-decoration: none;
  font-size: 0.88rem;
  transition: border-color 0.3s ease, background 0.3s ease, gap 0.3s ease;
}

.page-home .faq-more:hover {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.08);
  gap: 12px;
}

.page-home .home-navmap {
  padding: 70px 20px;
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(0, 212, 255, 0.07), transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(212, 175, 55, 0.06), transparent 45%),
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-color: var(--home-bg);
}

@media (min-width: 1024px) {
  .page-home .home-navmap {
    padding: 100px 0;
  }
}

.page-home .navmap-outer {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .page-home .navmap-outer {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 56px;
  }
}

.page-home .navmap-feature {
  position: relative;
  min-height: 300px;
  border-radius: var(--home-radius);
  overflow: hidden;
  background: var(--home-bg-alt);
  box-shadow: var(--shadow);
}

.page-home .navmap-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .navmap-feature-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(11, 14, 20, 0.96));
}

.page-home .navmap-feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--home-text);
}

.page-home .navmap-feature-desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.page-home .navmap-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

  .page-home .nav-card-5 {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .page-home .nav-card-5 .nav-card-title {
    margin-top: 0;
    flex: 0 0 auto;
  }

  .page-home .nav-card-5 .nav-card-desc {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-left: auto;
    text-align: right;
  }
}

.page-home .nav-card {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(145deg, rgba(16, 27, 45, 0.85), rgba(11, 14, 20, 0.95));
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.page-home .nav-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 42%;
  background: linear-gradient(180deg, var(--home-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-home .nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.page-home .nav-card:hover::before {
  opacity: 1;
}

.page-home .nav-card-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--home-cyan);
}

.page-home .nav-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--home-text);
  margin-top: 18px;
}

.page-home .nav-card-desc {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--home-line);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--home-muted);
}

.page-home .home-trust {
  position: relative;
  padding: 64px 20px;
  overflow: hidden;
  background: var(--home-bg-alt);
}

@media (min-width: 768px) {
  .page-home .home-trust {
    padding: 96px 0;
  }
}

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

.page-home .trust-inner {
  position: relative;
  z-index: 1;
}

.page-home .trust-copy {
  max-width: 760px;
  margin-bottom: 36px;
}

.page-home .trust-title {
  font-family: var(--font-editorial);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--home-text);
}

@media (min-width: 768px) {
  .page-home .trust-title {
    font-size: 2.5rem;
  }
}

.page-home .trust-text {
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0;
}

.page-home .trust-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

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

.page-home .metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.page-home .metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--home-gold);
}

.page-home .metric-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--home-muted);
}

.page-home .trust-note {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.page-home .trust-badge {
  flex-shrink: 0;
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--home-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.page-home .trust-note p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .btn:focus-visible,
.page-home .nav-card:focus-visible,
.page-home .faq-item summary:focus-visible,
.page-home .faq-more:focus-visible,
.page-home .gate-link:focus-visible,
.page-home .breadcrumb a:focus-visible,
.page-home .breadcrumb span:focus-visible {
  outline: 2px solid var(--home-gold);
  outline-offset: 3px;
}

@keyframes pageHomeBtnSweep {
  0% {
    left: -80%;
  }
  45% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

@keyframes pageHomeParticles {
  0% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 0.75;
    transform: translateY(-18px);
  }
  100% {
    opacity: 0.5;
    transform: translateY(-32px);
  }
}

@keyframes pageHomeGoldLine {
  0%,
  100% {
    transform: rotate(-24deg) translateX(0);
    opacity: 0.35;
  }
  50% {
    transform: rotate(-24deg) translateX(40px);
    opacity: 0.7;
  }
}

@keyframes pageHomePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
