:root {
  --bg: #f4f7fb;
  --bg-deep: #e5eef9;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.97);
  --text: #14253d;
  --muted: #60708b;
  --line: #d8dfeb;
  --blue: #1f4fd8;
  --blue-soft: #e9f0ff;
  --green: #0f9f6e;
  --green-soft: #e9fbf4;
  --red: #d13d38;
  --red-soft: #fff0ef;
  --gold: #a76a00;
  --gold-soft: #fff6df;
  --shadow: 0 28px 70px rgba(17, 31, 60, 0.12);
  --shadow-soft: 0 18px 48px rgba(17, 31, 60, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 79, 216, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 159, 110, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 38%, var(--bg-deep) 100%);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.brand-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 18px 56px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.logo-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(214, 229, 245, 0.95);
  border-radius: 999px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2fd08e 0%, #17b67a 100%);
  box-shadow: 0 0 0 6px rgba(47, 208, 142, 0.12);
}

.logo-mark {
  width: min(320px, 56vw);
  height: auto;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(216, 223, 235, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(17, 31, 60, 0.08);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.topnav a:hover {
  transform: translateY(-1px);
}

.topnav a.is-active,
.topnav a:hover {
  background: #172033;
  border-color: #172033;
  color: #fff;
}

.topnav a.nav-cta {
  background: linear-gradient(135deg, #1f4fd8, #6d5df6);
  border-color: transparent;
  color: #fff;
}

.topnav a.nav-cta:hover {
  background: linear-gradient(135deg, #2047b7, #5f53dd);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  margin-bottom: 26px;
}

.hero-copy,
.hero-panel,
.section-card,
.notice-panel,
.community-shell,
.footer,
.cta-band {
  border: 1px solid rgba(216, 223, 235, 0.94);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(109, 93, 246, 0.12), transparent 24%),
    radial-gradient(circle at left center, rgba(31, 79, 216, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 260px;
  height: 220px;
  border-radius: 50%;
  background: rgba(31, 79, 216, 0.08);
  filter: blur(24px);
  pointer-events: none;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(31, 79, 216, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 .accent {
  color: #59aaf7;
}

.hero h1 .accent-secondary {
  color: #6d5df6;
}

.hero-summary {
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 223, 235, 0.88);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.community-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #1f4fd8, #6d5df6);
  box-shadow: 0 14px 32px rgba(58, 93, 220, 0.22);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 223, 235, 0.96);
}

.button.accent {
  color: #fff;
  background: linear-gradient(135deg, #0f9f6e, #1aa677);
  box-shadow: 0 14px 32px rgba(15, 159, 110, 0.2);
}

.hero-risk {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.hero-panel {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(31, 79, 216, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(15, 159, 110, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 247, 255, 0.94) 100%);
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hero-panel-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-panel-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-detail-item {
  padding: 14px 16px;
  border: 1px solid rgba(216, 223, 235, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-detail-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-detail-item strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.hero-stat {
  padding: 18px 16px;
  border: 1px solid rgba(216, 223, 235, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

.hero-stat.positive strong {
  color: var(--green);
}

.hero-stat.neutral strong {
  color: var(--blue);
}

.hero-stat.alert strong {
  color: var(--red);
}

.section {
  margin-top: 18px;
}

.section-card {
  padding: 30px;
}

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

.section-head h2 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.inline-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.sample-banner,
.style-focus-card {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(216, 223, 235, 0.92);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.sample-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(209, 61, 56, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 240, 239, 0.9) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(244, 248, 255, 0.94) 100%);
}

.sample-banner h3,
.style-focus-card h3 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.sample-banner p,
.style-focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.sample-banner p {
  align-self: end;
}

.style-focus-card {
  background:
    radial-gradient(circle at top left, rgba(31, 79, 216, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(109, 93, 246, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.style-focus-card p {
  margin-top: 12px;
  max-width: 920px;
}

.story-grid,
.position-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.position-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.position-card {
  padding: 24px;
  border: 1px solid rgba(216, 223, 235, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.story-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-card h3,
.position-card h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.story-card p,
.position-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.proof-hero-card,
.proof-card {
  border: 1px solid rgba(216, 223, 235, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.proof-hero-card {
  grid-column: span 12;
  padding: 32px 28px;
  background:
    linear-gradient(135deg, rgba(255, 240, 239, 0.94) 0%, rgba(255, 255, 255, 0.98) 54%, rgba(244, 248, 255, 0.95) 100%);
  box-shadow: 0 24px 60px rgba(209, 61, 56, 0.1);
}

.metric-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.metric-big {
  margin-top: 16px;
  font-size: clamp(58px, 10vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 900;
  color: var(--red);
}

.metric-title {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.metric-caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.proof-card {
  grid-column: span 4;
  padding: 24px;
}

.proof-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.proof-card .proof-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-card .proof-value {
  margin-top: 14px;
  font-size: 46px;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.proof-card .proof-description,
.proof-card .proof-small-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.proof-card.positive .proof-value {
  color: var(--green);
}

.proof-card.neutral .proof-value {
  color: var(--blue);
}

.proof-card.gold .proof-value {
  color: var(--gold);
}

.proof-card.red .proof-value {
  color: var(--red);
}

.annual-grid,
.volume-list,
.method-list {
  margin-top: 18px;
}

.annual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.annual-item {
  border: 1px solid rgba(216, 223, 235, 0.92);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.annual-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.annual-item strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.annual-item.positive strong {
  color: var(--green);
}

.annual-item.red strong {
  color: var(--red);
}

.annual-item.blue strong {
  color: var(--blue);
}

.annual-item.gold strong {
  color: var(--gold);
}

.volume-list,
.method-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.volume-list li,
.method-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 223, 235, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.volume-list li strong,
.method-list li strong {
  color: var(--text);
  font-size: 15px;
}

.notice-panel {
  margin-top: 18px;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 248, 231, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.notice-panel h3,
.community-copy h2,
.community-qr-card h3,
.cta-band h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.notice-panel p,
.community-copy p,
.community-qr-card p,
.cta-band p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.report-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 223, 235, 0.92);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.report-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(17, 31, 60, 0.12);
}

.report-card.lead {
  grid-column: span 8;
}

.report-card figure {
  margin: 0;
}

.report-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  background: #eef3fb;
}

.report-card.lead img {
  height: 320px;
}

.report-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.report-caption {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.report-summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.report-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.community-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(31, 79, 216, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 159, 110, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.community-highlight {
  min-height: 172px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.9);
  background: rgba(255, 255, 255, 0.86);
}

.community-highlight strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.community-highlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(31, 79, 216, 0.08);
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-compliance {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 223, 235, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.community-qr-card {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(216, 223, 235, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.qr-frame {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.9);
  background: rgba(255, 255, 255, 0.9);
}

.qr-frame img {
  width: 100%;
  border-radius: 18px;
}

.qr-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  background:
    radial-gradient(circle at top right, rgba(31, 79, 216, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.cta-band-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.footer {
  margin-top: 18px;
  padding: 22px 24px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer p + p {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 223, 235, 0.94);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero,
  .sample-banner,
  .community-shell,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .report-card,
  .report-card.lead {
    grid-column: span 6;
  }

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

  .position-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .brand-page {
    padding: 22px 14px 40px;
  }

  .hero-copy,
  .hero-panel,
  .section-card,
  .community-shell,
  .footer,
  .cta-band {
    border-radius: 28px;
  }

  .hero-copy,
  .section-card,
  .community-shell,
  .cta-band {
    padding: 24px 20px;
  }

  .sample-banner,
  .style-focus-card {
    padding: 22px 20px;
  }

  .proof-grid,
  .reports-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .proof-card,
  .proof-hero-card,
  .report-card,
  .report-card.lead {
    grid-column: span 6;
  }

  .story-grid,
  .position-grid,
  .community-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topnav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .logo-mark {
    width: min(240px, 70vw);
  }

  .hero-stats-grid,
  .hero-detail-list,
  .annual-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .topnav a {
    width: 100%;
  }

  .hero-actions,
  .community-actions,
  .cta-band-actions,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .volume-list li,
  .method-list li {
    flex-direction: column;
  }

  .report-card img,
  .report-card.lead img {
    height: 220px;
  }
}

@keyframes homeStream {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }

  12% {
    opacity: 0.75;
  }

  88% {
    opacity: 0.22;
  }

  100% {
    transform: translateX(132vw);
    opacity: 0;
  }
}

@keyframes homeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes homePulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1);
  }

  50% {
    opacity: 0.42;
    transform: scale(1.03);
  }
}

@keyframes homeDrift {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(6deg);
  }
}

.home-page.brand-page {
  position: relative;
  max-width: none;
  padding: 0 0 72px;
  overflow: clip;
}

.home-page .topbar {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px 0;
}

.home-page .logo-link {
  gap: 16px;
}

.home-page .logo-pill {
  min-height: 44px;
  padding: 0 18px;
  border-color: rgba(214, 229, 245, 0.7);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(47, 74, 122, 0.12);
  color: #334155;
  backdrop-filter: blur(18px);
}

.home-page .logo-mark {
  width: min(360px, 54vw);
}

.home-page .topnav {
  position: relative;
  z-index: 4;
  gap: 10px;
}

.home-page .topnav a {
  border-color: rgba(216, 223, 235, 0.72);
  background: rgba(255, 255, 255, 0.68);
  color: #475569;
  box-shadow: 0 14px 36px rgba(17, 31, 60, 0.08);
  backdrop-filter: blur(18px);
}

.home-page .topnav a.is-active,
.home-page .topnav a:hover {
  border-color: rgba(15, 23, 42, 0.88);
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
}

.home-page .topnav a.nav-cta {
  background: linear-gradient(135deg, #1f4fd8, #6b46c1);
  color: #fff;
}

.home-page .topnav a.nav-cta:hover {
  background: linear-gradient(135deg, #2047b7, #5b3db2);
}

.home-stage {
  position: relative;
  min-height: 100vh;
  padding-bottom: 88px;
  overflow: hidden;
}

.home-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.32) 0%, rgba(248, 250, 252, 0.9) 82%, rgba(248, 250, 252, 0.98) 100%);
  pointer-events: none;
}

.home-stage-grid {
  position: absolute;
  inset: 14% -12% auto;
  height: 68%;
  background:
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.12) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(180deg, rgba(148, 163, 184, 0.1) 0 1px, transparent 1px 82px);
  transform: perspective(1400px) rotateX(72deg);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 92%);
  opacity: 0.82;
  pointer-events: none;
}

.home-stage-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}

.home-stage-glow-left {
  left: 8%;
  top: 16%;
  width: 280px;
  height: 280px;
  background: rgba(14, 165, 233, 0.18);
}

.home-stage-glow-right {
  right: 8%;
  top: 22%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.16);
}

.home-stage-streams {
  position: absolute;
  inset: 12% 0 auto;
  height: 40%;
  pointer-events: none;
}

.home-stage-stream {
  position: absolute;
  left: -18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), transparent);
  animation: homeStream 15s linear infinite;
}

.home-stage-stream.stream-a {
  top: 14%;
  width: 250px;
  animation-delay: 0s;
}

.home-stage-stream.stream-b {
  top: 34%;
  width: 320px;
  animation-delay: 2.2s;
}

.home-stage-stream.stream-c {
  top: 58%;
  width: 280px;
  animation-delay: 4.4s;
}

.home-stage-stream.stream-d {
  top: 76%;
  width: 360px;
  animation-delay: 6.6s;
}

.home-hero {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 20px 0;
}

.home-hero-tag,
.home-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 229, 245, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(47, 74, 122, 0.1);
  color: #334155;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.home-hero-tag::before,
.home-section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.08);
}

.home-section-label.is-danger {
  color: #dc2626;
}

.home-section-label.is-violet {
  color: #7c3aed;
}

.home-section-label.is-muted {
  color: #64748b;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 176px);
  padding-top: 26px;
}

.home-hero-copy {
  max-width: 780px;
  justify-self: center;
  text-align: center;
}

.home-hero-copy h1 {
  margin: 22px 0 0;
  color: #0f172a;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.home-hero-accent {
  color: #6b46c1;
}

.home-hero-summary {
  max-width: 760px;
  margin: 24px auto 0;
  color: #475569;
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.8;
}

.home-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.home-hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 223, 235, 0.82);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.home-hero-stat {
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(216, 223, 235, 0.82);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
  text-align: left;
}

.home-hero-stat span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-hero-stat strong {
  display: block;
  margin-top: 12px;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-hero-actions,
.home-community-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.home-page .button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.12);
  backdrop-filter: blur(18px);
}

.home-page .button.primary {
  background: linear-gradient(135deg, #1f4fd8, #6b46c1);
}

.home-page .button.secondary {
  border: 1px solid rgba(216, 223, 235, 0.92);
  background: rgba(255, 255, 255, 0.72);
}

.home-page .button.accent {
  background: linear-gradient(135deg, #0f9f6e, #19b97f);
}

.home-risk {
  max-width: 780px;
  margin: 22px auto 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.75;
}

.home-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.home-visual-orbit {
  width: min(100%, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.home-orb {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(191, 219, 254, 0.82);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.94) 0%, rgba(238, 247, 255, 0.92) 48%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow:
    0 34px 82px rgba(14, 165, 233, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.home-orb::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 68%);
  animation: homePulse 8s ease-in-out infinite;
}

.home-orb::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px dashed rgba(125, 211, 252, 0.42);
  animation: homeDrift 18s ease-in-out infinite;
}

.home-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(191, 219, 254, 0.72);
}

.home-orb-ring.ring-a {
  inset: 12%;
}

.home-orb-ring.ring-b {
  inset: 24%;
}

.home-orb-ring.ring-c {
  inset: 36%;
}

.home-orb-core {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(235, 245, 255, 0.9) 100%);
  border: 1px solid rgba(191, 219, 254, 0.78);
  box-shadow: 0 20px 52px rgba(47, 74, 122, 0.12);
  text-align: center;
}

.home-orb-core span {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-orb-core strong {
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -0.04em;
}

.home-orb-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2dd4bf 0%, #0ea5e9 100%);
  box-shadow: 0 0 0 10px rgba(45, 212, 191, 0.08);
  animation: homeFloat 6s ease-in-out infinite;
}

.home-orb-node.node-a {
  left: 18%;
  top: 20%;
}

.home-orb-node.node-b {
  right: 18%;
  top: 24%;
  animation-delay: 0.6s;
}

.home-orb-node.node-c {
  left: 14%;
  top: 56%;
  animation-delay: 1.2s;
}

.home-orb-node.node-d {
  right: 16%;
  top: 58%;
  animation-delay: 1.8s;
}

.home-orb-node.node-e {
  left: 48%;
  top: 12%;
  animation-delay: 2.4s;
}

.home-orb-node.node-f {
  left: 50%;
  bottom: 14%;
  animation-delay: 3s;
}

.home-network-grid {
  width: 100%;
  max-width: 470px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-network-card {
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.82);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.home-network-card span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-network-card strong {
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.home-main {
  position: relative;
  z-index: 3;
}

.home-section {
  padding: 0 0 98px;
}

.home-section-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-section-intro {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-section-intro h2 {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-section-intro h2 span {
  color: #7c3aed;
}

.home-section-intro p,
.home-section-note {
  margin: 18px auto 0;
  max-width: 820px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.82;
}

.home-return-banner,
.home-style-shell,
.home-community-shell,
.home-community-alert,
.home-proof-card,
.home-battle-card,
.home-volume-card,
.home-report-card,
.home-footer-inner {
  border: 1px solid rgba(216, 223, 235, 0.78);
  box-shadow: 0 28px 70px rgba(17, 31, 60, 0.09);
  backdrop-filter: blur(18px);
}

.home-return-banner {
  margin-bottom: 24px;
  padding: 54px 40px;
  border-radius: 40px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(254, 202, 202, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(254, 242, 242, 0.96) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(248, 250, 252, 0.95) 100%);
}

.home-return-label,
.home-card-kicker {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-card-kicker.is-danger {
  color: #dc2626;
}

.home-card-kicker.is-blue {
  color: #2563eb;
}

.home-card-kicker.is-green {
  color: #059669;
}

.home-card-kicker.is-gold {
  color: #a16207;
}

.home-return-value {
  margin-top: 18px;
  color: #dc2626;
  font-size: clamp(70px, 12vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.home-return-title {
  margin-top: 12px;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-return-note {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
}

.home-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
}

.home-proof-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.home-proof-mini-grid,
.home-battle-grid,
.home-style-grid,
.home-community-highlights {
  display: grid;
  gap: 18px;
}

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

.home-proof-card,
.home-battle-card,
.home-volume-card,
.home-style-card,
.home-community-card {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
}

.home-proof-card h3,
.home-battle-card h3,
.home-volume-card h3,
.home-style-card h3,
.home-community-card h3,
.home-community-copy h2,
.home-qr-card h3 {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.home-proof-value {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 58px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.home-proof-value.is-blue {
  color: #2563eb;
}

.home-proof-value.is-green {
  color: #059669;
}

.home-proof-card p,
.home-volume-card p,
.home-style-copy p,
.home-style-card p,
.home-community-alert p,
.home-community-copy p,
.home-qr-card p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.86;
}

.home-method-list,
.home-volume-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.home-method-list li,
.home-volume-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(216, 223, 235, 0.88);
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.home-method-list li strong,
.home-volume-list li strong {
  color: #0f172a;
  font-size: 15px;
}

.home-battle-card {
  background:
    radial-gradient(circle at top right, rgba(254, 202, 202, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(254, 242, 242, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.home-battle-item {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.86);
  background: rgba(255, 255, 255, 0.8);
}

.home-battle-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-battle-item strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.home-battle-item p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
}

.home-battle-item.is-green strong {
  color: #059669;
}

.home-battle-item.is-red strong {
  color: #dc2626;
}

.home-battle-item.is-blue strong {
  color: #2563eb;
}

.home-battle-item.is-gold strong {
  color: #a16207;
}

.home-card-footnote {
  margin-top: 18px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.7;
}

.home-style-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(167, 139, 250, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.home-style-copy h2 {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-style-quote {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(216, 223, 235, 0.82);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
  color: #0f172a;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.home-style-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-style-flags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 223, 235, 0.82);
  background: rgba(255, 255, 255, 0.74);
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

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

.home-style-card {
  border: 1px solid rgba(216, 223, 235, 0.84);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
}

.home-report-rail-wrap {
  position: relative;
}

.home-report-rail-wrap::before,
.home-report-rail-wrap::after {
  content: "";
  position: absolute;
  inset-y: 0;
  width: 68px;
  z-index: 2;
  pointer-events: none;
}

.home-report-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f6f9fd 0%, rgba(246, 249, 253, 0) 100%);
}

.home-report-rail-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f6f9fd 0%, rgba(246, 249, 253, 0) 100%);
}

.home-report-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 12px 6px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-report-rail::-webkit-scrollbar {
  display: none;
}

.home-report-card {
  position: relative;
  flex: 0 0 360px;
  scroll-snap-align: start;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transform-style: preserve-3d;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.home-report-card:hover {
  transform: perspective(1600px) translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(167, 139, 250, 0.82);
  box-shadow: 0 30px 74px rgba(124, 58, 237, 0.2);
}

.home-report-card.is-lead {
  flex-basis: 430px;
}

.home-report-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.home-report-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.home-report-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.home-report-card.is-lead img {
  height: 360px;
}

.home-report-card:hover img {
  transform: scale(1.04);
}

.home-report-body {
  position: relative;
  padding: 22px 24px 24px;
}

.home-report-body::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -38px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.08);
  filter: blur(10px);
}

.home-report-caption {
  position: relative;
  z-index: 1;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-report-body h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.home-report-body p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.85;
}

.home-community-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  max-width: 1040px;
  margin: 0 auto 18px;
  padding: 18px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.home-community-alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.home-community-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 26px;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.home-community-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 54px);
}

.home-community-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.home-community-card {
  border: 1px solid rgba(216, 223, 235, 0.84);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
}

.home-community-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 28px;
}

.home-community-card h3 {
  font-size: 24px;
  line-height: 1.28;
}

.home-qr-card {
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.home-qr-frame {
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-qr-frame img {
  width: 100%;
  border-radius: 20px;
}

.home-footer {
  padding: 0 20px;
}

.home-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.home-footer-inner p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.home-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  background: rgba(255, 255, 255, 0.78);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .home-page .home-hero-grid,
  .home-page .home-proof-layout,
  .home-page .home-style-shell,
  .home-page .home-community-shell {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-grid {
    min-height: auto;
    gap: 32px;
    padding-top: 30px;
  }

  .home-page .home-hero-copy {
    max-width: 100%;
  }

  .home-page .home-visual-orbit {
    max-width: 420px;
  }
}

@media (max-width: 860px) {
  .home-page .topbar {
    padding: 22px 14px 0;
  }

  .home-page .home-hero,
  .home-page .home-section-wrap,
  .home-page .home-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-page .home-stage {
    min-height: auto;
    padding-bottom: 72px;
  }

  .home-page .home-proof-mini-grid,
  .home-page .home-battle-grid,
  .home-page .home-style-grid,
  .home-page .home-community-highlights,
  .home-page .home-network-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-return-banner,
  .home-page .home-style-shell,
  .home-page .home-community-shell,
  .home-page .home-community-alert,
  .home-page .home-proof-card,
  .home-page .home-battle-card,
  .home-page .home-volume-card,
  .home-page .home-report-card,
  .home-page .home-footer-inner {
    border-radius: 28px;
  }

  .home-page .home-style-shell,
  .home-page .home-community-shell {
    padding: 26px 22px;
  }

  .home-page .home-return-banner {
    padding: 42px 24px;
  }

  .home-page .home-report-card {
    flex-basis: 320px;
  }

  .home-page .home-report-card.is-lead {
    flex-basis: 360px;
  }
}

@media (max-width: 640px) {
  .home-page .topnav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .home-page .topnav a {
    width: auto;
    white-space: nowrap;
  }

  .home-page .logo-mark {
    width: min(260px, 70vw);
  }

  .home-page .home-hero-copy h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .home-page .home-hero-stats {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-actions,
  .home-page .home-community-actions,
  .home-page .home-footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .home-page .home-method-list li,
  .home-page .home-volume-list li {
    flex-direction: column;
  }

  .home-page .home-report-card,
  .home-page .home-report-card.is-lead {
    flex-basis: 86vw;
  }

  .home-page .home-report-card img,
  .home-page .home-report-card.is-lead img {
    height: 250px;
  }

  .home-page .home-section {
    padding-bottom: 82px;
  }
}

@keyframes homeNodePulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.home-page.brand-page {
  position: relative;
  max-width: none;
  padding: 0 0 72px;
  overflow-x: clip;
  background: linear-gradient(180deg, #f8fafc 0%, #fbfdff 48%, #f8fafc 100%);
}

.home-page .home-stage {
  position: relative;
  min-height: 100vh;
  padding-bottom: 72px;
  overflow: hidden;
}

.home-page .home-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.28) 0%, rgba(248, 250, 252, 0.92) 84%, rgba(248, 250, 252, 0.98) 100%);
  pointer-events: none;
}

.home-page .home-stage-grid {
  position: absolute;
  inset: 16% -12% auto;
  height: 62%;
  background:
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.12) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(180deg, rgba(148, 163, 184, 0.1) 0 1px, transparent 1px 82px);
  transform: perspective(1400px) rotateX(72deg);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 92%);
  opacity: 0.82;
  pointer-events: none;
}

.home-page .home-stage-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}

.home-page .home-stage-glow-left {
  left: 8%;
  top: 16%;
  width: 280px;
  height: 280px;
  background: rgba(14, 165, 233, 0.18);
}

.home-page .home-stage-glow-right {
  right: 8%;
  top: 22%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.16);
}

.home-page .home-stage-streams {
  position: absolute;
  inset: 12% 0 auto;
  height: 42%;
  pointer-events: none;
}

.home-page .home-stage-stream {
  position: absolute;
  left: -18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), transparent);
  animation: homeStream 16s linear infinite;
}

.home-page .home-stage-stream.stream-a {
  top: 14%;
  width: 250px;
  animation-delay: 0s;
}

.home-page .home-stage-stream.stream-b {
  top: 34%;
  width: 320px;
  animation-delay: 2.2s;
}

.home-page .home-stage-stream.stream-c {
  top: 58%;
  width: 280px;
  animation-delay: 4.4s;
}

.home-page .home-stage-stream.stream-d {
  top: 76%;
  width: 360px;
  animation-delay: 6.6s;
}

.home-page .home-masthead {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-page .home-masthead-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 229, 245, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(47, 74, 122, 0.1);
  color: #334155;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.home-page .home-masthead-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08);
}

.home-page .home-masthead-logo {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  min-width: 240px;
}

.home-page .home-masthead-logo img {
  width: min(420px, 48vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(15, 23, 42, 0.08));
}

.home-page .home-hero {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 20px 0;
}

.home-page .home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 156px);
}

.home-page .home-hero-copy {
  max-width: 780px;
  justify-self: center;
  text-align: center;
}

.home-page .home-hero-copy h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.home-page .home-hero-accent {
  color: #6b46c1;
}

.home-page .home-hero-summary {
  max-width: 760px;
  margin: 26px auto 0;
  color: #475569;
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.82;
}

.home-page .home-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.home-page .home-hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 223, 235, 0.82);
  background: rgba(255, 255, 255, 0.76);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
}

.home-page .home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.home-page .home-hero-stat {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.82);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
  text-align: left;
}

.home-page .home-hero-stat span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-page .home-hero-stat strong {
  display: block;
  margin-top: 12px;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-page .home-risk {
  max-width: 780px;
  margin: 24px auto 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.78;
}

.home-page .home-hero-visual {
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.home-page .home-hero-panel {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.home-page .home-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 36%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 32%);
  pointer-events: none;
}

.home-page .home-hero-panel-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.72;
  pointer-events: none;
}

.home-page .home-hero-panel-glow.glow-a {
  top: 22px;
  right: 20px;
  width: 110px;
  height: 110px;
  background: rgba(14, 165, 233, 0.16);
}

.home-page .home-hero-panel-glow.glow-b {
  left: 18px;
  bottom: 74px;
  width: 120px;
  height: 120px;
  background: rgba(16, 185, 129, 0.14);
}

.home-page .home-neural-field {
  position: relative;
  min-height: 340px;
  border-radius: 30px;
  border: 1px solid rgba(216, 223, 235, 0.82);
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 54%, #ffffff 100%);
  overflow: hidden;
}

.home-page .home-neural-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.1) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(180deg, rgba(148, 163, 184, 0.1) 0 1px, transparent 1px 56px);
  opacity: 0.34;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.96), transparent 86%);
}

.home-page .home-neural-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.15), transparent 34%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.13), transparent 28%);
}

.home-page .home-neural-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  min-width: 196px;
  padding: 18px 20px;
  border-radius: 28px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.home-page .home-neural-core span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-page .home-neural-core strong {
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.home-page .home-neural-link {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.92), rgba(16, 185, 129, 0.56), rgba(16, 185, 129, 0));
  transform-origin: left center;
  opacity: 0.72;
}

.home-page .home-neural-link.link-a {
  left: 20%;
  top: 28%;
  width: 170px;
  transform: rotate(18deg);
}

.home-page .home-neural-link.link-b {
  left: 46%;
  top: 30%;
  width: 150px;
  transform: rotate(146deg);
}

.home-page .home-neural-link.link-c {
  left: 28%;
  top: 54%;
  width: 130px;
  transform: rotate(-24deg);
}

.home-page .home-neural-link.link-d {
  left: 46%;
  top: 54%;
  width: 156px;
  transform: rotate(24deg);
}

.home-page .home-neural-link.link-e {
  left: 40%;
  top: 38%;
  width: 120px;
  transform: rotate(84deg);
}

.home-page .home-neural-link.link-f {
  left: 22%;
  top: 66%;
  width: 118px;
  transform: rotate(-52deg);
}

.home-page .home-neural-link.link-g {
  left: 56%;
  top: 66%;
  width: 118px;
  transform: rotate(52deg);
}

.home-page .home-neural-dot {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #38bdf8 0%, #34d399 100%);
  box-shadow: 0 0 0 10px rgba(14, 165, 233, 0.08);
  animation:
    homeNodePulse 3.8s ease-in-out infinite,
    homeFloat 6s ease-in-out infinite;
}

.home-page .home-neural-dot.dot-a {
  left: 18%;
  top: 24%;
}

.home-page .home-neural-dot.dot-b {
  left: 36%;
  top: 32%;
  animation-delay: 0.6s;
}

.home-page .home-neural-dot.dot-c {
  left: 64%;
  top: 24%;
  animation-delay: 1.2s;
}

.home-page .home-neural-dot.dot-d {
  left: 74%;
  top: 44%;
  animation-delay: 1.8s;
}

.home-page .home-neural-dot.dot-e {
  left: 22%;
  top: 66%;
  animation-delay: 2.4s;
}

.home-page .home-neural-dot.dot-f {
  left: 42%;
  top: 72%;
  animation-delay: 3s;
}

.home-page .home-neural-dot.dot-g {
  left: 66%;
  top: 66%;
  animation-delay: 3.6s;
}

.home-page .home-neural-dot.dot-h {
  left: 52%;
  top: 14%;
  animation-delay: 4.2s;
}

.home-page .home-network-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.home-page .home-network-card {
  padding: 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(47, 74, 122, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.home-page .home-network-card span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-page .home-network-card strong {
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.home-page .home-main {
  position: relative;
  z-index: 4;
}

.home-page .home-gallery-section,
.home-page .home-reports-section,
.home-page .home-community-section {
  padding: 0 0 118px;
}

.home-page .home-gallery-wrap,
.home-page .home-reports-wrap,
.home-page .home-community-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-page .home-gallery-intro,
.home-page .home-reports-intro {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.home-page .home-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(254, 202, 202, 0.9);
  background: rgba(254, 242, 242, 0.92);
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 20px 44px rgba(239, 68, 68, 0.08);
}

.home-page .home-gallery-intro h2,
.home-page .home-reports-intro h2 {
  margin: 24px 0 0;
  color: #0f172a;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-page .home-reports-intro h2 span {
  color: #7c3aed;
}

.home-page .home-gallery-intro p,
.home-page .home-reports-intro p {
  margin: 18px auto 0;
  max-width: 820px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.82;
}

.home-page .home-section-kicker {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.home-page .home-section-kicker.is-violet {
  color: #7c3aed;
}

.home-page .home-section-kicker.is-sky {
  color: #0284c7;
}

.home-page .home-section-kicker.is-muted {
  color: #64748b;
}

.home-page .home-inline-accent {
  color: #0f172a;
  font-weight: 700;
}

.home-page .home-inline-accent.is-green {
  color: #059669;
}

.home-page .home-inline-accent.is-violet {
  color: #7c3aed;
}

.home-page .home-return-banner {
  margin-bottom: 24px;
  padding: 52px 40px;
  border-radius: 36px;
  border: 1px solid rgba(254, 202, 202, 0.78);
  background:
    radial-gradient(circle at top center, rgba(254, 202, 202, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(254, 242, 242, 0.96) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(248, 250, 252, 0.95) 100%);
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.08);
  text-align: center;
}

.home-page .home-return-label {
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.home-page .home-return-value {
  margin-top: 18px;
  color: #dc2626;
  font-size: clamp(70px, 12vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.home-page .home-return-title {
  margin-top: 12px;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-page .home-return-note {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
}

.home-page .home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-page .home-proof-card,
.home-page .home-battle-card,
.home-page .home-volume-card,
.home-page .home-burn-card,
.home-page .home-community-note,
.home-page .home-community-shell,
.home-page .home-report-card,
.home-page .home-qr-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.home-page .home-proof-card,
.home-page .home-battle-card,
.home-page .home-volume-card,
.home-page .home-burn-card {
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.8);
}

.home-page .home-card-kicker {
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
}

.home-page .home-card-kicker.is-blue {
  color: #0284c7;
}

.home-page .home-card-kicker.is-green {
  color: #059669;
}

.home-page .home-card-kicker.is-danger {
  color: #dc2626;
}

.home-page .home-card-kicker.is-gold {
  color: #a16207;
}

.home-page .home-proof-value {
  margin-top: 16px;
  font-size: clamp(46px, 6vw, 62px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.home-page .home-proof-value.is-blue {
  color: #0284c7;
}

.home-page .home-proof-value.is-green {
  color: #059669;
}

.home-page .home-proof-subtitle {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

.home-page .home-proof-card p,
.home-page .home-volume-card p,
.home-page .home-community-note p,
.home-page .home-community-copy p,
.home-page .home-qr-card p {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.85;
}

.home-page .home-battle-card {
  background:
    radial-gradient(circle at top right, rgba(254, 202, 202, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(254, 242, 242, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.home-page .home-battle-card h3,
.home-page .home-volume-card h3,
.home-page .home-community-card h3,
.home-page .home-community-copy h2,
.home-page .home-qr-card h3 {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.home-page .home-battle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.home-page .home-battle-item {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.86);
  background: rgba(255, 255, 255, 0.82);
}

.home-page .home-battle-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .home-battle-item strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.home-page .home-battle-item p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
}

.home-page .home-battle-item.is-green strong {
  color: #059669;
}

.home-page .home-battle-item.is-red strong {
  color: #dc2626;
}

.home-page .home-battle-item.is-blue strong {
  color: #0284c7;
}

.home-page .home-battle-item.is-gold strong {
  color: #a16207;
}

.home-page .home-card-footnote {
  margin-top: 18px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.7;
}

.home-page .home-volume-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.home-page .home-volume-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(216, 223, 235, 0.88);
  background: rgba(255, 255, 255, 0.82);
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.home-page .home-volume-list li strong {
  color: #0f172a;
  font-size: 15px;
}

.home-page .home-burn-card {
  grid-column: 1 / -1;
  padding: 34px 38px;
  text-align: center;
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(240, 253, 244, 0.94) 100%);
}

.home-page .home-burn-title {
  color: #8b5cf6;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-page .home-burn-value {
  margin-top: 10px;
  color: #8b5cf6;
  font-size: clamp(50px, 6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.home-page .home-burn-track-wrap {
  max-width: 940px;
  margin: 30px auto 0;
}

.home-page .home-burn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #64748b;
}

.home-page .home-burn-track {
  position: relative;
  margin-top: 14px;
  height: 28px;
  overflow: visible;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.home-page .home-burn-track::after {
  content: "";
  position: absolute;
  left: 50.26%;
  top: 50%;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.96);
  transform: translate(-50%, -50%);
}

.home-page .home-burn-loss {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50.26%;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, #6b21a8 0%, #8b5cf6 100%);
}

.home-page .home-burn-remaining {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 49.74%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.home-page .home-burn-marker {
  position: absolute;
  left: 50.26%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.home-page .home-burn-marker span {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
}

.home-page .home-burn-marker b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 18px;
}

.home-page .home-burn-formula {
  margin: 32px auto 0;
  max-width: 780px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.8;
}

.home-page .home-burn-formula span {
  color: #8b5cf6;
  font-weight: 700;
}

.home-page .home-burn-footnote {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 12px;
}

.home-page .home-report-rail-wrap {
  position: relative;
}

.home-page .home-report-rail-wrap::before,
.home-page .home-report-rail-wrap::after {
  content: "";
  position: absolute;
  inset-y: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.home-page .home-report-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.home-page .home-report-rail-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.home-page .home-report-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 4px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-page .home-report-rail::-webkit-scrollbar {
  display: none;
}

.home-page .home-report-card {
  position: relative;
  flex: 0 0 390px;
  scroll-snap-align: start;
  padding: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.home-page .home-report-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(167, 139, 250, 0.14), transparent 24%);
  pointer-events: none;
}

.home-page .home-report-card:hover {
  transform: perspective(1600px) rotateX(4deg) rotateY(-6deg) translateY(-8px) scale(1.01);
  border-color: rgba(167, 139, 250, 0.46);
  box-shadow: 0 28px 72px rgba(139, 92, 246, 0.22);
}

.home-page .home-report-card.is-lead {
  flex-basis: 430px;
}

.home-page .home-report-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.home-page .home-report-badge,
.home-page .home-report-open {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.home-page .home-report-badge {
  border: 1px solid rgba(186, 230, 253, 0.88);
  background: rgba(255, 255, 255, 0.9);
  color: #0284c7;
}

.home-page .home-report-open {
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.92);
  color: #64748b;
}

.home-page .home-report-card figure {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  background: #f8fafc;
}

.home-page .home-report-card img {
  display: block;
  width: 100%;
  height: 344px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.home-page .home-report-card.is-lead img {
  height: 380px;
}

.home-page .home-report-card:hover img {
  transform: scale(1.04);
}

.home-page .home-report-body {
  position: relative;
  z-index: 2;
  padding: 20px 6px 8px;
}

.home-page .home-report-caption {
  color: #7c3aed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-page .home-report-body h3 {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.home-page .home-report-body p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.85;
}

.home-page .home-report-note {
  margin-top: 4px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.home-page .home-community-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  max-width: 1040px;
  margin: 0 auto 20px;
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.home-page .home-community-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.home-page .home-community-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  padding: 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.94) 100%);
}

.home-page .home-community-copy h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-page .home-community-copy p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.82;
}

.home-page .home-community-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.home-page .home-community-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
}

.home-page .home-community-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 28px;
}

.home-page .home-community-card h3 {
  font-size: 24px;
  line-height: 1.28;
}

.home-page .home-qr-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.home-page .home-qr-frame {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(216, 223, 235, 0.84);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.home-page .home-qr-frame img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.home-page .home-footer {
  padding: 0 20px;
}

.home-page .home-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(203, 213, 225, 0.78);
  text-align: center;
}

.home-page .home-footer-inner p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
}

.home-page .home-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.home-page .home-footer-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-page .home-footer-links a:hover {
  color: #0f172a;
}

@media (max-width: 1120px) {
  .home-page .home-hero-grid,
  .home-page .home-community-shell {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-grid {
    min-height: auto;
    gap: 36px;
    padding-top: 36px;
  }
}

@media (max-width: 860px) {
  .home-page .home-masthead,
  .home-page .home-hero,
  .home-page .home-gallery-wrap,
  .home-page .home-reports-wrap,
  .home-page .home-community-wrap,
  .home-page .home-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-page .home-stage {
    min-height: auto;
    padding-bottom: 72px;
  }

  .home-page .home-gallery-grid,
  .home-page .home-community-highlights {
    grid-template-columns: 1fr;
  }

  .home-page .home-report-card {
    flex-basis: 340px;
  }

  .home-page .home-report-card.is-lead {
    flex-basis: 380px;
  }

  .home-page .home-proof-card,
  .home-page .home-battle-card,
  .home-page .home-volume-card,
  .home-page .home-burn-card,
  .home-page .home-community-note,
  .home-page .home-community-shell,
  .home-page .home-report-card,
  .home-page .home-qr-card {
    border-radius: 28px;
  }

  .home-page .home-burn-card,
  .home-page .home-community-shell {
    padding: 28px 22px;
  }

  .home-page .home-return-banner {
    padding: 44px 24px;
    border-radius: 30px;
  }
}

@media (max-width: 640px) {
  .home-page .home-masthead {
    flex-direction: column;
    justify-content: center;
    padding-top: 24px;
    gap: 16px;
  }

  .home-page .home-masthead-logo {
    justify-content: center;
    min-width: 0;
  }

  .home-page .home-masthead-logo img {
    width: min(280px, 78vw);
  }

  .home-page .home-hero-copy h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .home-page .home-hero-summary,
  .home-page .home-gallery-intro p,
  .home-page .home-reports-intro p,
  .home-page .home-community-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .home-page .home-hero-chips {
    display: grid;
  }

  .home-page .home-hero-stats,
  .home-page .home-network-grid,
  .home-page .home-battle-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-volume-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .home-burn-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .home-report-card,
  .home-page .home-report-card.is-lead {
    flex-basis: 86vw;
  }

  .home-page .home-report-card img,
  .home-page .home-report-card.is-lead img {
    height: 250px;
  }

  .home-page .home-community-note {
    grid-template-columns: 1fr;
  }

  .home-page .home-gallery-section,
  .home-page .home-reports-section,
  .home-page .home-community-section {
    padding-bottom: 90px;
  }
}

@keyframes hpStreamMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  100% {
    transform: translateX(130vw);
    opacity: 0;
  }
}

@keyframes hpBeamPulse {
  0%,
  100% {
    opacity: 0.08;
    transform: translateY(0);
  }

  50% {
    opacity: 0.24;
    transform: translateY(16px);
  }
}

@keyframes hpHaloPulse {
  0%,
  100% {
    opacity: 0.26;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.42;
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes hpRingPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.38;
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes hpNodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes hpBurnFlameJitter {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-6deg) scale(0.96);
  }

  50% {
    transform: translate(-50%, -50%) rotate(4deg) scale(1.06);
  }
}

@keyframes hpBurnFlameGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.home-page.brand-page {
  --hp-background: #f8fafc;
  --hp-background-elevated: rgba(255, 255, 255, 0.9);
  --hp-background-strong: #ffffff;
  --hp-foreground: #0f172a;
  --hp-foreground-strong: #020617;
  --hp-muted: #64748b;
  --hp-muted-strong: #334155;
  --hp-primary: #0ea5e9;
  --hp-secondary: #10b981;
  --hp-brand-blue: #59aaf7;
  --hp-brand-violet: #6d5df6;
  --hp-brand-violet-strong: #5e4be8;
  --hp-brand-tube-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 246, 255, 0.78));
  --hp-brand-tube-border: rgba(109, 93, 246, 0.22);
  --hp-brand-tube-shadow: 0 16px 34px rgba(53, 88, 216, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  --hp-brand-cta-bg: linear-gradient(135deg, var(--hp-brand-blue), var(--hp-brand-violet));
  --hp-brand-cta-border: rgba(109, 93, 246, 0.3);
  --hp-brand-cta-shadow:
    0 20px 44px rgba(53, 88, 216, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(67, 58, 170, 0.24);
  --hp-brand-cta-shadow-hover:
    0 24px 52px rgba(53, 88, 216, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(67, 58, 170, 0.28);
  --hp-border: rgba(14, 165, 233, 0.12);
  --hp-border-strong: rgba(148, 163, 184, 0.18);
  --hp-card-bg: rgba(255, 255, 255, 0.82);
  --hp-card-bg-soft: rgba(255, 255, 255, 0.66);
  --hp-glow-soft: 0 20px 45px rgba(15, 23, 42, 0.06), 0 10px 24px rgba(14, 165, 233, 0.08);
  --hp-glow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  --hp-grid-color: rgba(148, 163, 184, 0.14);
  --hp-font-display: "Satoshi Variable", "Satoshi", "Inter", "Segoe UI", system-ui, sans-serif;
  --hp-font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  position: relative;
  isolation: isolate;
  max-width: none;
  min-height: 100vh;
  padding: 0;
  color: var(--hp-foreground);
  font-family: var(--hp-font-body);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.09), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #f4f8fb 100%);
  overflow-x: hidden;
}

.home-page.brand-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--hp-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hp-grid-color) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
  opacity: 0.38;
}

.home-page.brand-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(14, 165, 233, 0.08), transparent 20%),
    radial-gradient(circle at 50% 18%, rgba(16, 185, 129, 0.05), transparent 34%);
  filter: blur(18px);
  opacity: 0.7;
}

.home-page .hp-main,
.home-page .hp-report-modal {
  position: relative;
  z-index: 1;
}

.home-page .hp-main a {
  color: inherit;
  text-decoration: none;
}

.home-page .hp-glass-panel {
  background: linear-gradient(180deg, var(--hp-card-bg) 0%, rgba(255, 255, 255, 0.66) 100%);
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-glow-soft), var(--hp-glow-inner);
  backdrop-filter: blur(24px);
}

.home-page .hp-display-title,
.home-page .hp-display-title-sm,
.home-page .hp-section-title {
  font-family: var(--hp-font-display);
}

.home-page .hp-main img {
  max-width: 100%;
  display: block;
}

.home-page .hp-desktop-break {
  display: none;
}

.home-page .hp-hero-section {
  position: relative;
  overflow: hidden;
  padding: 32px 16px 96px;
}

.home-page .hp-hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-page .hp-hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.28) 0%, rgba(248, 250, 252, 0.88) 100%);
}

.home-page .hp-hero-grid-plane {
  position: absolute;
  inset: -8% -10% auto;
  height: 72%;
  background-image:
    linear-gradient(var(--hp-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hp-grid-color) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: perspective(1200px) rotateX(72deg);
  opacity: 0.65;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 92%);
}

.home-page .hp-hero-radial,
.home-page .hp-hero-pointer-glow,
.home-page .hp-hero-ring,
.home-page .hp-hero-halo {
  position: absolute;
  pointer-events: none;
}

.home-page .hp-hero-radial {
  inset: 0;
}

.home-page .hp-hero-radial-left {
  background: radial-gradient(circle at 18% 16%, rgba(14, 165, 233, 0.12), transparent 20%);
}

.home-page .hp-hero-radial-right {
  background: radial-gradient(circle at 82% 22%, rgba(16, 185, 129, 0.1), transparent 18%);
}

.home-page .hp-hero-pointer-glow {
  inset: 0;
  background: radial-gradient(circle at 48% 22%, rgba(14, 165, 233, 0.12), transparent 24%);
}

.home-page .hp-stream,
.home-page .hp-beam {
  position: absolute;
  pointer-events: none;
}

.home-page .hp-stream {
  left: -18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.45), transparent);
  animation: hpStreamMove linear infinite;
}

.home-page .hp-stream-1 {
  top: 16%;
  width: 220px;
  animation-duration: 14s;
}

.home-page .hp-stream-2 {
  top: 24%;
  width: 278px;
  animation-duration: 16s;
  animation-delay: 0.75s;
}

.home-page .hp-stream-3 {
  top: 32%;
  width: 336px;
  animation-duration: 18s;
  animation-delay: 1.5s;
}

.home-page .hp-stream-4 {
  top: 40%;
  width: 394px;
  animation-duration: 14s;
  animation-delay: 2.25s;
}

.home-page .hp-stream-5 {
  top: 48%;
  width: 220px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.home-page .hp-stream-6 {
  top: 56%;
  width: 278px;
  animation-duration: 18s;
  animation-delay: 3.75s;
}

.home-page .hp-stream-7 {
  top: 64%;
  width: 336px;
  animation-duration: 14s;
  animation-delay: 4.5s;
}

.home-page .hp-stream-8 {
  top: 72%;
  width: 394px;
  animation-duration: 16s;
  animation-delay: 5.25s;
}

.home-page .hp-beam {
  top: 14%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.25), rgba(56, 189, 248, 0));
  animation: hpBeamPulse ease-in-out infinite;
}

.home-page .hp-beam-1 {
  left: 14%;
  height: 140px;
  animation-duration: 8s;
}

.home-page .hp-beam-2 {
  left: 27%;
  height: 164px;
  animation-duration: 10s;
  animation-delay: 0.55s;
}

.home-page .hp-beam-3 {
  left: 40%;
  height: 188px;
  animation-duration: 12s;
  animation-delay: 1.1s;
}

.home-page .hp-beam-4 {
  left: 53%;
  height: 212px;
  animation-duration: 8s;
  animation-delay: 1.65s;
}

.home-page .hp-beam-5 {
  left: 66%;
  height: 236px;
  animation-duration: 10s;
  animation-delay: 2.2s;
}

.home-page .hp-beam-6 {
  left: 79%;
  height: 260px;
  animation-duration: 12s;
  animation-delay: 2.75s;
}

.home-page .hp-hero-ring {
  left: 50%;
  top: 34%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(186, 230, 253, 0.6);
  transform: translateX(-50%);
  animation: hpRingPulse 8s ease-in-out infinite;
}

.home-page .hp-hero-halo {
  left: 50%;
  top: 34%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 68%);
  filter: blur(48px);
  animation: hpHaloPulse 7s ease-in-out infinite;
}

.home-page .hp-hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 128px);
}

.home-page .hp-hero-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0 26px;
}

.home-page .hp-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
  max-width: 540px;
}

.home-page .hp-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.home-page .hp-brand-mark::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hp-brand-blue), var(--hp-brand-violet));
  box-shadow: 0 10px 22px rgba(53, 88, 216, 0.16);
}

.home-page .hp-logo-copy {
  display: grid;
  gap: 2px;
}

.home-page .hp-logo-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: clamp(1.82rem, 4.8vw, 2.08rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.home-page .hp-logo-vk {
  color: var(--hp-brand-blue);
}

.home-page .hp-logo-quant,
.home-page .hp-logo-ai {
  color: var(--hp-brand-violet);
}

.home-page .hp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-left: 22px;
  padding: 7px 15px;
  border-radius: 999px;
  color: rgba(67, 58, 170, 0.88);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--hp-brand-tube-bg);
  border-color: var(--hp-brand-tube-border);
  box-shadow: var(--hp-brand-tube-shadow);
}

.home-page .hp-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-brand-blue), var(--hp-brand-violet));
  box-shadow: 0 0 10px rgba(109, 93, 246, 0.22);
}

.home-page .hp-build-version {
  margin: 1px 0 0 22px;
  color: rgba(71, 85, 105, 0.78);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.home-page .hp-system-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(109, 93, 246, 0.24);
  background: var(--hp-brand-cta-bg);
  box-shadow:
    0 18px 38px rgba(53, 88, 216, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(67, 58, 170, 0.22);
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.home-page .hp-system-cta span {
  position: relative;
  z-index: 1;
}

.home-page .hp-system-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04));
  opacity: 0.66;
  pointer-events: none;
}

.home-page .hp-system-cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -34%;
  width: 40%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  opacity: 0.62;
  pointer-events: none;
}

.home-page .hp-system-cta:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 22px 44px rgba(53, 88, 216, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(67, 58, 170, 0.24);
  filter: saturate(1.01);
}

.home-page .hp-hero-layout {
  display: grid;
  flex: 1;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
}

.home-page .hp-hero-copy {
  order: 1;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.home-page .hp-display-title {
  margin: 16px 0 0;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #020617;
}

.home-page .hp-display-title-sm {
  margin: 24px 0 0;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #020617;
}

.home-page .hp-title-accent {
  color: var(--hp-brand-violet-strong);
}

.home-page .hp-hero-summary,
.home-page .hp-section-subtitle,
.home-page .hp-community-text {
  margin: 24px auto 0;
  max-width: 720px;
  color: var(--hp-muted);
  font-size: 1rem;
  line-height: 2;
}

.home-page .hp-chip-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-page .hp-data-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(16px);
}

.home-page .hp-hero-stats {
  display: grid;
  max-width: 672px;
  margin: 48px auto 0;
  gap: 16px;
}

.home-page .hp-stat-card {
  padding: 16px;
  border-radius: 24px;
}

.home-page .hp-stat-label {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-page .hp-stat-value {
  margin: 12px 0 0;
  color: #020617;
  font-size: 1.5rem;
  font-weight: 600;
}

.home-page .hp-stat-value,
.home-page .hp-return-value,
.home-page .hp-card-value {
  font-variant-numeric: lining-nums tabular-nums;
}

.home-page .hp-hero-visual {
  order: 2;
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.home-page .hp-visual-panel {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 36px;
  box-shadow:
    0 28px 72px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.home-page .hp-visual-panel::before,
.home-page .hp-visual-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-page .hp-visual-panel::before {
  inset: 10% 12% auto auto;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.22) 0%, rgba(125, 211, 252, 0) 72%);
  filter: blur(16px);
  opacity: 0.84;
}

.home-page .hp-visual-panel::after {
  inset: auto auto 12% 10%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.14) 0%, rgba(74, 222, 128, 0) 72%);
  filter: blur(18px);
  opacity: 0.72;
}

.home-page .hp-visual-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-page .hp-visual-gradient-top {
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 36%);
}

.home-page .hp-visual-gradient-bottom {
  background: radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 28%);
}

.home-page .hp-neural-particles {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.home-page .hp-neural-orb {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(186, 230, 253, 0.7);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.76), rgba(240, 249, 255, 0.92) 52%, rgba(248, 250, 252, 1) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.54),
    0 24px 64px rgba(14, 165, 233, 0.12);
}

.home-page .hp-neural-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 48%, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 62%);
}

.home-page .hp-neural-orb-ring {
  position: absolute;
  border-radius: 50%;
}

.home-page .hp-neural-ring-1 {
  inset: 10%;
  border: 1px solid rgba(186, 230, 253, 0.7);
}

.home-page .hp-neural-ring-2 {
  inset: 18%;
  border: 1px solid rgba(209, 250, 229, 0.8);
}

.home-page .hp-neural-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.home-page .hp-network-grid {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-page .hp-network-card {
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.home-page .hp-network-label {
  margin: 0;
  color: #64748b;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-page .hp-network-value {
  margin: 12px 0 0;
  color: #020617;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-page .hp-gallery-section {
  padding: 72px 16px 96px;
}

.home-page .hp-reports-section {
  padding: 96px 16px;
}

.home-page .hp-community-section {
  padding: 0 16px 96px;
}

.home-page .hp-container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-page .hp-section-heading,
.home-page .hp-reports-heading {
  max-width: 896px;
  margin: 0 auto 48px;
  text-align: center;
}

.home-page .hp-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(254, 202, 202, 1);
  background: rgba(254, 242, 242, 1);
  padding: 8px 20px;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
}

.home-page .hp-return-banner {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(254, 226, 226, 1);
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.96), rgba(255, 255, 255, 0.98));
  padding: 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.08);
}

.home-page .hp-return-kicker {
  margin: 0;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.home-page .hp-return-value {
  margin-top: 16px;
  color: #dc2626;
  font-size: clamp(3.75rem, 10vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.home-page .hp-return-title {
  margin: 12px 0 0;
  color: #1e293b;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
}

.home-page .hp-return-date {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.875rem;
}

.home-page .hp-gallery-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.home-page .hp-gallery-card,
.home-page .hp-battle-card,
.home-page .hp-burn-card {
  border-radius: 32px;
  padding: 32px;
}

.home-page .hp-card-kicker {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.home-page .hp-text-sky {
  color: #0284c7;
}

.home-page .hp-text-emerald {
  color: #059669;
}

.home-page .hp-text-red {
  color: #dc2626;
}

.home-page .hp-text-amber {
  color: #d97706;
}

.home-page .hp-card-value {
  margin-top: 16px;
  color: #020617;
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.home-page .hp-card-label {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.875rem;
}

.home-page .hp-card-copy {
  margin: 24px 0 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 2;
}

.home-page .hp-battle-card {
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.94), rgba(255, 255, 255, 0.98));
  border-color: rgba(254, 202, 202, 0.8);
}

.home-page .hp-battle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.home-page .hp-battle-panel {
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 16px;
}

.home-page .hp-battle-green {
  border-color: rgba(167, 243, 208, 0.95);
  background: rgba(236, 253, 245, 0.7);
}

.home-page .hp-battle-red {
  border-color: rgba(254, 202, 202, 0.95);
  background: rgba(254, 242, 242, 0.7);
}

.home-page .hp-battle-sky {
  border-color: rgba(186, 230, 253, 0.95);
  background: rgba(240, 249, 255, 0.7);
}

.home-page .hp-battle-amber {
  border-color: rgba(253, 230, 138, 0.95);
  background: rgba(255, 251, 235, 0.7);
}

.home-page .hp-battle-label {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-page .hp-battle-value {
  margin: 12px 0 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.home-page .hp-battle-green .hp-battle-value {
  color: #059669;
}

.home-page .hp-battle-red .hp-battle-value {
  color: #dc2626;
}

.home-page .hp-battle-sky .hp-battle-value {
  color: #0284c7;
}

.home-page .hp-battle-amber .hp-battle-value {
  color: #d97706;
}

.home-page .hp-battle-note,
.home-page .hp-footnote,
.home-page .hp-burn-note {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.75;
}

.home-page .hp-footnote {
  margin-top: 24px;
}

.home-page .hp-volume-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.home-page .hp-volume-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 16px;
}

.home-page .hp-volume-item span {
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
}

.home-page .hp-volume-item strong {
  color: #020617;
  font-size: 0.875rem;
  font-weight: 600;
}

.home-page .hp-burn-card {
  grid-column: 1 / -1;
  padding: 32px 40px 40px;
}

.home-page .hp-burn-head {
  text-align: center;
}

.home-page .hp-burn-title {
  margin: 0;
  color: #8b5cf6;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.home-page .hp-burn-value {
  margin: 12px 0 0;
  color: #8b5cf6;
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.home-page .hp-burn-track-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 0;
}

.home-page .hp-burn-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 500;
}

.home-page .hp-burn-track {
  position: relative;
  height: 28px;
  overflow: visible;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
}

.home-page .hp-burn-loss {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50.26%;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, #6b21a8 0%, #8b5cf6 100%);
}

.home-page .hp-burn-remaining {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 49.74%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.home-page .hp-burn-divider {
  position: absolute;
  left: 50.26%;
  top: 50%;
  z-index: 1;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
}

.home-page .hp-burn-flame {
  position: absolute;
  left: 50.26%;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.32));
  animation: hpBurnFlameJitter 1.1s ease-in-out infinite;
}

.home-page .hp-burn-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.65) 0%, rgba(239, 68, 68, 0.28) 52%, transparent 74%);
  filter: blur(8px);
  animation: hpBurnFlameGlow 1.4s ease-in-out infinite;
}

.home-page .hp-burn-flame-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.home-page .hp-burn-tooltip {
  position: absolute;
  left: 50.26%;
  top: -46px;
  z-index: 2;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 999px;
  background: #020617;
  padding: 6px 12px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

.home-page .hp-burn-formula {
  margin: 32px auto 0;
  max-width: 768px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.7;
}

.home-page .hp-burn-formula span {
  color: #8b5cf6;
  font-weight: 500;
}

.home-page .hp-reports-kicker {
  margin: 0;
  color: #7c3aed;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.home-page .hp-reports-heading {
  max-width: 960px;
  margin-bottom: 52px;
}

.home-page .hp-reports-title {
  margin: 24px auto 0;
  max-width: 960px;
  color: #020617;
  font-size: clamp(2.5rem, 5.2vw, 3.7rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.home-page .hp-reports-title span,
.home-page .hp-reports-accent {
  color: #7c3aed;
}

.home-page .hp-section-subtitle.hp-reports-subtitle {
  margin-top: 26px;
  max-width: 820px;
  font-size: 1.08rem;
  line-height: 1.95;
}

.home-page .hp-report-gallery {
  position: relative;
  margin-top: 48px;
}

.home-page .hp-gallery-fade {
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 32px;
  pointer-events: none;
}

.home-page .hp-gallery-fade-left {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.home-page .hp-gallery-fade-right {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.home-page .hp-report-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 8px 32px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.home-page .hp-report-rail::-webkit-scrollbar {
  display: none;
}

.home-page .hp-report-perspective {
  flex: 0 0 auto;
  scroll-snap-align: start;
  perspective: 1800px;
}

.home-page .hp-report-card {
  --hp-glare-x: 50%;
  --hp-glare-y: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 340px;
  min-width: 340px;
  height: 500px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out,
    border-color 0.3s ease-out,
    background-color 0.3s ease-out;
}

.home-page .hp-report-card:hover {
  border-color: rgba(167, 139, 250, 0.9);
  background: rgba(250, 245, 255, 0.55);
  box-shadow: 0 28px 72px rgba(139, 92, 246, 0.24);
  transform: perspective(1600px) rotateX(6deg) rotateY(-6deg) translateY(-10px) scale(1.015);
}

.home-page .hp-report-card:hover .hp-report-glare {
  opacity: 1;
}

.home-page .hp-report-card:hover .hp-report-media img {
  transform: scale(1.035);
}

.home-page .hp-report-glare {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.72), transparent 34%);
  transition: opacity 0.3s ease;
}

.home-page .hp-report-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.8), transparent);
}

.home-page .hp-report-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 0;
}

.home-page .hp-report-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.home-page .hp-report-chip svg {
  width: 14px;
  height: 14px;
}

.home-page .hp-report-chip-primary {
  border: 1px solid rgba(186, 230, 253, 1);
  background: rgba(255, 255, 255, 0.85);
  color: #0369a1;
}

.home-page .hp-report-chip-muted {
  border: 1px solid rgba(226, 232, 240, 1);
  background: rgba(255, 255, 255, 0.85);
  color: #64748b;
}

.home-page .hp-report-media {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 16px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #f8fafc;
}

.home-page .hp-report-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.home-page .hp-report-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.home-page .hp-report-body {
  position: relative;
  z-index: 1;
  padding: 0 16px 16px;
}

.home-page .hp-report-caption {
  margin: 0;
  color: rgba(3, 105, 161, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.home-page .hp-report-body h3 {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.home-page .hp-report-body p:last-child {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.75;
}

.home-page .hp-report-tip {
  margin: 16px 0 0;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.home-page .hp-community-container {
  max-width: 1024px;
  margin: 0 auto;
}

.home-page .hp-statement-card {
  margin-bottom: 24px;
  border-radius: 28px;
  padding: 16px 20px;
}

.home-page .hp-statement-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-page .hp-statement-icon {
  display: inline-flex;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
  color: #334155;
}

.home-page .hp-statement-icon svg {
  width: 20px;
  height: 20px;
}

.home-page .hp-statement-kicker {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-page .hp-statement-text {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 2;
}

.home-page .hp-statement-text span {
  color: #0f172a;
  font-weight: 600;
}

.home-page .hp-community-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 32px;
}

.home-page .hp-community-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(var(--hp-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hp-grid-color) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, black, transparent 82%);
}

.home-page .hp-community-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 34%);
}

.home-page .hp-community-layout {
  position: relative;
  display: grid;
  gap: 40px;
}

.home-page .hp-community-kicker {
  margin: 0;
  color: #0284c7;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.home-page .hp-community-highlights {
  display: grid;
  gap: 16px;
}

.home-page .hp-community-highlight {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.home-page .hp-highlight-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
}

.home-page .hp-highlight-emerald {
  background: rgba(220, 252, 231, 1);
}

.home-page .hp-highlight-sky {
  background: rgba(224, 242, 254, 1);
}

.home-page .hp-highlight-amber {
  background: rgba(254, 243, 199, 1);
}

.home-page .hp-community-highlight h3 {
  margin: 24px 0 0;
  color: #020617;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
}

.home-page .hp-community-qr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .hp-qr-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 24px;
  border-radius: 32px;
}

.home-page .hp-qr-overlay {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 22%);
}

.home-page .hp-qr-frame {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
}

.home-page .hp-qr-frame img {
  margin: 0 auto;
  width: 100%;
  max-width: 288px;
  height: 288px;
  border-radius: 18px;
  object-fit: contain;
}

.home-page .hp-qr-title {
  margin: 20px 0 0;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.home-page .hp-qr-note {
  margin: 8px 0 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.75rem;
}

.home-page .hp-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 32px 16px;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.home-page .hp-footer p {
  margin: 0;
}

.home-page .hp-report-modal {
  display: none;
}

.home-page .hp-report-modal:target {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.home-page .hp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);
}

.home-page .hp-modal-shell {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
}

.home-page .hp-modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  backdrop-filter: blur(16px);
}

.home-page .hp-modal-image-wrap {
  max-height: 92vh;
  max-width: 92vw;
  overflow: auto;
}

.home-page .hp-modal-image-wrap img {
  width: auto;
  max-width: min(1600px, 92vw);
  height: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

@media (min-width: 640px) {
  .home-page .hp-hero-section,
  .home-page .hp-gallery-section,
  .home-page .hp-reports-section,
  .home-page .hp-community-section,
  .home-page .hp-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-page .hp-hero-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .home-page .hp-brand-lockup {
    gap: 6px;
  }

  .home-page .hp-brand-mark::before {
    width: 16px;
    height: 16px;
  }

  .home-page .hp-logo-word {
    font-size: 2.18rem;
  }

  .home-page .hp-system-cta {
    align-self: center;
    min-height: 52px;
    padding: 0 26px;
    font-size: 0.95rem;
  }

  .home-page .hp-reports-kicker {
    font-size: 1rem;
  }

  .home-page .hp-section-subtitle.hp-reports-subtitle {
    font-size: 1.2rem;
  }

  .home-page .hp-hero-summary,
  .home-page .hp-section-subtitle,
  .home-page .hp-community-text {
    font-size: 1.125rem;
  }

  .home-page .hp-hero-stats,
  .home-page .hp-community-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .hp-network-grid {
    gap: 12px;
  }

  .home-page .hp-network-card {
    padding: 16px;
  }

  .home-page .hp-network-label {
    font-size: 0.75rem;
  }

  .home-page .hp-network-value {
    font-size: 1.125rem;
  }

  .home-page .hp-burn-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .home-page .hp-report-card {
    width: 390px;
    min-width: 390px;
    height: 520px;
  }

  .home-page .hp-desktop-break {
    display: block;
  }
}

@media (min-width: 768px) {
  .home-page .hp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hp-community-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
  }

  .home-page .hp-community-panel {
    padding: 40px;
  }

  .home-page .hp-community-highlight {
    min-height: 220px;
    padding: 24px;
  }

  .home-page .hp-community-highlight h3 {
    margin-top: 32px;
    font-size: 1.25rem;
  }

  .home-page .hp-community-qr-wrap {
    justify-content: flex-end;
  }

  .home-page .hp-qr-card {
    margin-top: 8px;
    max-width: 320px;
    padding: 20px;
  }

  .home-page .hp-qr-title {
    margin-top: 16px;
  }

  .home-page .hp-qr-note {
    margin-top: 12px;
  }
}

@media (min-width: 1024px) {
  .home-page .hp-hero-section,
  .home-page .hp-gallery-section,
  .home-page .hp-reports-section,
  .home-page .hp-community-section,
  .home-page .hp-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-page .hp-brand-mark {
    gap: 10px;
  }

  .home-page .hp-brand-mark::before {
    width: 16px;
    height: 16px;
  }

  .home-page .hp-logo-word {
    font-size: 2.28rem;
  }

  .home-page .hp-system-cta {
    min-height: 54px;
    padding: 0 28px;
    font-size: 0.96rem;
  }

  .home-page .hp-hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .home-page .hp-hero-section {
    padding-top: 24px;
  }

  .home-page .hp-hero-top {
    align-items: flex-start;
  }

  .home-page .hp-brand-mark::before {
    width: 14px;
    height: 14px;
  }

  .home-page .hp-hero-shell {
    min-height: auto;
  }

  .home-page .hp-pill {
    margin-left: 20px;
  }

  .home-page .hp-build-version {
    margin-left: 20px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .home-page .hp-system-cta {
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.88rem;
  }

  .home-page .hp-chip-row {
    display: grid;
  }

  .home-page .hp-network-grid,
  .home-page .hp-battle-grid,
  .home-page .hp-community-highlights {
    grid-template-columns: 1fr;
  }

  .home-page .hp-volume-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hp-burn-card {
    padding: 24px;
  }

  .home-page .hp-report-card {
    width: 86vw;
    min-width: 86vw;
    height: 500px;
  }

  .home-page .hp-statement-inner {
    flex-direction: column;
  }
}
