.page-home .home-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(165, 75, 255, 0.30), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(242, 177, 67, 0.18), transparent 55%),
    var(--ink);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  mix-blend-mode: screen;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .home-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.page-home .home-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .breadcrumb {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.page-home .breadcrumb-current::before {
  content: "// ";
  color: var(--gold);
}

.page-home .home-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--white);
  margin: 0;
}

.page-home .hero-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
  max-width: 34em;
  margin: 0;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.page-home .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin: 12px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(217, 167, 74, 0.28);
}

.page-home .hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .hero-stats dt {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.page-home .hero-stats dd {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.page-home .home-hero-visual {
  position: relative;
}

.page-home .hero-aura {
  position: absolute;
  inset: -18px -10px -6px -10px;
  width: calc(100% + 20px);
  height: calc(100% + 24px);
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero-visual .hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
}

.page-home .hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 167, 74, 0.5);
  box-shadow: var(--shadow-card);
}

.page-home .hero-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gold-dim);
  text-align: right;
  letter-spacing: 0.04em;
}

.page-home .home-quick {
  padding: 56px 0 24px;
}

.page-home .section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.page-home .section-heading h2,
.page-home .news-title-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.page-home .section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
  max-width: 46em;
}

.page-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.page-home .eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex: 0 0 auto;
}

.page-home .quick-grid {
  display: grid;
  gap: 16px;
}

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

@media (min-width: 1000px) {
  .page-home .quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .quick-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-home .quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 177, 67, 0.75);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.page-home .quick-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-pale);
  letter-spacing: 0.08em;
}

.page-home .quick-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.page-home .quick-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}

.page-home .home-panel {
  padding: 48px 0;
}

.page-home .panel-bento {
  display: grid;
  gap: 20px;
}

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

  .page-home .panel-visual {
    grid-column: span 2;
  }

  .page-home .record-card {
    grid-column: span 2;
  }
}

.page-home .panel-bento .bento-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 39, 70, 0.62);
  border: 1px solid rgba(217, 167, 74, 0.35);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.page-home .panel-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.page-home .panel-bento .bento-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.page-home .panel-bento .bento-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-home .panel-demo {
  border: 1px solid rgba(217, 167, 74, 0.45);
  border-radius: var(--radius-md);
  background: rgba(10, 26, 58, 0.55);
  padding: 16px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(217, 167, 74, 0.4);
}

.page-home .demo-fav {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.page-home .demo-level {
  font-size: 12px;
  color: var(--purple-pale);
  border: 1px solid rgba(165, 75, 255, 0.5);
  padding: 2px 10px;
  border-radius: 999px;
}

.page-home .demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-home .demo-col {
  border-radius: var(--radius-sm);
  background: rgba(15, 39, 70, 0.5);
  padding: 12px;
}

.page-home .demo-head {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.page-home .demo-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-home .demo-col li {
  font-size: 14px;
  color: var(--white);
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(10, 26, 58, 0.6);
}

.page-home .record-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

@media (min-width: 700px) {
  .page-home .record-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-home .record-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 167, 74, 0.35);
}

.page-home .tabs {
  margin-top: 16px;
}

.page-home .tab-list {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(217, 167, 74, 0.25);
  padding-bottom: 8px;
}

.page-home .tab-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 44px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.page-home .tab-btn.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.page-home .tab-panel {
  padding-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.page-home .home-fixedbar {
  padding: 48px 0;
}

.page-home .fixedbar-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 167, 74, 0.4);
  background: rgba(15, 39, 70, 0.72);
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

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

.page-home .fixedbar-inner > * {
  position: relative;
  z-index: 1;
}

.page-home .fixedbar-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.page-home .fixedbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--green);
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(48, 233, 122, 0.8);
}

.page-home .fixedbar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .fixedbar-label {
  font-size: 13px;
  color: var(--gold-dim);
}

.page-home .fixedbar-contact a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}

.page-home .fixedbar-contact a:hover {
  color: var(--gold);
}

.page-home .fixedbar-more {
  margin-left: auto;
}

.page-home .home-news {
  padding: 24px 0 72px;
}

.page-home .news-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.page-home .news-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .news-more {
  margin-left: auto;
}

.page-home .news-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .news-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 167, 74, 0.3);
  background: rgba(15, 39, 70, 0.5);
  color: var(--white);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.page-home .news-list a:hover {
  border-color: rgba(242, 177, 67, 0.8);
  background: rgba(15, 39, 70, 0.85);
}

.page-home .news-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--purple-pale);
  border-radius: 999px;
  padding: 3px 10px;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .page-home .fixedbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .fixedbar-more {
    margin-left: 0;
  }

  .page-home .news-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}
