@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "Xiphoris Display";
  src: url("/assets/font/StackSansNotch-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/*
  Optional später für eine echte Text-Schrift (empfohlen für Fließtext):
  @font-face {
    font-family: "Xiphoris Text";
    src: url("/fonts/xiphoris-text.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
*/

:root {
  /* Replace these font names once the club font is available */
  --font-body: "Xiphoris Text", "Manrope", "Segoe UI", sans-serif;
  --font-display: "Xiphoris Display", "Sora", "Manrope", sans-serif;

  --bg: #060c14;
  --bg-soft: #0b1622;
  --surface: rgba(11, 22, 34, 0.78);
  --surface-strong: rgba(10, 18, 28, 0.92);
  --border: rgba(87, 239, 224, 0.18);
  --border-strong: rgba(255, 76, 180, 0.22);
  --text: #edf7fb;
  --muted: #9db6c2;
  --muted-2: #bfd0d8;
  --turquoise: #38ead7;
  --turquoise-deep: #1bc4b3;
  --pink: #ff4fb7;
  --pink-soft: rgba(255, 79, 183, 0.18);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 234, 215, 0.12), transparent 40%),
    radial-gradient(circle at 88% 14%, rgba(255, 79, 183, 0.12), transparent 36%),
    linear-gradient(180deg, #050a12 0%, #07101a 42%, #050911 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.1rem 0.35rem;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(14px);
  opacity: 0.75;
}

.bg-orb-a {
  width: 26rem;
  height: 26rem;
  top: -8rem;
  left: -7rem;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.32), transparent 70%);
}

.bg-orb-b {
  width: 32rem;
  height: 32rem;
  right: -8rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.26), transparent 72%);
}

.shell {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(6, 12, 20, 0.82) 0%,
    rgba(6, 12, 20, 0.55) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.8), transparent 36%),
    linear-gradient(135deg, var(--turquoise) 0%, var(--pink) 100%);
  box-shadow:
    0 0 0 4px rgba(56, 234, 215, 0.1),
    0 0 26px rgba(255, 79, 183, 0.25);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: var(--muted-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav-link.is-active {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(120deg, rgba(56, 234, 215, 0.09), rgba(255, 79, 183, 0.11));
  border-color: rgba(56, 234, 215, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 79, 183, 0.08);
}

.main-content {
  padding: 1.2rem 0 2.2rem;
}

.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: clip;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.35),
    rgba(255, 79, 183, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.hero-copy,
.hero-side,
.page-hero {
  padding: 1.35rem;
}

.hero-copy {
  min-height: 100%;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0.35rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.lead {
  margin: 0;
  color: var(--muted-2);
  font-size: 1.03rem;
  max-width: 52ch;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.meta-line {
  margin: 0;
  color: var(--turquoise);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease;
}

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

.button.primary {
  color: #061117;
  background: linear-gradient(135deg, var(--turquoise) 0%, #7cf2e7 48%, #ffd8ef 100%);
  box-shadow:
    0 10px 26px rgba(56, 234, 215, 0.18),
    0 2px 8px rgba(255, 79, 183, 0.1);
}

.button.ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.button.ghost:hover {
  border-color: rgba(56, 234, 215, 0.22);
  background: rgba(56, 234, 215, 0.06);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.stat-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.section-intro h2 {
  margin: 0.35rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: -0.01em;
}

.section-intro p:last-child {
  margin: 0;
  color: var(--muted-2);
}

.section-intro.compact h2 + p {
  margin-top: 0.35rem;
}

.stack {
  display: grid;
  gap: 0.7rem;
}

.mini-event {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  padding: 0.9rem;
}

.mini-event h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1rem;
  font-family: var(--font-display);
}

.mini-event p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-block {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.grid.tight {
  gap: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.card,
.timeline-row,
.team-card,
.price-card {
  padding: 1.05rem;
}

.card h3,
.timeline-content h3,
.price-card h3 {
  margin: 0.4rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.card p:last-child,
.timeline-content p:last-child,
.price-card p:last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--muted-2);
}

.cta-strip {
  padding: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-color: var(--border-strong);
  background:
    linear-gradient(115deg, rgba(56, 234, 215, 0.06), rgba(255, 79, 183, 0.07)),
    var(--surface-strong);
}

.cta-strip h2 {
  margin: 0.35rem 0;
  font-family: var(--font-display);
}

.cta-strip p {
  margin: 0;
  color: var(--muted-2);
  max-width: 62ch;
}

.cta-strip a {
  white-space: nowrap;
}

.page-hero {
  margin-bottom: 0.2rem;
}

.timeline-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.timeline-month {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.06), rgba(255, 79, 183, 0.08)),
    rgba(255, 255, 255, 0.01);
  padding: 0.75rem 0.8rem;
  text-align: center;
}

.timeline-content p {
  color: var(--muted-2);
}

.schedule-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1.1fr auto 1.6fr;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.015);
}

.schedule-day {
  color: var(--text);
  font-weight: 600;
}

.schedule-time {
  font-family: var(--font-display);
  color: var(--turquoise);
  font-weight: 700;
}

.schedule-name {
  color: var(--muted-2);
}

.soft-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.soft-list.compact-list {
  margin-top: 0.45rem;
}

.soft-list-item {
  color: var(--muted-2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  padding: 0.65rem 0.8rem;
}

.team-card {
  display: grid;
  gap: 0.75rem;
}

.team-card p {
  margin: 0;
  color: var(--muted-2);
}

.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.team-header h2 {
  margin: 0.3rem 0 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.status-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 234, 215, 0.2);
  background:
    linear-gradient(120deg, rgba(56, 234, 215, 0.07), rgba(255, 79, 183, 0.09)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.team-meta {
  display: grid;
  gap: 0.25rem;
}

.team-meta strong {
  color: var(--text);
}

.number-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted-2);
  display: grid;
  gap: 0.45rem;
}

.metrics-panel {
  padding: 1.05rem;
}

.metrics-panel .stat-card {
  min-height: 4.9rem;
}

.note-line {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-card {
  border-color: rgba(255, 255, 255, 0.07);
}

.price-card.featured {
  border-color: rgba(255, 79, 183, 0.22);
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.05), rgba(255, 79, 183, 0.08)),
    var(--surface);
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(5, 10, 17, 0.45);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.3rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-note {
  text-align: right;
}

.panel,
.hero,
.section-block {
  animation: fade-up 320ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .grid.three {
    grid-template-columns: 1fr;
  }

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

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .timeline-month {
    text-align: left;
    width: fit-content;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    justify-content: flex-start;
  }

  .nav-link {
    white-space: nowrap;
  }

  .hero-copy,
  .hero-side,
  .page-hero,
  .card,
  .timeline-row,
  .team-card,
  .price-card,
  .metrics-panel,
  .cta-strip {
    padding: 1rem;
  }

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

  .schedule-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .panel,
  .hero,
  .section-block,
  .button,
  .nav-link {
    animation: none !important;
    transition: none !important;
  }
}

/* Home redesign v2 (light / editorial) */
body.page-home {
  --text: #111a2d;
  --muted: #6a7587;
  --muted-2: #4f5f74;
  --border: rgba(27, 63, 96, 0.08);
  --border-strong: rgba(255, 79, 183, 0.17);
  --shadow: 0 18px 46px rgba(17, 28, 45, 0.07);
  background:
    radial-gradient(circle at 6% 10%, rgba(56, 234, 215, 0.16), transparent 42%),
    radial-gradient(circle at 96% 18%, rgba(255, 79, 183, 0.12), transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(124, 210, 255, 0.12), transparent 44%),
    linear-gradient(180deg, #f7f9fd 0%, #f3f6fb 40%, #eef3fa 100%);
  color: var(--text);
}

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}

.page-home .bg-orb {
  filter: blur(28px);
  opacity: 0.95;
}

.page-home .bg-orb-a {
  width: 34rem;
  height: 34rem;
  top: -9rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.24), transparent 68%);
}

.page-home .bg-orb-b {
  width: 38rem;
  height: 38rem;
  top: 16rem;
  right: -11rem;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.17), transparent 70%);
}

.page-home .site-header {
  background: rgba(247, 250, 255, 0.74);
  border-bottom: 1px solid rgba(17, 26, 45, 0.06);
  box-shadow: 0 8px 28px rgba(17, 26, 45, 0.04);
}

.page-home .brand {
  color: var(--text);
}

.page-home .brand-mark {
  box-shadow:
    0 0 0 5px rgba(56, 234, 215, 0.08),
    0 8px 22px rgba(255, 79, 183, 0.16);
}

.page-home .nav-link {
  color: #5e6c81;
}

.page-home .nav-link:hover {
  color: var(--text);
  background: rgba(17, 26, 45, 0.03);
  border-color: rgba(17, 26, 45, 0.06);
}

.page-home .nav-link.is-active {
  color: #0e1728;
  border-color: rgba(56, 234, 215, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.6)),
    linear-gradient(120deg, rgba(56, 234, 215, 0.12), rgba(255, 79, 183, 0.08));
  box-shadow: 0 8px 18px rgba(17, 26, 45, 0.04);
}

.page-home .main-content {
  padding-top: 1.45rem;
  padding-bottom: 2.8rem;
}

.page-home code {
  background: rgba(17, 26, 45, 0.04);
  border-color: rgba(17, 26, 45, 0.08);
}

.page-home .panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.83)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 26, 45, 0.07);
  box-shadow:
    0 20px 44px rgba(17, 26, 45, 0.06),
    0 2px 8px rgba(17, 26, 45, 0.03);
}

.page-home .panel::before {
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.22),
    rgba(255, 79, 183, 0.16),
    transparent 72%
  );
}

.page-home .eyebrow {
  color: #6b7c92;
}

.page-home .meta-line {
  color: #0ea6a0;
}

.page-home .button.primary {
  color: #091520;
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.95), rgba(178, 255, 244, 0.94)),
    linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow:
    0 14px 28px rgba(56, 234, 215, 0.18),
    0 4px 12px rgba(255, 79, 183, 0.1);
}

.page-home .button.ghost {
  color: #162235;
  border-color: rgba(17, 26, 45, 0.11);
  background: rgba(255, 255, 255, 0.55);
}

.page-home .button.ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(56, 234, 215, 0.22);
}

.page-home .site-footer {
  border-top: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
}

.page-home .footer-inner p {
  color: #5f6f86;
}

.page-home .section-block {
  margin-top: 1.25rem;
}

.page-home .section-intro h2 {
  color: var(--text);
}

.page-home .section-intro p:last-child {
  color: var(--muted-2);
}

.home-stage {
  display: grid;
  gap: 1rem;
}

.home-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.home-stage-main {
  padding: 1.45rem;
  position: relative;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 79, 183, 0.09), transparent 40%),
    radial-gradient(circle at 8% 10%, rgba(56, 234, 215, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
}

.home-stage-main::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), transparent 45%),
    linear-gradient(135deg, rgba(56, 234, 215, 0.16), rgba(255, 79, 183, 0.15));
  border: 1px solid rgba(17, 26, 45, 0.05);
  filter: blur(1px);
  opacity: 0.85;
  pointer-events: none;
}

.home-stage-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-inline-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.08);
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.07), rgba(255, 79, 183, 0.08)),
    rgba(255, 255, 255, 0.78);
  color: #203149;
  font-size: 0.83rem;
  font-weight: 600;
}

.home-inline-badge.muted {
  background: rgba(255, 255, 255, 0.82);
}

.home-stage-title {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: #0d1728;
  max-width: 10.5ch;
}

.home-stage-title span {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.45;
  letter-spacing: 0;
  color: #52637a;
  max-width: 34ch;
}

.home-stage-lead {
  margin: 0.95rem 0 0;
  color: #4a5d73;
  font-size: 1.03rem;
  max-width: 58ch;
}

.home-stage-actions {
  margin-top: 1.1rem;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background: rgba(255, 255, 255, 0.7);
  color: #2e3e54;
  font-size: 0.84rem;
  font-weight: 600;
}

.home-stage-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.home-kpi-card {
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.65);
}

.home-kpi-card .meta-line {
  color: #6f8195;
}

.home-kpi-value {
  margin: 0.32rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: #0f1829;
}

.home-kpi-label {
  margin: 0.32rem 0 0;
  color: #627288;
  font-size: 0.86rem;
  line-height: 1.35;
}

.home-stage-side {
  display: grid;
  gap: 1rem;
}

.home-side-card {
  padding: 1.05rem;
}

.home-side-card h2 {
  margin: 0.38rem 0 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.home-side-card p {
  color: #56687d;
}

.home-side-card-accent {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 79, 183, 0.12), transparent 42%),
    radial-gradient(circle at 16% 8%, rgba(56, 234, 215, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.home-side-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-dot-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.72);
  color: #475a72;
  font-size: 0.78rem;
  font-weight: 600;
}

.home-dot-status::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow: 0 0 0 3px rgba(56, 234, 215, 0.08);
}

.home-side-bars {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.home-bar {
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(17, 26, 45, 0.05);
  overflow: hidden;
}

.home-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(56, 234, 215, 0.95), rgba(255, 79, 183, 0.72));
}

.home-mini-event-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.home-mini-event {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: stretch;
  padding: 0.85rem 0.9rem;
  border-radius: 15px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.home-mini-event h3 {
  margin: 0.3rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #10192a;
}

.home-mini-event p:last-child {
  margin: 0;
  color: #5c6e84;
  font-size: 0.88rem;
}

.home-mini-event-line {
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(56, 234, 215, 0.6),
    rgba(255, 79, 183, 0.38)
  );
  opacity: 0.7;
}

.home-stage-ribbon {
  padding: 1.1rem;
}

.home-stage-ribbon-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.home-stage-ribbon-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.home-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-principle {
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.68);
}

.home-principle-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.14), rgba(255, 79, 183, 0.12)),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 26, 45, 0.06);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f192a;
}

.home-principle h3 {
  margin: 0.65rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.home-principle p {
  margin: 0;
  color: #5d6f84;
  font-size: 0.9rem;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.home-editorial-story {
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.home-editorial-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-editorial-story h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 25ch;
}

.home-editorial-story > p {
  margin: 0;
  color: #56687e;
  max-width: 62ch;
}

.home-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.1rem;
}

.home-note-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.05);
  background: rgba(255, 255, 255, 0.72);
  color: #43566d;
  font-size: 0.9rem;
}

.home-note-dot {
  margin-top: 0.25rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.07);
}

.home-editorial-rail {
  display: grid;
  gap: 1rem;
}

.home-rail-metrics,
.home-rail-card {
  padding: 1.05rem;
}

.home-rail-metrics h3,
.home-rail-card h3 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.home-rail-card p {
  margin: 0.5rem 0 0;
  color: #5b6d83;
}

.home-metric-stack {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.5rem;
}

.home-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: #485a71;
  font-size: 0.9rem;
}

.home-metric-row strong {
  color: #132136;
  font-weight: 700;
}

.home-meter {
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(17, 26, 45, 0.05);
  overflow: hidden;
}

.home-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(56, 234, 215, 0.86), rgba(255, 79, 183, 0.62));
}

.home-focus-header {
  margin-bottom: 0.8rem;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-focus-card {
  padding: 1.05rem;
}

.home-focus-card h3 {
  margin: 0.35rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.03rem;
}

.home-focus-card p:last-child {
  margin: 0;
  color: #586a81;
}

.home-mosaic-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.home-mosaic-card {
  padding: 1.05rem;
}

.home-mosaic-card-wide {
  grid-row: span 2;
  display: grid;
  align-content: start;
  gap: 0.4rem;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 79, 183, 0.09), transparent 42%),
    radial-gradient(circle at 12% 14%, rgba(56, 234, 215, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86));
}

.home-mosaic-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.1rem;
}

.home-inline-link {
  color: #375774;
  font-size: 0.86rem;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(55, 87, 116, 0.18);
}

.home-inline-link:hover {
  color: #1c445c;
  border-bottom-color: rgba(56, 234, 215, 0.35);
}

.home-mosaic-card h3 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.15;
}

.home-mosaic-card p:last-of-type {
  margin: 0.45rem 0 0;
  color: #596b82;
}

.home-tag-list {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.76);
  color: #31445b;
  font-size: 0.82rem;
  font-weight: 600;
}

.home-events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.home-events-board {
  padding: 1.1rem;
}

.home-events-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

.home-event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.72);
}

.home-event-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.12), rgba(255, 79, 183, 0.09)),
    rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 700;
  color: #102033;
}

.home-event-copy h3 {
  margin: 0.3rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.home-event-copy p:last-child {
  margin: 0;
  color: #5c6d82;
}

.home-row-link {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #304961;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.home-row-link:hover {
  border-color: rgba(56, 234, 215, 0.22);
  color: #183f58;
}

.home-events-side {
  display: grid;
  gap: 1rem;
}

.home-weekly-panel,
.home-quote-panel {
  padding: 1.05rem;
}

.home-weekly-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.6rem;
}

.home-weekly-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.72);
}

.home-weekly-day {
  margin: 0;
  color: #102133;
  font-weight: 700;
}

.home-weekly-event {
  margin: 0.15rem 0 0;
  color: #62738a;
  font-size: 0.88rem;
}

.home-weekly-time {
  font-family: var(--font-display);
  color: #0a8f8b;
  font-weight: 700;
}

.home-quote-panel blockquote {
  margin: 0.5rem 0 0;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.06), rgba(255, 79, 183, 0.06)),
    rgba(255, 255, 255, 0.76);
  color: #15253a;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
}

.home-quote-panel p:last-child {
  margin: 0.65rem 0 0;
  color: #5d6e84;
}

.home-cta-band {
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-color: rgba(255, 79, 183, 0.16);
  background:
    radial-gradient(circle at 8% 10%, rgba(56, 234, 215, 0.12), transparent 40%),
    radial-gradient(circle at 88% 20%, rgba(255, 79, 183, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.home-cta-copy h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 30ch;
}

.home-cta-copy p:last-child {
  margin: 0.45rem 0 0;
  color: #5d6f86;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 1180px) {
  .page-home .shell {
    width: min(100% - 1.25rem, var(--max-width));
  }

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

@media (max-width: 980px) {
  .home-stage-grid,
  .home-editorial-grid,
  .home-events-grid,
  .home-focus-grid,
  .home-principles-grid {
    grid-template-columns: 1fr;
  }

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

  .home-mosaic-card-wide {
    grid-row: auto;
  }

  .home-stage-main::after {
    width: 12rem;
    height: 12rem;
    inset: auto -5% -12% auto;
  }

  .home-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .home-stage-main,
  .home-side-card,
  .home-stage-ribbon,
  .home-editorial-story,
  .home-rail-metrics,
  .home-rail-card,
  .home-focus-card,
  .home-mosaic-card,
  .home-events-board,
  .home-weekly-panel,
  .home-quote-panel,
  .home-cta-band {
    padding: 0.95rem;
  }

  .home-stage-badge-row,
  .home-side-card-head,
  .home-stage-ribbon-head,
  .home-editorial-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-stage-title {
    font-size: clamp(2rem, 11vw, 2.7rem);
    max-width: none;
  }

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

  .home-mini-event,
  .home-event-row {
    grid-template-columns: 1fr;
  }

  .home-mini-event-line {
    width: 100%;
    height: 2px;
  }

  .home-row-link {
    justify-self: start;
  }

  .home-weekly-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-cta-actions {
    width: 100%;
  }

  .home-cta-actions .button {
    width: 100%;
  }
}

/* Home redesign v3 (minimal / less boxes) */
body.page-home {
  background:
    radial-gradient(circle at 10% 8%, rgba(56, 234, 215, 0.1), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 79, 183, 0.08), transparent 42%),
    linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 54%, #f2f6fb 100%);
}

body.page-home::before {
  background-size: 44px 44px;
  opacity: 0.18;
}

.page-home .bg-orb {
  opacity: 0.45;
  filter: blur(34px);
}

.page-home .site-header {
  background: rgba(251, 253, 255, 0.8);
  border-bottom-color: rgba(17, 26, 45, 0.05);
  box-shadow: 0 8px 20px rgba(17, 26, 45, 0.03);
}

.page-home .main-content {
  padding-top: 2rem;
  padding-bottom: 3.2rem;
}

.page-home .panel {
  box-shadow:
    0 14px 28px rgba(17, 26, 45, 0.035),
    0 1px 3px rgba(17, 26, 45, 0.03);
}

.hm-hero {
  padding-top: 0.25rem;
}

.hm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: min(72vh, 720px);
}

.hm-copy {
  display: grid;
  gap: 0;
  max-width: 34rem;
}

.hm-copy h1 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #0f1727;
}

.hm-lead {
  margin: 0.9rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
  color: #1f3148;
}

.hm-sub {
  margin: 0.75rem 0 0;
  color: #5f7086;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 44ch;
}

.hm-actions {
  margin-top: 1.2rem;
}

.hm-inline-meta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #5e7088;
  font-size: 0.9rem;
}

.hm-inline-meta span {
  position: relative;
  padding-left: 0.8rem;
}

.hm-inline-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
}

.hm-visual {
  position: relative;
  height: clamp(320px, 44vw, 520px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 38% 44%, rgba(56, 234, 215, 0.14), transparent 46%),
    radial-gradient(circle at 66% 40%, rgba(255, 79, 183, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(17, 26, 45, 0.06);
  overflow: hidden;
}

.hm-visual::before,
.hm-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hm-visual::before {
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
}

.hm-visual::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 33%, rgba(17, 26, 45, 0.04) 33.2% 33.8%, transparent 34%),
    radial-gradient(circle at 50% 50%, transparent 0 49%, rgba(17, 26, 45, 0.04) 49.2% 49.7%, transparent 50%);
}

.hm-visual-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(135deg, rgba(56, 234, 215, 0.86), rgba(255, 79, 183, 0.72));
  box-shadow:
    0 18px 38px rgba(17, 26, 45, 0.08),
    0 0 0 14px rgba(255, 255, 255, 0.35);
}

.hm-visual-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17, 26, 45, 0.08);
}

.hm-visual-ring-a {
  width: 14.5rem;
  height: 14.5rem;
}

.hm-visual-ring-b {
  width: 20rem;
  height: 20rem;
  border-color: rgba(17, 26, 45, 0.05);
}

.hm-visual-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 26, 45, 0.07);
  color: #23364d;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(17, 26, 45, 0.05);
}

.hm-visual-label-a {
  top: 17%;
  left: 20%;
}

.hm-visual-label-b {
  top: 56%;
  right: 14%;
}

.hm-visual-label-c {
  bottom: 14%;
  left: 28%;
}

.hm-section {
  margin-top: 1.4rem;
}

.hm-section-head {
  margin-bottom: 0.8rem;
}

.hm-section-head h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0f1829;
}

.hm-entry-list {
  border-top: 1px solid rgba(17, 26, 45, 0.08);
}

.hm-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0.15rem;
  border-bottom: 1px solid rgba(17, 26, 45, 0.08);
  text-decoration: none;
  transition: background-color 160ms ease, padding-left 160ms ease;
}

.hm-entry:hover {
  background: rgba(255, 255, 255, 0.45);
  padding-left: 0.45rem;
}

.hm-entry-index {
  font-family: var(--font-display);
  color: #6d7e94;
  font-size: 0.95rem;
}

.hm-entry-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: #111b2d;
}

.hm-entry-copy p {
  margin: 0.24rem 0 0;
  color: #607188;
  font-size: 0.9rem;
}

.hm-entry-arrow {
  color: #6c7d93;
  font-size: 1rem;
}

.hm-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.hm-column {
  min-width: 0;
}

.hm-column-note {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(17, 26, 45, 0.08);
}

.hm-column-note h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hm-note-text {
  margin: 0.6rem 0 0;
  color: #607188;
  max-width: 28ch;
}

.hm-event-list {
  margin-top: 0.25rem;
  border-top: 1px solid rgba(17, 26, 45, 0.08);
}

.hm-event-row {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(17, 26, 45, 0.08);
}

.hm-event-date {
  margin: 0.18rem 0 0;
  color: #0e938f;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.hm-event-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: #111b2d;
}

.hm-event-row p:last-child {
  margin: 0.32rem 0 0;
  color: #5f7086;
  font-size: 0.92rem;
}

.hm-weekly-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.hm-weekly-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(17, 26, 45, 0.08);
  color: #44586f;
  font-size: 0.9rem;
}

.hm-weekly-day {
  font-weight: 700;
  color: #1f3148;
}

.hm-weekly-name {
  color: #61728a;
}

.hm-weekly-time {
  font-family: var(--font-display);
  color: #0b8f8b;
  font-weight: 700;
}

.hm-text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: #234761;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(35, 71, 97, 0.18);
}

.hm-text-link:hover {
  border-bottom-color: rgba(56, 234, 215, 0.35);
}

.hm-cta {
  margin-top: 2.1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(17, 26, 45, 0.08);
}

.hm-cta h2 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 24ch;
  color: #0f1829;
}

.hm-cta .button-row {
  margin-top: 0.9rem;
}

@media (max-width: 980px) {
  .hm-hero-grid,
  .hm-split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hm-hero-grid {
    min-height: 0;
  }

  .hm-visual {
    order: -1;
    height: min(55vw, 360px);
  }

  .hm-column-note {
    padding-left: 0;
    border-left: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(17, 26, 45, 0.08);
  }
}

@media (max-width: 760px) {
  .page-home .main-content {
    padding-top: 1.3rem;
    padding-bottom: 2.4rem;
  }

  .hm-hero-grid {
    gap: 1rem;
  }

  .hm-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hm-visual {
    height: 260px;
    border-radius: 24px;
  }

  .hm-visual-core {
    width: 6.4rem;
    height: 6.4rem;
  }

  .hm-visual-ring-a {
    width: 11.4rem;
    height: 11.4rem;
  }

  .hm-visual-ring-b {
    width: 15rem;
    height: 15rem;
  }

  .hm-visual-label {
    min-height: 1.8rem;
    padding: 0 0.6rem;
    font-size: 0.78rem;
  }

  .hm-entry {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .hm-entry-arrow {
    display: none;
  }

  .hm-event-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hm-weekly-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    align-items: start;
  }

  .hm-cta .button-row {
    width: 100%;
  }

  .hm-cta .button {
    width: 100%;
  }
}

/* Home Header Overhaul v4 (maximal / elegant / innovative) */
.hm-hero--maximal {
  padding-top: 0.35rem;
}

.hm-hero--maximal .hmx-shell {
  position: relative;
  padding: 1.15rem;
  border-radius: 30px;
  overflow: hidden;
  border-color: rgba(17, 26, 45, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 26px 52px rgba(17, 26, 45, 0.07),
    0 8px 24px rgba(17, 26, 45, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hm-hero--maximal .hmx-shell::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.25),
    rgba(255, 79, 183, 0.2),
    transparent 78%
  );
  pointer-events: none;
}

.hmx-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hmx-bg-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 0.9) 68%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hmx-bg-glow {
  filter: blur(18px);
  opacity: 0.7;
}

.hmx-bg-glow-a {
  inset: -10% auto auto -8%;
  width: 32rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.16), transparent 70%);
  animation: hmx-drift-a 12s ease-in-out infinite alternate;
}

.hmx-bg-glow-b {
  inset: 6% -8% auto auto;
  width: 30rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.14), transparent 72%);
  animation: hmx-drift-b 16s ease-in-out infinite alternate;
}

.hmx-bg-glow-c {
  inset: auto 18% -18% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 198, 255, 0.14), transparent 70%);
  animation: hmx-drift-c 14s ease-in-out infinite alternate;
}

.hmx-bg-scan {
  opacity: 0.22;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(17, 26, 45, 0.018) 0,
      rgba(17, 26, 45, 0.018) 1px,
      transparent 1px,
      transparent 8px
    );
  animation: hmx-scan 18s linear infinite;
}

.hmx-bg-vignette {
  background:
    radial-gradient(circle at 12% 14%, transparent 0 34%, rgba(255, 255, 255, 0.34) 66%),
    radial-gradient(circle at 88% 18%, transparent 0 42%, rgba(255, 255, 255, 0.24) 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(246, 249, 253, 0.75) 100%);
}

.hm-hero--maximal .hmx-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 1.05rem;
  align-items: start;
}

.hmx-copy-col {
  position: relative;
  display: grid;
  gap: 0;
  min-width: 0;
  padding:
    clamp(0.15rem, 0.4vw, 0.3rem)
    clamp(0.15rem, 0.4vw, 0.35rem)
    clamp(0.2rem, 0.45vw, 0.35rem)
    clamp(0.1rem, 0.25vw, 0.2rem);
}

.hmx-copy-col::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.1), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hmx-topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hmx-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.08);
  background:
    linear-gradient(135deg, rgba(56, 234, 215, 0.06), rgba(255, 79, 183, 0.06)),
    rgba(255, 255, 255, 0.75);
  color: #203045;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hmx-pill-muted {
  color: #5f7188;
  background: rgba(255, 255, 255, 0.72);
}

.hmx-kicker-row {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hmx-eyebrow {
  color: #6b7e95;
  letter-spacing: 0.16em;
}

.hmx-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.95rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background: rgba(255, 255, 255, 0.78);
  color: #435a72;
  font-size: 0.8rem;
  font-weight: 700;
}

.hmx-status-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow:
    0 0 0 4px rgba(56, 234, 215, 0.07),
    0 0 18px rgba(255, 79, 183, 0.14);
  animation: hmx-pulse-dot 2.3s ease-in-out infinite;
}

.hmx-title {
  position: relative;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.1rem;
  max-width: 10ch;
}

.hmx-title::after {
  content: "";
  position: absolute;
  inset: auto auto -0.95rem 0;
  width: 7.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 234, 215, 0.9), rgba(255, 79, 183, 0.66));
  box-shadow: 0 0 20px rgba(56, 234, 215, 0.12);
}

.hmx-title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.9rem, 7.4vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: #0f1829;
  text-wrap: balance;
  position: relative;
  font-variation-settings: "wght" 720;
}

.hmx-title-line-accent {
  color: #101d31;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 30px rgba(17, 26, 45, 0.06);
}

.hmx-title-line-accent::before {
  content: "";
  position: absolute;
  inset: 50% auto auto -0.7rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(56, 234, 215, 0.06);
}

.hmx-title-support {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.45rem;
  max-width: 33rem;
}

.hmx-lead {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #203248;
  font-variation-settings: "wght" 560;
}

.hmx-sub {
  margin: 0;
  color: #5a6c83;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 50ch;
}

.hmx-actions {
  margin-top: 1rem;
  gap: 0.6rem;
}

.hmx-actions .button {
  min-height: 2.65rem;
  padding-inline: 0.95rem;
}

.hmx-button-primary {
  position: relative;
  isolation: isolate;
}

.hmx-button-primary::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(56, 234, 215, 0.35),
    rgba(255, 79, 183, 0.18)
  );
  z-index: -1;
  filter: blur(12px);
  opacity: 0.6;
}

.hmx-button-ghost {
  background: rgba(255, 255, 255, 0.68) !important;
}

.hmx-inline-meta {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hmx-inline-meta-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.65rem 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.62);
  color: #4b6078;
  font-size: 0.82rem;
  font-weight: 600;
}

.hmx-inline-meta-item::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(56, 234, 215, 0.9), rgba(255, 79, 183, 0.8));
}

.hmx-signal-grid {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hmx-signal-card {
  position: relative;
  padding: 0.75rem 0.8rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 12px 24px rgba(17, 26, 45, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.hmx-signal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.2),
    rgba(255, 79, 183, 0.16),
    transparent 85%
  );
}

.hmx-signal-card::after {
  content: "";
  position: absolute;
  inset: auto -14% -50% auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.08), transparent 72%);
  filter: blur(4px);
  pointer-events: none;
}

.hmx-signal-label {
  margin: 0;
  color: #6d7f95;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hmx-signal-value {
  margin: 0.42rem 0 0;
  color: #112038;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 0.98rem;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-variation-settings: "wght" 620;
}

.hmx-signal-text {
  margin: 0.38rem 0 0;
  color: #5f7087;
  font-size: 0.84rem;
  line-height: 1.35;
}

.hmx-stage-col {
  min-width: 0;
  position: relative;
}

.hmx-stage-col::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(56, 234, 215, 0.04),
    rgba(255, 79, 183, 0.03)
  );
  pointer-events: none;
}

.hmx-stage {
  position: relative;
  min-height: 33rem;
  border-radius: 26px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 79, 183, 0.1), transparent 42%),
    radial-gradient(circle at 24% 26%, rgba(56, 234, 215, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 22px 34px rgba(17, 26, 45, 0.05);
  overflow: hidden;
  padding: 0.9rem;
}

.hmx-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.26), transparent 20%);
  pointer-events: none;
}

.hmx-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 248, 252, 0.94));
  pointer-events: none;
}

.hmx-stage-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.35) 82%);
}

.hmx-stage-radar {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17, 26, 45, 0.05);
  pointer-events: none;
}

.hmx-stage-radar-a {
  width: 13rem;
  height: 13rem;
  border-color: rgba(17, 26, 45, 0.07);
}

.hmx-stage-radar-b {
  width: 18.5rem;
  height: 18.5rem;
  border-color: rgba(56, 234, 215, 0.12);
}

.hmx-stage-radar-c {
  width: 24.5rem;
  height: 24.5rem;
  border-color: rgba(255, 79, 183, 0.1);
}

.hmx-stage-beam {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.7;
  pointer-events: none;
}

.hmx-stage-beam-a {
  top: 16%;
  left: -6%;
  width: 56%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 234, 215, 0.4),
    rgba(56, 234, 215, 0.1)
  );
  transform: rotate(14deg);
  animation: hmx-beam-a 8s ease-in-out infinite;
}

.hmx-stage-beam-b {
  top: 58%;
  right: -7%;
  width: 52%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 79, 183, 0.08),
    rgba(255, 79, 183, 0.38),
    transparent
  );
  transform: rotate(-16deg);
  animation: hmx-beam-b 9.5s ease-in-out infinite;
}

.hmx-stage-beam-c {
  bottom: 18%;
  left: 8%;
  width: 44%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(120, 198, 255, 0.08),
    rgba(120, 198, 255, 0.32),
    transparent
  );
  transform: rotate(-8deg);
  animation: hmx-beam-c 10s ease-in-out infinite;
}

.hmx-stage-path {
  position: absolute;
  border: 1px dashed rgba(17, 26, 45, 0.08);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.7;
}

.hmx-stage-path-a {
  inset: 17% 12% auto auto;
  width: 14rem;
  height: 6.2rem;
  transform: rotate(12deg);
}

.hmx-stage-path-b {
  inset: auto auto 18% 9%;
  width: 13rem;
  height: 5.4rem;
  transform: rotate(-11deg);
}

.hmx-stage-path-c {
  inset: 42% 31% auto auto;
  width: 9rem;
  height: 3.8rem;
  border-color: rgba(56, 234, 215, 0.1);
  transform: rotate(-22deg);
}

.hmx-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 18.8rem;
  max-width: calc(100% - 2rem);
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.hmx-core-shell {
  position: relative;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), transparent 44%),
    linear-gradient(135deg, rgba(56, 234, 215, 0.88), rgba(255, 79, 183, 0.68));
  box-shadow:
    0 20px 38px rgba(17, 26, 45, 0.1),
    0 0 0 14px rgba(255, 255, 255, 0.28),
    inset 0 -8px 18px rgba(17, 26, 45, 0.06);
}

.hmx-core-pulse {
  position: absolute;
  inset: -1.1rem;
  border-radius: 50%;
  border: 1px solid rgba(56, 234, 215, 0.18);
  animation: hmx-core-pulse 2.8s ease-out infinite;
}

.hmx-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hmx-core-ring-a {
  inset: 0.7rem;
}

.hmx-core-ring-b {
  inset: 1.5rem;
  border-color: rgba(17, 26, 45, 0.09);
}

.hmx-core-dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.32),
    0 0 24px rgba(255, 255, 255, 0.45);
}

.hmx-core-copy {
  display: grid;
  gap: 0.18rem;
  justify-items: center;
  text-align: center;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(17, 26, 45, 0.04);
}

.hmx-core-label {
  margin: 0;
  color: #6f8197;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hmx-core-title {
  margin: 0;
  color: #132237;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "wght" 620;
}

.hmx-core-sub {
  margin: 0;
  color: #5f7087;
  font-size: 0.78rem;
}

.hmx-orbit-node {
  position: absolute;
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 22px rgba(17, 26, 45, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  min-width: 8.2rem;
  z-index: 2;
  animation: hmx-floaty 8s ease-in-out infinite;
}

.hmx-orbit-node::before {
  content: "";
  position: absolute;
  inset: auto auto 0.55rem -1.9rem;
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(17, 26, 45, 0.03),
    rgba(17, 26, 45, 0.14)
  );
}

.hmx-orbit-node::after {
  content: "";
  position: absolute;
  left: -2.1rem;
  bottom: 0.35rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.06);
}

.hmx-orbit-node-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 26, 45, 0.05);
  color: #1d2f46;
  font-size: 0.8rem;
  font-weight: 700;
}

.hmx-orbit-node small {
  color: #5e7086;
  font-size: 0.74rem;
  line-height: 1.2;
}

.hmx-orbit-node-a {
  top: 8%;
  left: 8%;
  animation-delay: -1s;
}

.hmx-orbit-node-b {
  top: 11%;
  right: 10%;
  animation-delay: -2.8s;
}

.hmx-orbit-node-b::before {
  inset: auto -1.9rem 0.55rem auto;
  background: linear-gradient(
    90deg,
    rgba(17, 26, 45, 0.14),
    rgba(17, 26, 45, 0.03)
  );
}

.hmx-orbit-node-b::after {
  left: auto;
  right: -2.1rem;
}

.hmx-orbit-node-c {
  bottom: 18%;
  right: 8%;
  animation-delay: -4.1s;
}

.hmx-orbit-node-c::before {
  inset: auto -1.9rem 0.55rem auto;
}

.hmx-orbit-node-c::after {
  left: auto;
  right: -2.1rem;
}

.hmx-orbit-node-d {
  bottom: 21%;
  left: 10%;
  animation-delay: -5.2s;
}

.hmx-float-card {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow:
    0 16px 26px rgba(17, 26, 45, 0.05),
    0 2px 8px rgba(17, 26, 45, 0.03);
  padding: 0.8rem;
  z-index: 3;
  overflow: hidden;
}

.hmx-float-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.2),
    rgba(255, 79, 183, 0.16),
    transparent 82%
  );
}

.hmx-float-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hmx-float-label {
  margin: 0;
  color: #70849b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hmx-float-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.05);
  background: rgba(255, 255, 255, 0.75);
  color: #51647c;
  font-size: 0.73rem;
  font-weight: 700;
}

.hmx-float-card h2 {
  margin: 0.38rem 0 0;
  color: #121f34;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 0.97rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "wght" 620;
}

.hmx-float-card p {
  margin: 0.45rem 0 0;
  color: #5c6f85;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hmx-float-card-a {
  top: 34%;
  left: 3.5%;
  width: 14.2rem;
  animation: hmx-card-a 10s ease-in-out infinite;
}

.hmx-float-progress {
  margin-top: 0.6rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(17, 26, 45, 0.06);
  overflow: hidden;
}

.hmx-float-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(56, 234, 215, 0.9), rgba(255, 79, 183, 0.6));
}

.hmx-float-card-b {
  top: 29%;
  right: 4%;
  width: 11.8rem;
  animation: hmx-card-b 11s ease-in-out infinite;
}

.hmx-mini-route-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.hmx-mini-route-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.4rem;
  align-items: center;
  min-height: 1.75rem;
  padding: 0 0.1rem;
}

.hmx-mini-route-index {
  color: #6f8197;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  font-variation-settings: "wght" 650;
}

.hmx-mini-route-name {
  color: #1e3148;
  font-size: 0.82rem;
  font-weight: 700;
}

.hmx-mini-route-dot {
  width: 0.33rem;
  height: 0.33rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
}

.hmx-float-card-c {
  bottom: 10.5%;
  left: 9%;
  width: 15.2rem;
  animation: hmx-card-c 12s ease-in-out infinite;
}

.hmx-mini-pulse-list {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.4rem;
}

.hmx-mini-pulse-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(17, 26, 45, 0.05);
  background: rgba(255, 255, 255, 0.56);
}

.hmx-mini-pulse-day {
  margin: 0;
  color: #203349;
  font-size: 0.77rem;
  font-weight: 700;
}

.hmx-mini-pulse-event {
  margin: 0.15rem 0 0;
  color: #617289;
  font-size: 0.74rem;
  line-height: 1.2;
}

.hmx-mini-pulse-time {
  color: #0d8e8b;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.8rem;
  font-variation-settings: "wght" 650;
}

.hmx-anchor {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(17, 26, 45, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  opacity: 0.9;
}

.hmx-anchor::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(17, 26, 45, 0.07);
}

.hmx-anchor-a {
  top: 13%;
  left: 42%;
}

.hmx-anchor-b {
  top: 24%;
  left: 69%;
}

.hmx-anchor-c {
  top: 57%;
  left: 25%;
}

.hmx-anchor-d {
  top: 62%;
  left: 74%;
}

.hmx-anchor-e {
  bottom: 14%;
  left: 45%;
}

.hmx-anchor-f {
  bottom: 22%;
  right: 14%;
}

.hmx-lower {
  position: relative;
  z-index: 1;
  margin-top: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.hmx-marquee {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.hmx-marquee::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 2;
}

.hmx-marquee::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 6rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 2;
}

.hmx-marquee-track {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  padding: 0.65rem 0.8rem;
  animation: hmx-marquee 24s linear infinite;
}

.hmx-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.8rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.05);
  background: rgba(255, 255, 255, 0.75);
  color: #4f637b;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.hmx-marquee-dot {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  flex-shrink: 0;
}

.hmx-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hmx-route-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "index name arrow"
    "index desc arrow";
  gap: 0.15rem 0.55rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(17, 26, 45, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
  overflow: hidden;
}

.hmx-route-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.18),
    rgba(255, 79, 183, 0.14),
    transparent 86%
  );
}

.hmx-route-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -70% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.08), transparent 70%);
  pointer-events: none;
}

.hmx-route-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 234, 215, 0.16);
  box-shadow:
    0 16px 28px rgba(17, 26, 45, 0.05),
    0 3px 8px rgba(17, 26, 45, 0.03);
}

.hmx-route-card:focus-visible {
  outline: 2px solid rgba(56, 234, 215, 0.35);
  outline-offset: 2px;
}

.hmx-route-index {
  grid-area: index;
  align-self: start;
  color: #6f8198;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variation-settings: "wght" 680;
  padding-top: 0.05rem;
}

.hmx-route-name {
  grid-area: name;
  color: #132136;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-variation-settings: "wght" 620;
}

.hmx-route-desc {
  grid-area: desc;
  color: #5e7087;
  font-size: 0.8rem;
  line-height: 1.25;
}

.hmx-route-arrow {
  grid-area: arrow;
  color: #5f728b;
  font-size: 1rem;
  align-self: center;
}

.hmx-event-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hmx-lane-item {
  position: relative;
  padding: 0.8rem 0.85rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.hmx-lane-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.15),
    rgba(255, 79, 183, 0.12),
    transparent 80%
  );
}

.hmx-lane-item::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.24),
    rgba(255, 79, 183, 0.2),
    transparent 75%
  );
  opacity: 0;
  transition: opacity 160ms ease;
}

.hmx-lane-item:hover::after {
  opacity: 1;
}

.hmx-lane-date {
  margin: 0;
  color: #0f9994;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hmx-lane-item h3 {
  margin: 0.4rem 0 0;
  color: #111f33;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 0.98rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "wght" 620;
}

.hmx-lane-item p:last-child {
  margin: 0.35rem 0 0;
  color: #5d7087;
  font-size: 0.82rem;
  line-height: 1.3;
}

/* Fine interactions */
.hmx-shell:hover .hmx-stage-radar-b {
  border-color: rgba(56, 234, 215, 0.16);
}

.hmx-shell:hover .hmx-stage-radar-c {
  border-color: rgba(255, 79, 183, 0.14);
}

.hmx-shell:hover .hmx-core-shell {
  box-shadow:
    0 22px 42px rgba(17, 26, 45, 0.12),
    0 0 0 14px rgba(255, 255, 255, 0.3),
    inset 0 -8px 18px rgba(17, 26, 45, 0.06);
}

.hmx-shell:hover .hmx-marquee-track {
  animation-duration: 18s;
}

.hmx-shell:hover .hmx-stage-beam-a,
.hmx-shell:hover .hmx-stage-beam-b,
.hmx-shell:hover .hmx-stage-beam-c {
  opacity: 0.88;
}

.hmx-route-card:hover .hmx-route-arrow {
  color: #234761;
  transform: translateX(2px);
  transition: transform 160ms ease, color 160ms ease;
}

.hmx-lane-item:hover {
  border-color: rgba(56, 234, 215, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

/* Animation keyframes */
@keyframes hmx-drift-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2.2rem, 1.2rem, 0) scale(1.05);
  }
}

@keyframes hmx-drift-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-1.7rem, 1.4rem, 0) scale(1.04);
  }
}

@keyframes hmx-drift-c {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1rem, -1rem, 0) scale(1.08);
  }
}

@keyframes hmx-scan {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}

@keyframes hmx-pulse-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 4px rgba(56, 234, 215, 0.07),
      0 0 18px rgba(255, 79, 183, 0.14);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 6px rgba(56, 234, 215, 0.06),
      0 0 22px rgba(255, 79, 183, 0.18);
  }
}

@keyframes hmx-core-pulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  30% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes hmx-floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes hmx-card-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.25rem, -0.3rem, 0);
  }
}

@keyframes hmx-card-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-0.2rem, -0.35rem, 0);
  }
}

@keyframes hmx-card-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.15rem, -0.25rem, 0);
  }
}

@keyframes hmx-beam-a {
  0%,
  100% {
    opacity: 0.5;
    transform: rotate(14deg) translateX(0);
  }
  50% {
    opacity: 0.84;
    transform: rotate(14deg) translateX(0.4rem);
  }
}

@keyframes hmx-beam-b {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(-16deg) translateX(0);
  }
  50% {
    opacity: 0.78;
    transform: rotate(-16deg) translateX(-0.35rem);
  }
}

@keyframes hmx-beam-c {
  0%,
  100% {
    opacity: 0.35;
    transform: rotate(-8deg) translateX(0);
  }
  50% {
    opacity: 0.6;
    transform: rotate(-8deg) translateX(0.3rem);
  }
}

@keyframes hmx-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Layout tuning for larger screens */
@media (min-width: 1320px) {
  .hm-hero--maximal .hmx-shell {
    padding: 1.3rem;
  }

  .hm-hero--maximal .hmx-grid {
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .hmx-stage {
    min-height: 34.5rem;
  }

  .hmx-float-card-a {
    width: 15rem;
  }

  .hmx-float-card-c {
    width: 16.2rem;
  }
}

@media (max-width: 1240px) {
  .hmx-title-line {
    font-size: clamp(2.75rem, 7vw, 5.3rem);
  }

  .hmx-signal-grid {
    grid-template-columns: 1fr;
  }

  .hmx-stage {
    min-height: 31.5rem;
  }

  .hmx-float-card-a {
    width: 13.2rem;
  }

  .hmx-float-card-b {
    width: 10.9rem;
  }

  .hmx-float-card-c {
    width: 14.2rem;
  }
}

@media (max-width: 1120px) {
  .hm-hero--maximal .hmx-shell {
    padding: 1rem;
    border-radius: 26px;
  }

  .hm-hero--maximal .hmx-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.95rem;
  }

  .hmx-copy-col {
    padding: 0.1rem 0.1rem 0.15rem;
  }

  .hmx-title {
    max-width: none;
  }

  .hmx-title::after {
    width: 6.4rem;
  }

  .hmx-stage-col::before {
    border-radius: 22px;
  }

  .hmx-stage {
    min-height: 29rem;
    border-radius: 22px;
  }

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

  .hmx-event-lane {
    grid-template-columns: 1fr;
  }

  .hmx-lane-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem 0.75rem;
    align-items: start;
  }

  .hmx-lane-date {
    margin-top: 0.22rem;
  }

  .hmx-lane-item h3 {
    margin: 0;
  }

  .hmx-lane-item p:last-child {
    grid-column: 2;
    margin-top: 0.22rem;
  }
}

@media (max-width: 980px) {
  .hm-hero--maximal {
    padding-top: 0.1rem;
  }

  .hm-hero--maximal .hmx-shell {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .hmx-bg-grid {
    background-size: 20px 20px;
    opacity: 0.24;
  }

  .hmx-kicker-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hmx-status {
    min-height: 1.8rem;
  }

  .hmx-title-line {
    font-size: clamp(2.45rem, 10vw, 4.25rem);
    line-height: 0.9;
  }

  .hmx-title-support {
    margin-top: 1.2rem;
  }

  .hmx-sub {
    font-size: 0.95rem;
    max-width: 52ch;
  }

  .hmx-actions {
    margin-top: 0.85rem;
  }

  .hmx-inline-meta {
    gap: 0.5rem;
  }

  .hmx-signal-grid {
    gap: 0.55rem;
  }

  .hmx-stage {
    min-height: 27rem;
    padding: 0.75rem;
  }

  .hmx-stage-radar-c {
    width: 21.5rem;
    height: 21.5rem;
  }

  .hmx-core {
    width: 16.8rem;
  }

  .hmx-core-shell {
    width: 7.8rem;
    height: 7.8rem;
  }

  .hmx-core-copy {
    padding: 0.5rem 0.7rem;
  }

  .hmx-orbit-node {
    min-width: 7.5rem;
    padding: 0.48rem 0.55rem;
  }

  .hmx-orbit-node small {
    font-size: 0.7rem;
  }

  .hmx-float-card {
    padding: 0.7rem;
    border-radius: 15px;
  }

  .hmx-float-card h2 {
    font-size: 0.9rem;
  }

  .hmx-float-card p {
    font-size: 0.77rem;
  }

  .hmx-float-card-a {
    top: 35%;
    left: 2.5%;
    width: 12.2rem;
  }

  .hmx-float-card-b {
    top: 28%;
    right: 2.5%;
    width: 10.2rem;
  }

  .hmx-float-card-c {
    bottom: 9%;
    left: 6%;
    width: 13rem;
  }

  .hmx-route-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hmx-route-card {
    padding: 0.8rem;
  }

  .hmx-marquee-track {
    animation-duration: 20s;
  }
}

@media (max-width: 760px) {
  .hm-hero--maximal .hmx-shell {
    padding: 0.75rem;
    border-radius: 18px;
  }

  .hm-hero--maximal .hmx-shell::after {
    display: none;
  }

  .hmx-topline {
    gap: 0.45rem;
  }

  .hmx-pill {
    min-height: 1.7rem;
    padding: 0 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .hmx-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hmx-title {
    margin-top: 0.75rem;
  }

  .hmx-title::after {
    width: 4.9rem;
    bottom: -0.75rem;
  }

  .hmx-title-line {
    font-size: clamp(2rem, 12vw, 3.15rem);
    letter-spacing: -0.04em;
  }

  .hmx-title-line-accent::before {
    width: 0.28rem;
    height: 0.28rem;
    inset: 50% auto auto -0.45rem;
  }

  .hmx-title-support {
    margin-top: 1rem;
    gap: 0.35rem;
  }

  .hmx-lead {
    font-size: 0.98rem;
  }

  .hmx-sub {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hmx-actions {
    width: 100%;
    gap: 0.5rem;
  }

  .hmx-actions .button {
    width: 100%;
  }

  .hmx-inline-meta {
    margin-top: 0.8rem;
    gap: 0.45rem;
  }

  .hmx-inline-meta-item {
    min-height: 1.7rem;
    font-size: 0.75rem;
    padding: 0 0.55rem 0 0.72rem;
  }

  .hmx-inline-meta-item::before {
    left: 0.35rem;
    width: 0.24rem;
    height: 0.24rem;
  }

  .hmx-signal-card {
    padding: 0.65rem 0.7rem;
    border-radius: 14px;
  }

  .hmx-signal-value {
    font-size: 0.9rem;
  }

  .hmx-signal-text {
    font-size: 0.78rem;
  }

  .hmx-stage-col {
    margin-top: 0.15rem;
  }

  .hmx-stage-col::before {
    display: none;
  }

  .hmx-stage {
    min-height: 23.75rem;
    border-radius: 18px;
    padding: 0.65rem;
  }

  .hmx-stage-gridlines {
    background-size: 18px 18px;
  }

  .hmx-stage-radar-a {
    width: 9.8rem;
    height: 9.8rem;
  }

  .hmx-stage-radar-b {
    width: 14rem;
    height: 14rem;
  }

  .hmx-stage-radar-c {
    width: 18rem;
    height: 18rem;
  }

  .hmx-stage-path-a,
  .hmx-stage-path-b,
  .hmx-stage-path-c {
    display: none;
  }

  .hmx-stage-beam-a {
    top: 20%;
    width: 60%;
  }

  .hmx-stage-beam-b {
    top: 60%;
    width: 58%;
  }

  .hmx-stage-beam-c {
    display: none;
  }

  .hmx-core {
    width: 13.6rem;
    gap: 0.45rem;
  }

  .hmx-core-shell {
    width: 6.35rem;
    height: 6.35rem;
    box-shadow:
      0 14px 24px rgba(17, 26, 45, 0.1),
      0 0 0 10px rgba(255, 255, 255, 0.28),
      inset 0 -6px 14px rgba(17, 26, 45, 0.06);
  }

  .hmx-core-copy {
    gap: 0.12rem;
    border-radius: 12px;
    padding: 0.4rem 0.55rem;
  }

  .hmx-core-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .hmx-core-title {
    font-size: 0.82rem;
  }

  .hmx-core-sub {
    font-size: 0.67rem;
  }

  .hmx-orbit-node {
    min-width: 0;
    width: auto;
    gap: 0.1rem;
    padding: 0.4rem 0.45rem;
    border-radius: 12px;
  }

  .hmx-orbit-node::before,
  .hmx-orbit-node::after {
    display: none;
  }

  .hmx-orbit-node-chip {
    min-height: 1.3rem;
    padding: 0 0.4rem;
    font-size: 0.72rem;
  }

  .hmx-orbit-node small {
    font-size: 0.63rem;
  }

  .hmx-orbit-node-a {
    top: 4%;
    left: 3%;
  }

  .hmx-orbit-node-b {
    top: 6%;
    right: 3%;
  }

  .hmx-orbit-node-c {
    bottom: 5%;
    right: 4%;
  }

  .hmx-orbit-node-d {
    bottom: 7%;
    left: 4%;
  }

  .hmx-float-card {
    border-radius: 12px;
    padding: 0.55rem;
  }

  .hmx-float-head {
    gap: 0.35rem;
  }

  .hmx-float-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hmx-float-chip {
    min-height: 1.2rem;
    font-size: 0.64rem;
    padding: 0 0.35rem;
  }

  .hmx-float-card h2 {
    font-size: 0.8rem;
  }

  .hmx-float-card p {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .hmx-float-card-a {
    top: 31%;
    left: 2.5%;
    width: 9.4rem;
  }

  .hmx-float-progress {
    height: 0.35rem;
    margin-top: 0.45rem;
  }

  .hmx-float-card-b {
    top: 28%;
    right: 2.5%;
    width: 8.4rem;
  }

  .hmx-mini-route-list {
    margin-top: 0.35rem;
    gap: 0.22rem;
  }

  .hmx-mini-route-list li {
    min-height: 1.45rem;
    gap: 0.25rem;
  }

  .hmx-mini-route-index {
    font-size: 0.65rem;
  }

  .hmx-mini-route-name {
    font-size: 0.72rem;
  }

  .hmx-mini-route-dot {
    width: 0.26rem;
    height: 0.26rem;
  }

  .hmx-float-card-c {
    bottom: 27%;
    left: 50%;
    width: 10rem;
    transform: translateX(-50%);
    animation: none;
  }

  .hmx-mini-pulse-list {
    gap: 0.25rem;
    margin-top: 0.3rem;
  }

  .hmx-mini-pulse-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.35rem 0.4rem;
    border-radius: 10px;
  }

  .hmx-mini-pulse-day {
    font-size: 0.68rem;
  }

  .hmx-mini-pulse-event {
    font-size: 0.65rem;
  }

  .hmx-mini-pulse-time {
    font-size: 0.68rem;
  }

  .hmx-anchor {
    display: none;
  }

  .hmx-lower {
    margin-top: 0.8rem;
    gap: 0.55rem;
  }

  .hmx-marquee {
    border-radius: 12px;
  }

  .hmx-marquee::before,
  .hmx-marquee::after {
    width: 2.5rem;
  }

  .hmx-marquee-track {
    gap: 0.45rem;
    padding: 0.5rem 0.55rem;
    animation-duration: 16s;
  }

  .hmx-marquee-item {
    min-height: 1.55rem;
    padding: 0 0.5rem;
    font-size: 0.72rem;
  }

  .hmx-route-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "index name"
      "desc desc";
    padding: 0.7rem 0.75rem;
    gap: 0.2rem 0.5rem;
    border-radius: 12px;
  }

  .hmx-route-arrow {
    display: none;
  }

  .hmx-route-index {
    font-size: 0.76rem;
    align-self: center;
  }

  .hmx-route-name {
    font-size: 0.84rem;
  }

  .hmx-route-desc {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hmx-event-lane {
    gap: 0.45rem;
  }

  .hmx-lane-item {
    display: block;
    padding: 0.65rem 0.7rem 0.7rem;
    border-radius: 12px;
  }

  .hmx-lane-date {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hmx-lane-item h3 {
    margin-top: 0.32rem;
    font-size: 0.86rem;
  }

  .hmx-lane-item p:last-child {
    margin-top: 0.24rem;
    font-size: 0.72rem;
    line-height: 1.2;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hm-hero--maximal .hmx-shell {
    padding: 0.65rem;
    border-radius: 16px;
  }

  .hmx-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hmx-kicker-row {
    margin-top: 0.55rem;
    gap: 0.45rem;
  }

  .hmx-title {
    margin-top: 0.62rem;
  }

  .hmx-title-line {
    font-size: clamp(1.85rem, 13vw, 2.6rem);
  }

  .hmx-title-support {
    margin-top: 0.85rem;
  }

  .hmx-actions {
    margin-top: 0.7rem;
  }

  .hmx-inline-meta {
    margin-top: 0.65rem;
  }

  .hmx-stage {
    min-height: 21.5rem;
    padding: 0.55rem;
  }

  .hmx-core {
    width: 11.4rem;
  }

  .hmx-core-shell {
    width: 5.5rem;
    height: 5.5rem;
  }

  .hmx-core-ring-a {
    inset: 0.55rem;
  }

  .hmx-core-ring-b {
    inset: 1.2rem;
  }

  .hmx-orbit-node {
    max-width: 6.7rem;
  }

  .hmx-orbit-node small {
    display: none;
  }

  .hmx-float-card-a {
    width: 8rem;
    top: 30%;
  }

  .hmx-float-card-b {
    width: 7rem;
    top: 24%;
  }

  .hmx-float-card-c {
    width: 9rem;
    bottom: 28%;
  }

  .hmx-float-card-a p,
  .hmx-float-card-c p {
    display: none;
  }

  .hmx-float-progress,
  .hmx-mini-pulse-list {
    display: none;
  }

  .hmx-mini-route-list li {
    min-height: 1.2rem;
  }

  .hmx-mini-route-dot {
    display: none;
  }

  .hmx-status {
    font-size: 0.72rem;
    padding-inline: 0.6rem;
  }

  .hmx-marquee-track {
    animation-duration: 14s;
  }

  .hmx-marquee-item {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmx-bg-glow-a,
  .hmx-bg-glow-b,
  .hmx-bg-glow-c,
  .hmx-bg-scan,
  .hmx-status-dot,
  .hmx-core-pulse,
  .hmx-orbit-node,
  .hmx-float-card-a,
  .hmx-float-card-b,
  .hmx-float-card-c,
  .hmx-stage-beam-a,
  .hmx-stage-beam-b,
  .hmx-stage-beam-c,
  .hmx-marquee-track {
    animation: none !important;
  }

  .hmx-route-card,
  .hmx-route-arrow {
    transition: none !important;
  }
}

/* Home Header Reset v5 (clean + motion + functions) */
.hm-hero--kinetic {
  padding-top: 0.3rem;
}

.hmk-shell {
  --mx: 50%;
  --my: 50%;
  --dx: 0px;
  --dy: 0px;
  --dx-soft: 0px;
  --dy-soft: 0px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 26, 45, 0.07);
  box-shadow:
    0 22px 48px rgba(17, 26, 45, 0.06),
    0 4px 12px rgba(17, 26, 45, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  padding: 1.05rem;
  isolation: isolate;
}

.hmk-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 234, 215, 0.06), transparent 40%),
    radial-gradient(circle at 90% 12%, rgba(255, 79, 183, 0.05), transparent 44%);
  pointer-events: none;
  z-index: 0;
}

.hmk-shell.is-interactive {
  box-shadow:
    0 24px 56px rgba(17, 26, 45, 0.07),
    0 4px 12px rgba(17, 26, 45, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hmk-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hmk-layer-base {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 250, 254, 0.58));
}

.hmk-layer-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 55% 36%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.45) 82%);
}

.hmk-layer-glow {
  filter: blur(16px);
  opacity: 0.75;
}

.hmk-layer-glow-a {
  inset: -4rem auto auto -4rem;
  width: 22rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.16), transparent 72%);
  transform: translate3d(var(--dx-soft), var(--dy-soft), 0);
  animation: hmk-glow-a 14s ease-in-out infinite alternate;
}

.hmk-layer-glow-b {
  inset: auto -4rem -5rem auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.12), transparent 72%);
  transform: translate3d(calc(var(--dx-soft) * -1), calc(var(--dy-soft) * -1), 0);
  animation: hmk-glow-b 18s ease-in-out infinite alternate;
}

.hmk-layer-focus {
  opacity: 0.85;
  background:
    radial-gradient(
      22rem 22rem at var(--mx) var(--my),
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.24) 45%,
      transparent 68%
    ),
    radial-gradient(
      16rem 16rem at calc(var(--mx) + 2%) calc(var(--my) - 2%),
      rgba(56, 234, 215, 0.08),
      transparent 65%
    );
  transform: translate3d(var(--dx-soft), var(--dy-soft), 0);
}

.hmk-layer-noise {
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(17, 26, 45, 0.5) 0.5px, transparent 0.7px),
    radial-gradient(circle at 80% 60%, rgba(17, 26, 45, 0.35) 0.4px, transparent 0.7px);
  background-size: 14px 14px, 17px 17px;
}

.hmk-frame-line {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(17, 26, 45, 0.04),
    rgba(56, 234, 215, 0.2),
    rgba(255, 79, 183, 0.16),
    rgba(17, 26, 45, 0.04)
  );
  pointer-events: none;
  z-index: 1;
}

.hmk-frame-line-top {
  top: 0.9rem;
}

.hmk-frame-line-bottom {
  bottom: 5rem;
  opacity: 0.55;
}

.hmk-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.1rem;
  align-items: center;
  min-height: 32rem;
}

.hmk-copy {
  position: relative;
  min-width: 0;
  padding: 0.2rem 0.25rem 0.35rem 0.1rem;
  display: grid;
}

.hmk-copy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hmk-eyebrow {
  margin: 0;
  color: #6d8097;
  letter-spacing: 0.14em;
}

.hmk-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.9rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background: rgba(255, 255, 255, 0.75);
  color: #4e627b;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(17, 26, 45, 0.03);
}

.hmk-live-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 234, 215, 0.95), rgba(255, 79, 183, 0.8));
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.06);
  animation: hmk-live-dot 2.2s ease-in-out infinite;
}

.hmk-title {
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.06rem;
  line-height: 0.9;
}

.hmk-title span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.6vw, 6.3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #0f182a;
  text-wrap: balance;
  font-variation-settings: "wght" 720;
  transform: translate3d(calc(var(--dx-soft) * 0.15), calc(var(--dy-soft) * 0.15), 0);
  transition: transform 220ms ease;
}

.hmk-title span:last-child {
  color: #162338;
  text-shadow: 0 10px 20px rgba(17, 26, 45, 0.05);
}

.hmk-strap {
  margin: 1.05rem 0 0;
  font-family: var(--font-display);
  color: #22364d;
  font-size: clamp(1.02rem, 1.8vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-variation-settings: "wght" 560;
}

.hmk-sub {
  margin: 0.6rem 0 0;
  color: #5d7087;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 50ch;
}

.hmk-actions {
  margin-top: 1rem;
  gap: 0.55rem;
}

.hmk-actions .button {
  min-height: 2.65rem;
  padding-inline: 0.95rem;
}

.hmk-inline-links {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
}

.hmk-inline-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.95rem;
  padding: 0 0.7rem 0 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.56);
  color: #435970;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.hmk-inline-links a:hover {
  border-color: rgba(56, 234, 215, 0.18);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.hmk-inline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: linear-gradient(135deg, rgba(56, 234, 215, 0.1), rgba(255, 79, 183, 0.08));
  color: #334a63;
  font-size: 0.72rem;
  font-weight: 800;
}

.hmk-statline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 0.9rem;
  align-items: center;
}

.hmk-statline-item {
  position: relative;
  display: grid;
  gap: 0.1rem;
  padding-left: 0.95rem;
}

.hmk-statline-item::before {
  content: "";
  position: absolute;
  inset: 0.2rem auto 0.2rem 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(56, 234, 215, 0.22),
    rgba(255, 79, 183, 0.16),
    rgba(17, 26, 45, 0.04)
  );
}

.hmk-statline-value {
  font-family: var(--font-display);
  color: #152338;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-variation-settings: "wght" 700;
}

.hmk-statline-label {
  color: #61738a;
  font-size: 0.78rem;
}

.hmk-visual {
  position: relative;
  min-height: 28.5rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background:
    radial-gradient(circle at 20% 26%, rgba(56, 234, 215, 0.09), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(255, 79, 183, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 30px rgba(17, 26, 45, 0.04);
}

.hmk-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      12rem 12rem at calc(var(--mx) + 2%) calc(var(--my) + 1%),
      rgba(255, 255, 255, 0.75),
      transparent 68%
    );
  pointer-events: none;
  opacity: 0.9;
}

.hmk-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 250, 253, 0.95));
  pointer-events: none;
}

.hmk-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  transform: translate3d(calc(var(--dx-soft) * -0.35), calc(var(--dy-soft) * -0.35), 0);
}

.hmk-visual-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hmk-visual-orbit-a {
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(17, 26, 45, 0.08);
  animation: hmk-orbit-spin-a 16s linear infinite;
}

.hmk-visual-orbit-b {
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(56, 234, 215, 0.12);
  animation: hmk-orbit-spin-b 24s linear infinite reverse;
}

.hmk-visual-orbit-c {
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(255, 79, 183, 0.11);
  animation: hmk-orbit-spin-a 34s linear infinite;
}

.hmk-visual-orbit::before {
  content: "";
  position: absolute;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  inset: -0.18rem auto auto 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.05);
}

.hmk-visual-sweep {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      rgba(56, 234, 215, 0) 0deg,
      rgba(56, 234, 215, 0.12) 25deg,
      rgba(255, 79, 183, 0.1) 55deg,
      rgba(255, 79, 183, 0) 90deg,
      rgba(255, 255, 255, 0) 360deg
    );
  filter: blur(1px);
  opacity: 0.7;
  animation: hmk-sweep-spin 12s linear infinite;
  pointer-events: none;
}

.hmk-visual-line {
  position: absolute;
  height: 1px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.65;
}

.hmk-visual-line-a {
  top: 22%;
  left: -6%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(56, 234, 215, 0.35), rgba(56, 234, 215, 0));
  transform: rotate(12deg) translate3d(calc(var(--dx-soft) * 0.2), calc(var(--dy-soft) * -0.2), 0);
  animation: hmk-line-shift-a 8s ease-in-out infinite;
}

.hmk-visual-line-b {
  top: 58%;
  right: -6%;
  width: 58%;
  background: linear-gradient(90deg, rgba(255, 79, 183, 0), rgba(255, 79, 183, 0.35), transparent);
  transform: rotate(-14deg) translate3d(calc(var(--dx-soft) * -0.2), calc(var(--dy-soft) * 0.2), 0);
  animation: hmk-line-shift-b 9.5s ease-in-out infinite;
}

.hmk-visual-line-c {
  bottom: 18%;
  left: 12%;
  width: 38%;
  background: linear-gradient(90deg, rgba(120, 198, 255, 0), rgba(120, 198, 255, 0.3), transparent);
  transform: rotate(-8deg);
  animation: hmk-line-shift-c 11s ease-in-out infinite;
}

.hmk-visual-path {
  position: absolute;
  border: 1px dashed rgba(17, 26, 45, 0.07);
  border-radius: 999px;
  opacity: 0.7;
  pointer-events: none;
}

.hmk-visual-path-a {
  width: 11rem;
  height: 4.2rem;
  top: 20%;
  right: 13%;
  transform: rotate(14deg);
}

.hmk-visual-path-b {
  width: 10rem;
  height: 3.8rem;
  bottom: 22%;
  left: 14%;
  transform: rotate(-12deg);
  border-color: rgba(56, 234, 215, 0.09);
}

.hmk-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9.2rem;
  height: 9.2rem;
  transform: translate(calc(-50% + (var(--dx) * 0.15)), calc(-50% + (var(--dy) * 0.15)));
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hmk-core-ring {
  position: absolute;
  border-radius: 50%;
  inset: 0;
  border: 1px solid rgba(17, 26, 45, 0.08);
}

.hmk-core-ring-a {
  animation: hmk-core-ring-a 14s linear infinite;
}

.hmk-core-ring-b {
  inset: 0.9rem;
  border-color: rgba(56, 234, 215, 0.16);
  animation: hmk-core-ring-b 10s linear infinite reverse;
}

.hmk-core-ring-c {
  inset: 1.8rem;
  border-color: rgba(255, 79, 183, 0.16);
  animation: hmk-core-ring-a 7s linear infinite;
}

.hmk-core-glow {
  position: absolute;
  inset: 0.85rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(135deg, rgba(56, 234, 215, 0.86), rgba(255, 79, 183, 0.68));
  box-shadow:
    0 12px 26px rgba(17, 26, 45, 0.08),
    0 0 0 8px rgba(255, 255, 255, 0.22);
}

.hmk-core-dot {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.2),
    0 0 18px rgba(255, 255, 255, 0.45);
  animation: hmk-core-dot 2.8s ease-in-out infinite;
}

.hmk-core-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(17, 26, 45, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hmk-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.07);
  background: rgba(255, 255, 255, 0.78);
  color: #31465e;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(17, 26, 45, 0.04);
  z-index: 3;
  animation: hmk-node-float 8s ease-in-out infinite;
}

.hmk-node::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  margin-right: 0.45rem;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.05);
}

.hmk-node-a {
  top: 14%;
  left: 9%;
  animation-delay: -0.5s;
}

.hmk-node-b {
  top: 18%;
  right: 10%;
  animation-delay: -1.9s;
}

.hmk-node-c {
  bottom: 19%;
  right: 8%;
  animation-delay: -3.2s;
}

.hmk-node-d {
  bottom: 20%;
  left: 11%;
  animation-delay: -4.6s;
}

.hmk-node-trace {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(17, 26, 45, 0.14);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
  z-index: 1;
  opacity: 0.85;
}

.hmk-node-trace::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.2rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(17, 26, 45, 0.12),
    rgba(17, 26, 45, 0.02)
  );
  transform-origin: left center;
}

.hmk-node-trace-a {
  top: 27%;
  left: 33%;
}

.hmk-node-trace-a::before {
  transform: rotate(18deg);
}

.hmk-node-trace-b {
  top: 35%;
  right: 28%;
}

.hmk-node-trace-b::before {
  transform: rotate(-24deg);
}

.hmk-node-trace-c {
  bottom: 28%;
  right: 34%;
}

.hmk-node-trace-c::before {
  transform: rotate(205deg);
}

.hmk-node-trace-d {
  bottom: 31%;
  left: 29%;
}

.hmk-node-trace-d::before {
  transform: rotate(158deg);
}

.hmk-bottom-pulse {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.65rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.hmk-bottom-pulse-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 1.9rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.05);
  background: rgba(255, 255, 255, 0.66);
  color: #52667e;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(17, 26, 45, 0.03);
}

.hmk-bottom-pulse-item span:last-child {
  color: #118e8a;
  font-family: var(--font-display);
  font-variation-settings: "wght" 650;
}

.hmk-footer {
  position: relative;
  z-index: 2;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 26, 45, 0.06);
  display: grid;
  gap: 0.65rem;
}

.hmk-ticker {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  background: rgba(255, 255, 255, 0.62);
}

.hmk-ticker::before,
.hmk-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.hmk-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.hmk-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.hmk-ticker-track {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  padding: 0.55rem 0.7rem;
  animation: hmk-ticker-scroll 22s linear infinite;
}

.hmk-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.7rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.05);
  background: rgba(255, 255, 255, 0.74);
  color: #51657d;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.hmk-ticker-dot {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  flex-shrink: 0;
}

.hmk-mini-events {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  align-items: center;
  min-height: 1.8rem;
}

.hmk-mini-event {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #556880;
  font-size: 0.82rem;
  min-height: 1.7rem;
}

.hmk-mini-event::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 234, 215, 0.92), rgba(255, 79, 183, 0.82));
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.04);
  flex-shrink: 0;
}

.hmk-mini-event-date {
  color: #0e918c;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hmk-mini-event-title {
  color: #41566d;
  font-weight: 700;
}

/* Motion and interaction tuning */
.hmk-shell:hover .hmk-ticker-track {
  animation-duration: 18s;
}

.hmk-shell:hover .hmk-visual-sweep {
  opacity: 0.88;
}

.hmk-shell:hover .hmk-visual-line {
  opacity: 0.85;
}

.hmk-shell:hover .hmk-node {
  box-shadow: 0 14px 24px rgba(17, 26, 45, 0.05);
}

.hmk-shell.is-interactive .hmk-visual {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 32px rgba(17, 26, 45, 0.05);
}

.hmk-shell.is-interactive .hmk-core {
  transform: translate(calc(-50% + (var(--dx) * 0.22)), calc(-50% + (var(--dy) * 0.22)));
}

.hmk-shell.is-interactive .hmk-node-a {
  transform: translate(calc(var(--dx-soft) * -0.35), calc(var(--dy-soft) * -0.35));
}

.hmk-shell.is-interactive .hmk-node-b {
  transform: translate(calc(var(--dx-soft) * 0.35), calc(var(--dy-soft) * -0.25));
}

.hmk-shell.is-interactive .hmk-node-c {
  transform: translate(calc(var(--dx-soft) * 0.25), calc(var(--dy-soft) * 0.35));
}

.hmk-shell.is-interactive .hmk-node-d {
  transform: translate(calc(var(--dx-soft) * -0.25), calc(var(--dy-soft) * 0.25));
}

/* Animations */
@keyframes hmk-glow-a {
  0% {
    transform: translate3d(var(--dx-soft), var(--dy-soft), 0) scale(1);
  }
  100% {
    transform: translate3d(calc(var(--dx-soft) + 1.8rem), calc(var(--dy-soft) + 0.8rem), 0) scale(1.05);
  }
}

@keyframes hmk-glow-b {
  0% {
    transform: translate3d(calc(var(--dx-soft) * -1), calc(var(--dy-soft) * -1), 0) scale(1);
  }
  100% {
    transform: translate3d(calc(var(--dx-soft) * -1 - 1.2rem), calc(var(--dy-soft) * -1 + 1rem), 0) scale(1.08);
  }
}

@keyframes hmk-live-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.06);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(56, 234, 215, 0.05);
  }
}

@keyframes hmk-orbit-spin-a {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hmk-orbit-spin-b {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes hmk-sweep-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hmk-line-shift-a {
  0%,
  100% {
    transform: rotate(12deg) translateX(0);
  }
  50% {
    transform: rotate(12deg) translateX(0.4rem);
  }
}

@keyframes hmk-line-shift-b {
  0%,
  100% {
    transform: rotate(-14deg) translateX(0);
  }
  50% {
    transform: rotate(-14deg) translateX(-0.35rem);
  }
}

@keyframes hmk-line-shift-c {
  0%,
  100% {
    transform: rotate(-8deg) translateX(0);
  }
  50% {
    transform: rotate(-8deg) translateX(0.25rem);
  }
}

@keyframes hmk-core-ring-a {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hmk-core-ring-b {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes hmk-core-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.08);
  }
}

@keyframes hmk-node-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

@keyframes hmk-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (min-width: 1320px) {
  .hmk-shell {
    padding: 1.2rem;
  }

  .hmk-grid {
    min-height: 34rem;
    gap: 1.3rem;
  }

  .hmk-visual {
    min-height: 30rem;
  }

  .hmk-title span {
    font-size: clamp(3.2rem, 7.4vw, 6.7rem);
  }
}

@media (max-width: 1180px) {
  .hmk-grid {
    gap: 0.9rem;
  }

  .hmk-title span {
    font-size: clamp(2.8rem, 7vw, 5.3rem);
  }

  .hmk-sub {
    max-width: 46ch;
  }

  .hmk-statline {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    max-width: 15rem;
  }

  .hmk-statline-item {
    padding-left: 0.7rem;
  }

  .hmk-statline-item::before {
    inset: 0.15rem auto 0.15rem 0;
  }

  .hmk-visual {
    min-height: 27.5rem;
  }

  .hmk-node {
    font-size: 0.78rem;
  }

  .hmk-bottom-pulse {
    grid-template-columns: 1fr;
    left: 0.55rem;
    right: 0.55rem;
    gap: 0.3rem;
  }

  .hmk-bottom-pulse-item {
    min-height: 1.7rem;
    padding-inline: 0.55rem;
  }
}

@media (max-width: 980px) {
  .hm-hero--kinetic {
    padding-top: 0.1rem;
  }

  .hmk-shell {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .hmk-frame-line {
    left: 0.85rem;
    right: 0.85rem;
  }

  .hmk-frame-line-bottom {
    bottom: 4.2rem;
  }

  .hmk-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    min-height: 0;
  }

  .hmk-visual {
    order: -1;
    min-height: 23.5rem;
    border-radius: 20px;
  }

  .hmk-copy {
    padding: 0.05rem;
  }

  .hmk-copy-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .hmk-live-pill {
    min-height: 1.75rem;
    font-size: 0.72rem;
  }

  .hmk-title {
    margin-top: 0.7rem;
  }

  .hmk-title span {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  .hmk-strap {
    margin-top: 0.8rem;
    font-size: 1rem;
  }

  .hmk-sub {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hmk-actions {
    margin-top: 0.8rem;
  }

  .hmk-inline-links {
    margin-top: 0.8rem;
  }

  .hmk-statline {
    margin-top: 0.85rem;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hmk-statline-item {
    padding-left: 0.7rem;
  }

  .hmk-visual-grid {
    background-size: 18px 18px;
  }

  .hmk-visual-orbit-a {
    width: 8rem;
    height: 8rem;
  }

  .hmk-visual-orbit-b {
    width: 12rem;
    height: 12rem;
  }

  .hmk-visual-orbit-c {
    width: 16.5rem;
    height: 16.5rem;
  }

  .hmk-visual-sweep {
    width: 16.5rem;
    height: 16.5rem;
  }

  .hmk-core {
    width: 7.8rem;
    height: 7.8rem;
  }

  .hmk-core-label {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 0.9rem;
  }

  .hmk-node {
    min-height: 1.75rem;
    padding-inline: 0.55rem;
  }

  .hmk-node::before {
    margin-right: 0.35rem;
  }

  .hmk-node-a {
    top: 10%;
    left: 5%;
  }

  .hmk-node-b {
    top: 12%;
    right: 6%;
  }

  .hmk-node-c {
    bottom: 15%;
    right: 5%;
  }

  .hmk-node-d {
    bottom: 16%;
    left: 6%;
  }

  .hmk-node-trace {
    display: none;
  }

  .hmk-visual-path {
    opacity: 0.5;
  }

  .hmk-bottom-pulse {
    bottom: 0.55rem;
  }

  .hmk-footer {
    margin-top: 0.75rem;
    padding-top: 0.7rem;
  }

  .hmk-ticker::before,
  .hmk-ticker::after {
    width: 2.6rem;
  }

  .hmk-mini-events {
    gap: 0.3rem 0.55rem;
  }
}

@media (max-width: 760px) {
  .hmk-shell {
    padding: 0.75rem;
    border-radius: 18px;
  }

  .hmk-frame-line-top {
    top: 0.75rem;
  }

  .hmk-frame-line-bottom {
    bottom: 3.5rem;
  }

  .hmk-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hmk-title span {
    font-size: clamp(2rem, 13vw, 3.2rem);
    letter-spacing: -0.04em;
  }

  .hmk-strap {
    font-size: 0.9rem;
  }

  .hmk-sub {
    margin-top: 0.45rem;
    font-size: 0.86rem;
  }

  .hmk-actions {
    width: 100%;
    gap: 0.45rem;
  }

  .hmk-actions .button {
    width: 100%;
  }

  .hmk-inline-links {
    gap: 0.35rem 0.45rem;
  }

  .hmk-inline-links a {
    min-height: 1.7rem;
    font-size: 0.74rem;
    padding: 0 0.55rem 0 0.45rem;
  }

  .hmk-inline-index {
    width: 1.3rem;
    height: 1.3rem;
    font-size: 0.64rem;
  }

  .hmk-statline {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hmk-statline-item {
    padding-left: 0.6rem;
  }

  .hmk-statline-value {
    font-size: 0.95rem;
  }

  .hmk-statline-label {
    font-size: 0.74rem;
  }

  .hmk-visual {
    min-height: 18.8rem;
    border-radius: 16px;
  }

  .hmk-visual-grid {
    background-size: 16px 16px;
  }

  .hmk-visual-orbit-a {
    width: 6.4rem;
    height: 6.4rem;
  }

  .hmk-visual-orbit-b {
    width: 9.8rem;
    height: 9.8rem;
  }

  .hmk-visual-orbit-c {
    width: 13rem;
    height: 13rem;
  }

  .hmk-visual-sweep {
    width: 13rem;
    height: 13rem;
  }

  .hmk-visual-line-c,
  .hmk-visual-path {
    display: none;
  }

  .hmk-core {
    width: 6.1rem;
    height: 6.1rem;
  }

  .hmk-core-ring-b {
    inset: 0.65rem;
  }

  .hmk-core-ring-c {
    inset: 1.25rem;
  }

  .hmk-core-glow {
    inset: 0.55rem;
    box-shadow:
      0 10px 18px rgba(17, 26, 45, 0.08),
      0 0 0 6px rgba(255, 255, 255, 0.2);
  }

  .hmk-core-dot {
    width: 0.7rem;
    height: 0.7rem;
  }

  .hmk-core-label {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.74rem;
  }

  .hmk-node {
    min-height: 1.45rem;
    padding-inline: 0.45rem;
    font-size: 0.68rem;
    box-shadow: 0 6px 12px rgba(17, 26, 45, 0.03);
  }

  .hmk-node::before {
    width: 0.22rem;
    height: 0.22rem;
    margin-right: 0.25rem;
    box-shadow: 0 0 0 3px rgba(56, 234, 215, 0.05);
  }

  .hmk-node-a {
    top: 8%;
    left: 3%;
  }

  .hmk-node-b {
    top: 9%;
    right: 3%;
  }

  .hmk-node-c {
    bottom: 13%;
    right: 3%;
  }

  .hmk-node-d {
    bottom: 14%;
    left: 3%;
  }

  .hmk-bottom-pulse {
    display: none;
  }

  .hmk-footer {
    gap: 0.45rem;
  }

  .hmk-ticker {
    border-radius: 12px;
  }

  .hmk-ticker-track {
    padding: 0.45rem 0.5rem;
    gap: 0.4rem;
    animation-duration: 16s;
  }

  .hmk-ticker-item {
    min-height: 1.45rem;
    padding: 0 0.45rem;
    font-size: 0.7rem;
  }

  .hmk-mini-events {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .hmk-mini-event {
    min-height: 1.35rem;
    font-size: 0.74rem;
  }

  .hmk-mini-event-date {
    font-size: 0.66rem;
  }
}

@media (max-width: 560px) {
  .hmk-shell {
    padding: 0.65rem;
    border-radius: 16px;
  }

  .hmk-grid {
    gap: 0.65rem;
  }

  .hmk-copy-top {
    gap: 0.35rem;
  }

  .hmk-live-pill {
    min-height: 1.6rem;
    padding-inline: 0.55rem;
    font-size: 0.66rem;
  }

  .hmk-title {
    margin-top: 0.55rem;
  }

  .hmk-title span {
    font-size: clamp(1.8rem, 13vw, 2.6rem);
  }

  .hmk-strap {
    margin-top: 0.65rem;
    font-size: 0.82rem;
  }

  .hmk-sub {
    font-size: 0.8rem;
  }

  .hmk-actions {
    margin-top: 0.65rem;
  }

  .hmk-inline-links {
    margin-top: 0.65rem;
  }

  .hmk-inline-links a {
    min-height: 1.55rem;
    font-size: 0.68rem;
    padding-inline: 0.4rem 0.5rem;
  }

  .hmk-inline-index {
    width: 1.15rem;
    height: 1.15rem;
    font-size: 0.56rem;
  }

  .hmk-statline {
    margin-top: 0.7rem;
  }

  .hmk-visual {
    min-height: 16.2rem;
  }

  .hmk-visual-grid {
    opacity: 0.16;
    background-size: 14px 14px;
  }

  .hmk-visual-orbit-a {
    width: 5.4rem;
    height: 5.4rem;
  }

  .hmk-visual-orbit-b {
    width: 8.2rem;
    height: 8.2rem;
  }

  .hmk-visual-orbit-c {
    width: 10.8rem;
    height: 10.8rem;
  }

  .hmk-visual-sweep {
    width: 10.8rem;
    height: 10.8rem;
    opacity: 0.55;
  }

  .hmk-visual-line-b {
    width: 48%;
  }

  .hmk-core {
    width: 5.25rem;
    height: 5.25rem;
  }

  .hmk-core-ring-b {
    inset: 0.5rem;
  }

  .hmk-core-ring-c {
    inset: 1rem;
  }

  .hmk-core-glow {
    inset: 0.45rem;
  }

  .hmk-core-label {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.64rem;
  }

  .hmk-node {
    min-height: 1.25rem;
    padding-inline: 0.35rem;
    font-size: 0.58rem;
    border-radius: 999px;
  }

  .hmk-node::before {
    display: none;
  }

  .hmk-frame-line-bottom {
    bottom: 3rem;
  }

  .hmk-ticker-track {
    animation-duration: 14s;
  }

  .hmk-ticker-item {
    font-size: 0.66rem;
  }

  .hmk-mini-event {
    gap: 0.35rem;
    font-size: 0.68rem;
  }

  .hmk-mini-event::before {
    width: 0.28rem;
    height: 0.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmk-layer-glow-a,
  .hmk-layer-glow-b,
  .hmk-live-dot,
  .hmk-visual-orbit-a,
  .hmk-visual-orbit-b,
  .hmk-visual-orbit-c,
  .hmk-visual-sweep,
  .hmk-visual-line-a,
  .hmk-visual-line-b,
  .hmk-visual-line-c,
  .hmk-core-ring-a,
  .hmk-core-ring-b,
  .hmk-core-ring-c,
  .hmk-core-dot,
  .hmk-node,
  .hmk-ticker-track {
    animation: none !important;
  }

  .hmk-shell,
  .hmk-title span,
  .hmk-inline-links a,
  .hmk-actions .button {
    transition: none !important;
  }

  .hmk-shell {
    --mx: 50% !important;
    --my: 50% !important;
    --dx: 0px !important;
    --dy: 0px !important;
    --dx-soft: 0px !important;
    --dy-soft: 0px !important;
  }
}

/* Home Header v6 (refined motion / less boxes) */
.hm-hero--refined-motion {
  padding-top: 0.2rem;
}

.hmr-shell {
  --mx: 50%;
  --my: 50%;
  --dx: 0px;
  --dy: 0px;
  --dx-soft: 0px;
  --dy-soft: 0px;
  position: relative;
  padding: 0.35rem 0 0.2rem;
  border-radius: 0;
  isolation: isolate;
  overflow: visible;
}

.hmr-shell::before {
  content: "";
  position: absolute;
  inset: -6% -2% -8%;
  background:
    radial-gradient(circle at 8% 6%, rgba(56, 234, 215, 0.08), transparent 42%),
    radial-gradient(circle at 96% 10%, rgba(255, 79, 183, 0.06), transparent 44%),
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.42), transparent 58%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.hmr-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hmr-layer-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 52% 38%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.38) 84%);
}

.hmr-layer-glow {
  filter: blur(20px);
  opacity: 0.7;
}

.hmr-layer-glow-a {
  inset: -8% auto auto -8%;
  width: 20rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.16), transparent 72%);
  transform: translate3d(var(--dx-soft), var(--dy-soft), 0);
  animation: hmr-drift-a 16s ease-in-out infinite alternate;
}

.hmr-layer-glow-b {
  inset: auto -10% -18% auto;
  width: 22rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.13), transparent 72%);
  transform: translate3d(calc(var(--dx-soft) * -1), calc(var(--dy-soft) * -1), 0);
  animation: hmr-drift-b 20s ease-in-out infinite alternate;
}

.hmr-layer-spot {
  background:
    radial-gradient(
      20rem 20rem at var(--mx) var(--my),
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.25) 42%,
      transparent 72%
    );
  transform: translate3d(var(--dx-soft), var(--dy-soft), 0);
  opacity: 0.9;
}

.hmr-layer-noise {
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(17, 26, 45, 0.8) 0.4px, transparent 0.8px),
    radial-gradient(circle at 70% 65%, rgba(17, 26, 45, 0.6) 0.35px, transparent 0.7px);
  background-size: 13px 13px, 17px 17px;
}

.hmr-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(17, 26, 45, 0.08),
    rgba(56, 234, 215, 0.18),
    rgba(255, 79, 183, 0.14),
    rgba(17, 26, 45, 0.08),
    transparent
  );
  pointer-events: none;
  z-index: 1;
  display: none;
}

.hmr-line-top {
  top: 0.25rem;
  opacity: 0.65;
}

.hmr-line-bottom {
  bottom: 0.2rem;
  opacity: 0.45;
}

.hmr-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.8rem;
  align-items: center;
  min-height: 27rem;
}

.hmr-copy {
  min-width: 0;
  padding: 0.45rem 0.35rem 0.35rem 0;
}

.hmr-copy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hmr-eyebrow {
  color: #6c8098;
  letter-spacing: 0.14em;
}

.hmr-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #61758c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hmr-live-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.05);
  animation: hmr-live-pulse 2.1s ease-in-out infinite;
}

.hmr-title {
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.05rem;
  line-height: 0.9;
}

.hmr-title-main,
.hmr-title-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 720;
  letter-spacing: -0.055em;
  color: #111a2c;
  text-wrap: balance;
  font-variation-settings: "wght" 720;
  transform: translate3d(calc(var(--dx-soft) * 0.15), calc(var(--dy-soft) * 0.15), 0);
}

.hmr-title-main {
  font-size: clamp(3rem, 7.8vw, 6.5rem);
}

.hmr-title-sub {
  font-size: clamp(2.75rem, 7.1vw, 5.8rem);
  color: #17253b;
}

.hmr-strap {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.02rem, 1.9vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #21354c;
  font-variation-settings: "wght" 560;
}

.hmr-sub {
  margin: 0.55rem 0 0;
  color: #607289;
  max-width: 46ch;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hmr-actions {
  margin-top: 0.95rem;
  gap: 0.55rem;
}

.hmr-actions .button {
  min-height: 2.65rem;
}

.hmr-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
}

.hmr-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: #41566d;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.2rem;
}

.hmr-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.24),
    rgba(255, 79, 183, 0.18)
  );
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0.55;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hmr-links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.hmr-link-index {
  color: #6c8098;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: -0.01em;
}

.hmr-link-name {
  color: #2f455d;
}

.hmr-nextline {
  margin: 0.95rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  color: #576a82;
  font-size: 0.84rem;
}

.hmr-nextline-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 26, 45, 0.05);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #63778f;
}

.hmr-nextline-date {
  color: #0d928e;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hmr-nextline-title {
  color: #40546c;
  font-weight: 700;
}

.hmr-stage {
  position: relative;
  min-height: 25.5rem;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 79, 183, 0.05), transparent 42%),
    radial-gradient(circle at 22% 28%, rgba(56, 234, 215, 0.07), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  transform: translate3d(calc(var(--dx-soft) * -0.15), calc(var(--dy-soft) * -0.15), 0);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 100%);
}

.hmr-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), transparent 18%);
  pointer-events: none;
}

.hmr-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 249, 253, 0.5));
  pointer-events: none;
}

.hmr-stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(17, 26, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 45, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: translate3d(calc(var(--dx-soft) * -0.3), calc(var(--dy-soft) * -0.3), 0);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.18) 78%);
}

.hmr-stage-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
  pointer-events: none;
}

.hmr-stage-ambient-a {
  width: 14rem;
  height: 14rem;
  top: 14%;
  left: 14%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.18), transparent 72%);
  animation: hmr-ambient-a 14s ease-in-out infinite alternate;
}

.hmr-stage-ambient-b {
  width: 12rem;
  height: 12rem;
  top: 18%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.15), transparent 72%);
  animation: hmr-ambient-b 16s ease-in-out infinite alternate;
}

.hmr-stage-ambient-c {
  width: 16rem;
  height: 10rem;
  bottom: 15%;
  left: 28%;
  background: radial-gradient(circle, rgba(120, 198, 255, 0.1), transparent 72%);
  animation: hmr-ambient-c 18s ease-in-out infinite alternate;
}

.hmr-stage-ribbon {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.3px);
  opacity: 0.95;
  pointer-events: none;
  mix-blend-mode: normal;
}

.hmr-stage-ribbon-a {
  width: 25rem;
  height: 2.1rem;
  top: 18%;
  left: -12%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 234, 215, 0.1),
    rgba(56, 234, 215, 0.34),
    rgba(255, 79, 183, 0.14),
    transparent
  );
  transform: rotate(14deg) translate3d(calc(var(--dx) * 0.08), calc(var(--dy) * -0.08), 0);
  animation: hmr-ribbon-a 9s ease-in-out infinite;
}

.hmr-stage-ribbon-b {
  width: 28rem;
  height: 1.5rem;
  top: 45%;
  right: -14%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 79, 183, 0.12),
    rgba(255, 79, 183, 0.28),
    rgba(56, 234, 215, 0.18),
    transparent
  );
  transform: rotate(-16deg) translate3d(calc(var(--dx) * -0.08), calc(var(--dy) * 0.08), 0);
  animation: hmr-ribbon-b 11s ease-in-out infinite;
}

.hmr-stage-ribbon-c {
  width: 20rem;
  height: 1rem;
  bottom: 20%;
  left: 10%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 198, 255, 0.08),
    rgba(120, 198, 255, 0.24),
    transparent
  );
  transform: rotate(-7deg);
  animation: hmr-ribbon-c 12.5s ease-in-out infinite;
}

.hmr-stage-thread {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.06);
  opacity: 0.65;
  pointer-events: none;
}

.hmr-stage-thread-a {
  width: 20rem;
  height: 7rem;
  top: 14%;
  left: 6%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-8deg);
  animation: hmr-thread-a 17s ease-in-out infinite;
}

.hmr-stage-thread-b {
  width: 18rem;
  height: 5.8rem;
  top: 40%;
  right: 6%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(10deg);
  border-color: rgba(56, 234, 215, 0.09);
  animation: hmr-thread-b 15s ease-in-out infinite;
}

.hmr-stage-thread-c {
  width: 15rem;
  height: 5rem;
  bottom: 15%;
  left: 25%;
  border-top-color: transparent;
  border-right-color: transparent;
  border-color: rgba(255, 79, 183, 0.08);
  transform: rotate(-14deg);
  animation: hmr-thread-c 19s ease-in-out infinite;
}

.hmr-stage-beam {
  position: absolute;
  width: 1px;
  border-radius: 999px;
  opacity: 0.65;
  pointer-events: none;
}

.hmr-stage-beam-a {
  top: 7%;
  bottom: 10%;
  left: 24%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(56, 234, 215, 0.22),
    transparent
  );
  animation: hmr-beam-a 9s ease-in-out infinite;
}

.hmr-stage-beam-b {
  top: 10%;
  bottom: 8%;
  right: 28%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 79, 183, 0.2),
    transparent
  );
  animation: hmr-beam-b 11s ease-in-out infinite;
}

.hmr-stage-beam-c {
  top: 18%;
  bottom: 18%;
  left: 52%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(120, 198, 255, 0.16),
    transparent
  );
  animation: hmr-beam-c 12s ease-in-out infinite;
}

.hmr-stage-cursor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      10rem 10rem at var(--mx) var(--my),
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.18) 45%,
      transparent 75%
    ),
    radial-gradient(
      8rem 8rem at calc(var(--mx) + 1%) calc(var(--my) - 1%),
      rgba(56, 234, 215, 0.08),
      transparent 72%
    );
  opacity: 0.7;
}

.hmr-stage-monogram {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(calc(-50% + (var(--dx) * 0.18)), calc(-50% + (var(--dy) * 0.18)));
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 14vw, 8.5rem);
  line-height: 0.9;
  font-weight: 780;
  letter-spacing: -0.06em;
  color: rgba(17, 26, 45, 0.055);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 10px 24px rgba(17, 26, 45, 0.04);
  font-variation-settings: "wght" 780;
  user-select: none;
  pointer-events: none;
}

.hmr-stage-caption {
  position: absolute;
  color: rgba(49, 67, 89, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hmr-stage-caption-a {
  top: 12%;
  left: 8%;
}

.hmr-stage-caption-b {
  top: 18%;
  right: 10%;
}

.hmr-stage-caption-c {
  bottom: 13%;
  right: 11%;
}

.hmr-stage-dot {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(17, 26, 45, 0.12);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.25),
    0 0 18px rgba(56, 234, 215, 0.05);
  opacity: 0.9;
  pointer-events: none;
  animation: hmr-dot-pulse 4s ease-in-out infinite;
}

.hmr-stage-dot-a {
  top: 26%;
  left: 35%;
  animation-delay: -0.2s;
}

.hmr-stage-dot-b {
  top: 33%;
  right: 30%;
  animation-delay: -1.2s;
}

.hmr-stage-dot-c {
  bottom: 26%;
  left: 42%;
  animation-delay: -2.1s;
}

.hmr-stage-dot-d {
  bottom: 20%;
  right: 20%;
  animation-delay: -3s;
}

.hmr-footer {
  position: relative;
  z-index: 2;
  margin-top: 0.65rem;
  padding-top: 0.55rem;
}

.hmr-ticker {
  position: relative;
  overflow: hidden;
  min-height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hmr-ticker::before,
.hmr-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  pointer-events: none;
  z-index: 2;
}

.hmr-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.hmr-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.hmr-ticker-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  min-height: inherit;
  padding: 0 0.75rem;
  animation: hmr-ticker-scroll 24s linear infinite;
}

.hmr-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #556a82;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.hmr-ticker-dot {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--pink));
  flex-shrink: 0;
}

/* Hover / interaction */
.hmr-shell:hover .hmr-ticker-track {
  animation-duration: 20s;
}

.hmr-shell:hover .hmr-stage-ribbon {
  opacity: 1;
}

.hmr-shell.is-interactive .hmr-stage {
  transform: translate3d(calc(var(--dx-soft) * -0.2), calc(var(--dy-soft) * -0.2), 0);
}

.hmr-shell.is-interactive .hmr-stage-monogram {
  transform: translate(calc(-50% + (var(--dx) * 0.24)), calc(-50% + (var(--dy) * 0.24)));
}

/* Motion keyframes */
@keyframes hmr-drift-a {
  0% {
    transform: translate3d(var(--dx-soft), var(--dy-soft), 0) scale(1);
  }
  100% {
    transform: translate3d(calc(var(--dx-soft) + 1.4rem), calc(var(--dy-soft) + 0.8rem), 0) scale(1.05);
  }
}

@keyframes hmr-drift-b {
  0% {
    transform: translate3d(calc(var(--dx-soft) * -1), calc(var(--dy-soft) * -1), 0) scale(1);
  }
  100% {
    transform: translate3d(calc(var(--dx-soft) * -1 - 1rem), calc(var(--dy-soft) * -1 + 0.9rem), 0) scale(1.07);
  }
}

@keyframes hmr-live-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(56, 234, 215, 0.05);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(56, 234, 215, 0.04);
  }
}

@keyframes hmr-ambient-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.8rem, -0.5rem, 0);
  }
}

@keyframes hmr-ambient-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-0.9rem, 0.6rem, 0);
  }
}

@keyframes hmr-ambient-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.6rem, -0.4rem, 0);
  }
}

@keyframes hmr-ribbon-a {
  0%,
  100% {
    transform: rotate(14deg) translateX(0);
  }
  50% {
    transform: rotate(14deg) translateX(0.45rem);
  }
}

@keyframes hmr-ribbon-b {
  0%,
  100% {
    transform: rotate(-16deg) translateX(0);
  }
  50% {
    transform: rotate(-16deg) translateX(-0.45rem);
  }
}

@keyframes hmr-ribbon-c {
  0%,
  100% {
    transform: rotate(-7deg) translateX(0);
  }
  50% {
    transform: rotate(-7deg) translateX(0.35rem);
  }
}

@keyframes hmr-thread-a {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-0.3rem);
  }
}

@keyframes hmr-thread-b {
  0%,
  100% {
    transform: rotate(10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(0.3rem);
  }
}

@keyframes hmr-thread-c {
  0%,
  100% {
    transform: rotate(-14deg) translateY(0);
  }
  50% {
    transform: rotate(-14deg) translateY(-0.25rem);
  }
}

@keyframes hmr-beam-a {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes hmr-beam-b {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes hmr-beam-c {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes hmr-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes hmr-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (min-width: 1320px) {
  .hmr-grid {
    min-height: 28.5rem;
    gap: 1.7rem;
  }

  .hmr-stage {
    min-height: 27rem;
  }
}

@media (max-width: 1180px) {
  .hmr-grid {
    gap: 1rem;
  }

  .hmr-title-main {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
  }

  .hmr-title-sub {
    font-size: clamp(2.5rem, 6.3vw, 5rem);
  }

  .hmr-stage {
    min-height: 22.8rem;
    border-radius: 0;
  }

  .hmr-stage-thread-a {
    width: 16rem;
  }

  .hmr-stage-thread-b {
    width: 14rem;
  }

  .hmr-stage-thread-c {
    width: 12rem;
  }
}

@media (max-width: 980px) {
  .hm-hero--refined-motion {
    padding-top: 0.05rem;
  }

  .hmr-shell {
    padding: 0.45rem 0 0.35rem;
    border-radius: 0;
  }

  .hmr-layer-grid {
    background-size: 22px 22px;
  }

  .hmr-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    min-height: 0;
  }

  .hmr-stage {
    order: -1;
    min-height: 17.2rem;
    border-radius: 0;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 68%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 50%, #000 68%, transparent 100%);
  }

  .hmr-copy {
    padding: 0.1rem 0.15rem 0.2rem;
  }

  .hmr-copy-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .hmr-title {
    margin-top: 0.65rem;
  }

  .hmr-title-main {
    font-size: clamp(2.25rem, 11vw, 3.9rem);
  }

  .hmr-title-sub {
    font-size: clamp(2.05rem, 10vw, 3.5rem);
  }

  .hmr-strap {
    margin-top: 0.75rem;
    font-size: 0.96rem;
  }

  .hmr-sub {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .hmr-actions {
    margin-top: 0.75rem;
  }

  .hmr-links {
    margin-top: 0.75rem;
    gap: 0.45rem 0.8rem;
  }

  .hmr-nextline {
    margin-top: 0.75rem;
  }

  .hmr-stage-grid {
    background-size: 18px 18px;
  }

  .hmr-stage-ambient-a {
    width: 11rem;
    height: 11rem;
  }

  .hmr-stage-ambient-b {
    width: 10rem;
    height: 10rem;
  }

  .hmr-stage-ambient-c {
    width: 12rem;
    height: 8rem;
  }

  .hmr-stage-ribbon-a {
    width: 18rem;
    height: 1.6rem;
  }

  .hmr-stage-ribbon-b {
    width: 20rem;
    height: 1.2rem;
  }

  .hmr-stage-ribbon-c {
    width: 14rem;
  }

  .hmr-stage-thread,
  .hmr-stage-caption {
    display: none;
  }

  .hmr-stage-beam-a {
    left: 18%;
  }

  .hmr-stage-beam-b {
    right: 20%;
  }

  .hmr-stage-beam-c {
    left: 54%;
  }

  .hmr-stage-monogram {
    font-size: clamp(4.5rem, 18vw, 6.5rem);
  }

  .hmr-stage-dot-a {
    left: 29%;
  }

  .hmr-stage-dot-b {
    right: 24%;
  }

  .hmr-stage-dot-c {
    left: 46%;
  }

  .hmr-stage-dot-d {
    right: 14%;
  }

  .hmr-footer {
    margin-top: 0;
    padding-top: 0;
  }

  .hmr-ticker::before,
  .hmr-ticker::after {
    width: 2.5rem;
  }
}

@media (max-width: 760px) {
  .hmr-shell {
    padding: 0.35rem 0 0.15rem;
    border-radius: 0;
  }

  .hmr-line {
    left: 0.1rem;
    right: 0.1rem;
  }

  .hmr-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .hmr-live {
    font-size: 0.66rem;
  }

  .hmr-live-dot {
    width: 0.34rem;
    height: 0.34rem;
  }

  .hmr-title-main {
    font-size: clamp(1.95rem, 13vw, 2.9rem);
  }

  .hmr-title-sub {
    font-size: clamp(1.8rem, 12vw, 2.65rem);
  }

  .hmr-strap {
    font-size: 0.84rem;
  }

  .hmr-sub {
    margin-top: 0.4rem;
    font-size: 0.8rem;
  }

  .hmr-actions {
    width: 100%;
    gap: 0.45rem;
  }

  .hmr-actions .button {
    width: 100%;
  }

  .hmr-links {
    gap: 0.35rem 0.55rem;
  }

  .hmr-links a {
    font-size: 0.74rem;
    gap: 0.35rem;
  }

  .hmr-link-index {
    font-size: 0.66rem;
  }

  .hmr-nextline {
    gap: 0.3rem 0.5rem;
    font-size: 0.76rem;
  }

  .hmr-nextline-label {
    min-height: 1.35rem;
    font-size: 0.62rem;
  }

  .hmr-nextline-date {
    font-size: 0.66rem;
  }

  .hmr-stage {
    min-height: 13.2rem;
    border-radius: 0;
  }

  .hmr-stage-grid {
    background-size: 14px 14px;
    opacity: 0.15;
  }

  .hmr-stage-ambient-a {
    width: 8rem;
    height: 8rem;
    top: 12%;
    left: 12%;
  }

  .hmr-stage-ambient-b {
    width: 7.5rem;
    height: 7.5rem;
    top: 15%;
    right: 11%;
  }

  .hmr-stage-ambient-c {
    width: 9rem;
    height: 6rem;
    bottom: 12%;
    left: 35%;
  }

  .hmr-stage-ribbon-a {
    width: 13.5rem;
    height: 1rem;
  }

  .hmr-stage-ribbon-b {
    width: 14.5rem;
    height: 0.8rem;
  }

  .hmr-stage-ribbon-c {
    width: 10rem;
    height: 0.6rem;
  }

  .hmr-stage-beam-c {
    display: none;
  }

  .hmr-stage-cursor {
    opacity: 0.45;
  }

  .hmr-stage-monogram {
    font-size: clamp(3.5rem, 22vw, 4.8rem);
  }

  .hmr-stage-dot {
    width: 0.32rem;
    height: 0.32rem;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
  }

  .hmr-stage-dot-a {
    top: 24%;
  }

  .hmr-stage-dot-b {
    top: 31%;
  }

  .hmr-stage-dot-c {
    bottom: 23%;
  }

  .hmr-stage-dot-d {
    bottom: 19%;
  }

  .hmr-ticker {
    min-height: 1.65rem;
  }

  .hmr-ticker::before,
  .hmr-ticker::after {
    width: 1.8rem;
  }

  .hmr-ticker-track {
    gap: 0.55rem;
    padding-inline: 0.45rem;
    animation-duration: 18s;
  }

  .hmr-ticker-item {
    font-size: 0.68rem;
    gap: 0.32rem;
  }
}

@media (max-width: 560px) {
  .hmr-shell {
    padding-top: 0.45rem;
    border-radius: 0;
  }

  .hmr-copy {
    padding-inline: 0.05rem;
  }

  .hmr-title-main {
    font-size: clamp(1.75rem, 13vw, 2.45rem);
  }

  .hmr-title-sub {
    font-size: clamp(1.6rem, 12vw, 2.2rem);
  }

  .hmr-strap {
    margin-top: 0.55rem;
    font-size: 0.76rem;
  }

  .hmr-sub {
    font-size: 0.74rem;
  }

  .hmr-actions {
    margin-top: 0.6rem;
  }

  .hmr-links {
    margin-top: 0.6rem;
  }

  .hmr-nextline {
    margin-top: 0.6rem;
    font-size: 0.7rem;
  }

  .hmr-stage {
    min-height: 11.8rem;
  }

  .hmr-stage-ribbon-c {
    display: none;
  }

  .hmr-stage-beam-b {
    right: 17%;
  }

  .hmr-stage-monogram {
    font-size: clamp(3rem, 23vw, 4.1rem);
  }

  .hmr-ticker-track {
    animation-duration: 16s;
  }

  .hmr-ticker-item {
    font-size: 0.63rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmr-layer-glow-a,
  .hmr-layer-glow-b,
  .hmr-live-dot,
  .hmr-stage-ambient-a,
  .hmr-stage-ambient-b,
  .hmr-stage-ambient-c,
  .hmr-stage-ribbon-a,
  .hmr-stage-ribbon-b,
  .hmr-stage-ribbon-c,
  .hmr-stage-thread-a,
  .hmr-stage-thread-b,
  .hmr-stage-thread-c,
  .hmr-stage-beam-a,
  .hmr-stage-beam-b,
  .hmr-stage-beam-c,
  .hmr-stage-dot,
  .hmr-ticker-track {
    animation: none !important;
  }

  .hmr-shell,
  .hmr-stage,
  .hmr-stage-grid,
  .hmr-stage-monogram,
  .hmr-title-main,
  .hmr-title-sub,
  .hmr-links a::after {
    transition: none !important;
  }

  .hmr-shell {
    --mx: 50% !important;
    --my: 50% !important;
    --dx: 0px !important;
    --dy: 0px !important;
    --dx-soft: 0px !important;
    --dy-soft: 0px !important;
  }
}

/* Home Header v7 override (flow field / no box) */
.hmr-grid {
  gap: 2rem;
  min-height: 25.8rem;
}

.hmr-copy {
  padding-left: 0;
}

.hmr-stage {
  min-height: 24rem;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate3d(calc(var(--dx-soft) * -0.1), calc(var(--dy-soft) * -0.1), 0);
}

.hmr-stage::before,
.hmr-stage::after {
  display: none;
}

.hmr-stage-grid {
  inset: 4% 2%;
  opacity: 0.08;
  background-size: 26px 26px;
  transform: translate3d(calc(var(--dx-soft) * -0.25), calc(var(--dy-soft) * -0.25), 0);
  -webkit-mask-image: radial-gradient(ellipse at 56% 48%, #000 44%, rgba(0, 0, 0, 0.35) 70%, transparent 85%);
  mask-image: radial-gradient(ellipse at 56% 48%, #000 44%, rgba(0, 0, 0, 0.35) 70%, transparent 85%);
}

.hmr-stage-ambient {
  filter: blur(16px);
  opacity: 0.55;
}

.hmr-stage-ambient-a {
  width: 12rem;
  height: 12rem;
  top: 20%;
  left: 16%;
}

.hmr-stage-ambient-b {
  width: 10rem;
  height: 10rem;
  top: 30%;
  right: 18%;
}

.hmr-stage-cursor {
  opacity: 0.55;
  background:
    radial-gradient(
      12rem 12rem at var(--mx) var(--my),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.1) 48%,
      transparent 78%
    ),
    radial-gradient(
      9rem 9rem at calc(var(--mx) + 1%) calc(var(--my) - 1%),
      rgba(56, 234, 215, 0.06),
      transparent 72%
    );
}

.hmr-flow-shell {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--dx-soft) * -0.15), calc(var(--dy-soft) * -0.15), 0);
}

.hmr-flow-canvas {
  position: absolute;
  inset: 2% -4%;
  width: 108%;
  height: 96%;
  display: block;
  opacity: 0.95;
  filter: saturate(1.03) contrast(1.02);
  -webkit-mask-image: radial-gradient(ellipse at 55% 48%, #000 40%, rgba(0, 0, 0, 0.86) 57%, rgba(0, 0, 0, 0.28) 74%, transparent 86%);
  mask-image: radial-gradient(ellipse at 55% 48%, #000 40%, rgba(0, 0, 0, 0.86) 57%, rgba(0, 0, 0, 0.28) 74%, transparent 86%);
}

.hmr-flow-fade {
  position: absolute;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.9;
}

.hmr-flow-fade-a {
  inset: 14% auto auto 4%;
  width: 14rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 234, 215, 0.08), transparent 72%);
}

.hmr-flow-fade-b {
  inset: auto 8% 12% auto;
  width: 13rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 183, 0.07), transparent 72%);
}

.hmr-flow-fade-c {
  inset: 50% auto auto 50%;
  width: 18rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 72%);
}

.hmr-flow-edge {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  border-radius: 999px;
}

.hmr-flow-edge-a {
  width: 16rem;
  height: 1px;
  top: 28%;
  left: 12%;
  background: linear-gradient(90deg, transparent, rgba(56, 234, 215, 0.22), transparent);
  transform: rotate(14deg);
}

.hmr-flow-edge-b {
  width: 18rem;
  height: 1px;
  top: 58%;
  right: 10%;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 183, 0.18), transparent);
  transform: rotate(-15deg);
}

.hmr-flow-edge-c {
  width: 10rem;
  height: 1px;
  bottom: 22%;
  left: 34%;
  background: linear-gradient(90deg, transparent, rgba(120, 198, 255, 0.18), transparent);
  transform: rotate(-5deg);
}

.hmr-stage-monogram {
  inset: 50% auto auto 50%;
  transform: translate(calc(-50% + (var(--dx) * 0.2)), calc(-50% + (var(--dy) * 0.2)));
  color: rgba(17, 26, 45, 0.045);
  font-size: clamp(6.6rem, 16vw, 10rem);
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-shadow: none;
}

.hmr-stage-label {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  color: rgba(65, 85, 107, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* Hide old stage decorations from v6 if still present */
.hmr-stage-ribbon,
.hmr-stage-thread,
.hmr-stage-beam,
.hmr-stage-caption,
.hmr-stage-dot {
  display: none !important;
}

/* Footer ticker removed from markup */
.hmr-footer,
.hmr-ticker {
  display: none !important;
}

.hmr-shell.is-interactive .hmr-stage {
  transform: translate3d(calc(var(--dx-soft) * -0.14), calc(var(--dy-soft) * -0.14), 0);
}

.hmr-shell.is-interactive .hmr-stage-monogram {
  transform: translate(calc(-50% + (var(--dx) * 0.26)), calc(-50% + (var(--dy) * 0.26)));
}

@media (max-width: 1180px) {
  .hmr-grid {
    gap: 1.2rem;
    min-height: 23.8rem;
  }

  .hmr-stage {
    min-height: 21rem;
  }

  .hmr-stage-monogram {
    font-size: clamp(5.4rem, 15vw, 7.8rem);
  }

  .hmr-stage-label {
    bottom: 11%;
    font-size: 0.68rem;
  }
}

@media (max-width: 980px) {
  .hmr-shell {
    padding: 0.3rem 0 0.2rem;
  }

  .hmr-grid {
    gap: 0.65rem;
  }

  .hmr-stage {
    order: -1;
    min-height: 13.5rem;
  }

  .hmr-stage-grid {
    inset: 6% 0;
    background-size: 20px 20px;
    opacity: 0.065;
  }

  .hmr-flow-canvas {
    inset: 0 -8%;
    width: 116%;
    height: 100%;
    -webkit-mask-image: radial-gradient(ellipse at 55% 50%, #000 48%, rgba(0, 0, 0, 0.7) 64%, rgba(0, 0, 0, 0.18) 79%, transparent 90%);
    mask-image: radial-gradient(ellipse at 55% 50%, #000 48%, rgba(0, 0, 0, 0.7) 64%, rgba(0, 0, 0, 0.18) 79%, transparent 90%);
  }

  .hmr-flow-fade-a {
    width: 9rem;
    height: 7rem;
    left: 10%;
    top: 18%;
  }

  .hmr-flow-fade-b {
    width: 8rem;
    height: 6.5rem;
    right: 12%;
    bottom: 14%;
  }

  .hmr-flow-fade-c {
    width: 12rem;
    height: 8rem;
  }

  .hmr-flow-edge-a {
    width: 10rem;
    top: 31%;
  }

  .hmr-flow-edge-b {
    width: 11rem;
    top: 57%;
  }

  .hmr-flow-edge-c {
    width: 6rem;
    bottom: 23%;
  }

  .hmr-stage-monogram {
    font-size: clamp(4rem, 22vw, 6rem);
    color: rgba(17, 26, 45, 0.04);
  }

  .hmr-stage-label {
    bottom: 10%;
    letter-spacing: 0.12em;
    font-size: 0.62rem;
  }
}

@media (max-width: 760px) {
  .hmr-stage {
    min-height: 11.2rem;
  }

  .hmr-flow-canvas {
    inset: -1% -10%;
    width: 120%;
    height: 102%;
  }

  .hmr-stage-grid {
    background-size: 16px 16px;
  }

  .hmr-flow-edge-a,
  .hmr-flow-edge-b {
    width: 7rem;
  }

  .hmr-flow-edge-c {
    display: none;
  }

  .hmr-stage-monogram {
    font-size: clamp(3.2rem, 24vw, 4.8rem);
  }

  .hmr-stage-label {
    font-size: 0.56rem;
    bottom: 9%;
  }
}

@media (max-width: 560px) {
  .hmr-stage {
    min-height: 9.8rem;
  }

  .hmr-flow-fade-a,
  .hmr-flow-fade-b,
  .hmr-flow-fade-c,
  .hmr-stage-label {
    display: none;
  }

  .hmr-stage-monogram {
    font-size: clamp(2.8rem, 24vw, 4.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmr-flow-canvas {
    display: none;
  }

  .hmr-flow-edge {
    opacity: 0.35;
  }
}

/* Home Header v8 override (kill remaining boxes) */
.hm-hero--refined-motion {
  margin-inline: -0.15rem;
}

.hmr-shell {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: 0.15rem;
}

.hmr-shell::before,
.hmr-shell::after,
.hmr-line,
.hmr-layer-grid,
.hmr-layer-noise {
  display: none !important;
}

.hmr-layer-spot {
  opacity: 0.45;
}

.hmr-grid {
  min-height: 24.4rem;
  gap: 2.15rem;
  align-items: center;
}

.hmr-copy {
  padding-right: 0.25rem;
}

.hmr-stage {
  min-height: 23rem;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  border-radius: 0 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.hmr-stage::before,
.hmr-stage::after,
.hmr-stage-grid {
  display: none !important;
}

.hmr-stage-ambient {
  opacity: 0.42;
  filter: blur(20px);
}

.hmr-stage-ambient-a {
  width: 13rem;
  height: 13rem;
  top: 19%;
  left: 17%;
}

.hmr-stage-ambient-b {
  width: 11rem;
  height: 11rem;
  top: 34%;
  right: 16%;
}

.hmr-flow-shell {
  inset: -10% -10%;
  transform: translate3d(calc(var(--dx-soft) * -0.2), calc(var(--dy-soft) * -0.2), 0);
}

.hmr-flow-canvas {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.03);
  -webkit-mask-image: radial-gradient(ellipse at 55% 50%, #000 42%, rgba(0, 0, 0, 0.86) 60%, rgba(0, 0, 0, 0.26) 78%, transparent 92%);
  mask-image: radial-gradient(ellipse at 55% 50%, #000 42%, rgba(0, 0, 0, 0.86) 60%, rgba(0, 0, 0, 0.26) 78%, transparent 92%);
}

.hmr-flow-fade {
  opacity: 0.7;
  filter: blur(14px);
}

.hmr-flow-fade-a {
  width: 16rem;
  height: 12rem;
  left: 12%;
  top: 20%;
}

.hmr-flow-fade-b {
  width: 15rem;
  height: 11rem;
  right: 10%;
  bottom: 16%;
}

.hmr-flow-fade-c {
  width: 22rem;
  height: 14rem;
}

.hmr-flow-edge {
  opacity: 0.35;
}

.hmr-flow-edge-a {
  width: 18rem;
  top: 34%;
  left: 8%;
}

.hmr-flow-edge-b {
  width: 20rem;
  top: 54%;
  right: 6%;
}

.hmr-flow-edge-c {
  width: 12rem;
  bottom: 26%;
  left: 38%;
}

.hmr-stage-cursor {
  opacity: 0.5;
}

.hmr-stage-monogram {
  color: rgba(17, 26, 45, 0.035) !important;
  font-size: clamp(7.2rem, 17vw, 10.8rem);
  letter-spacing: -0.09em;
}

.hmr-stage-label {
  bottom: 10%;
  color: rgba(65, 85, 107, 0.5);
}

.hmr-nextline-label {
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
  border-radius: 0;
}

.hmr-nextline-label::after {
  content: "·";
  margin-left: 0.4rem;
  color: rgba(65, 85, 107, 0.45);
}

@media (max-width: 1180px) {
  .hmr-grid {
    gap: 1.35rem;
    min-height: 22.2rem;
  }

  .hmr-stage {
    min-height: 19.8rem;
  }

  .hmr-stage-monogram {
    font-size: clamp(5.6rem, 16vw, 8.2rem);
  }
}

@media (max-width: 980px) {
  .hm-hero--refined-motion {
    margin-inline: 0;
  }

  .hmr-grid {
    gap: 0.55rem;
  }

  .hmr-stage {
    min-height: 12.6rem;
  }

  .hmr-flow-shell {
    inset: -14% -12%;
  }

  .hmr-flow-canvas {
    opacity: 0.88;
    -webkit-mask-image: radial-gradient(ellipse at 55% 50%, #000 50%, rgba(0, 0, 0, 0.76) 66%, rgba(0, 0, 0, 0.2) 82%, transparent 94%);
    mask-image: radial-gradient(ellipse at 55% 50%, #000 50%, rgba(0, 0, 0, 0.76) 66%, rgba(0, 0, 0, 0.2) 82%, transparent 94%);
  }

  .hmr-flow-fade-a,
  .hmr-flow-fade-b {
    width: 9rem;
    height: 7rem;
    opacity: 0.55;
  }

  .hmr-flow-fade-c {
    width: 14rem;
    height: 9rem;
    opacity: 0.5;
  }

  .hmr-flow-edge-a,
  .hmr-flow-edge-b {
    width: 10rem;
    opacity: 0.28;
  }

  .hmr-stage-monogram {
    font-size: clamp(4.2rem, 21vw, 6.2rem);
  }

  .hmr-stage-label {
    font-size: 0.58rem;
    bottom: 8%;
  }
}

@media (max-width: 760px) {
  .hmr-stage {
    min-height: 10.6rem;
  }

  .hmr-flow-shell {
    inset: -16% -15%;
  }

  .hmr-flow-fade-a,
  .hmr-flow-fade-b,
  .hmr-flow-fade-c {
    display: none;
  }

  .hmr-flow-edge-a,
  .hmr-flow-edge-b,
  .hmr-flow-edge-c {
    display: none;
  }

  .hmr-stage-monogram {
    font-size: clamp(3.3rem, 24vw, 5rem);
  }

  .hmr-stage-label {
    display: none;
  }
}

@media (max-width: 560px) {
  .hmr-stage {
    min-height: 9.4rem;
  }

  .hmr-flow-canvas {
    opacity: 0.84;
  }

  .hmr-stage-monogram {
    font-size: clamp(2.9rem, 24vw, 4.2rem);
  }
}

/* Home Header v9 override (frameless / no boxes at all) */
.hmr-shell,
.hmr-stage,
.hmr-flow-shell {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

.hmr-shell::before,
.hmr-shell::after,
.hmr-layer-grid,
.hmr-layer-glow,
.hmr-layer-spot,
.hmr-layer-noise,
.hmr-line {
  display: none !important;
}

.hmr-actions {
  margin-top: 1.05rem;
  gap: 1rem;
}

.hmr-actions .button {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  color: #22364d !important;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  position: relative;
  transform: none !important;
}

.hmr-actions .button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(56, 234, 215, 0.42),
    rgba(255, 79, 183, 0.34)
  );
  transform-origin: left center;
  transform: scaleX(0.32);
  opacity: 0.85;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hmr-actions .button:hover {
  color: #111a2c !important;
}

.hmr-actions .button:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.hmr-stage-label {
  display: none !important;
}

.hmr-stage-cursor {
  display: none !important;
}

.hmr-flow-shell {
  inset: -18% -16% -16% -14% !important;
  transform: translate3d(calc(var(--dx-soft) * -0.22), calc(var(--dy-soft) * -0.22), 0);
}

.hmr-flow-canvas {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.9;
  filter: saturate(1.02) contrast(1.01);
  -webkit-mask-image: radial-gradient(
    ellipse at 58% 50%,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 0.96) 40%,
    rgba(0, 0, 0, 0.8) 56%,
    rgba(0, 0, 0, 0.38) 72%,
    rgba(0, 0, 0, 0.12) 84%,
    transparent 94%
  ) !important;
  mask-image: radial-gradient(
    ellipse at 58% 50%,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 0.96) 40%,
    rgba(0, 0, 0, 0.8) 56%,
    rgba(0, 0, 0, 0.38) 72%,
    rgba(0, 0, 0, 0.12) 84%,
    transparent 94%
  ) !important;
}

.hmr-flow-fade,
.hmr-flow-edge,
.hmr-stage-grid {
  opacity: 0.42;
}

@media (min-width: 981px) {
  .hm-hero--refined-motion {
    margin-inline: 0;
  }

  .hmr-shell {
    padding: 0.1rem 0 0;
  }

  .hmr-grid {
    display: block !important;
    position: relative;
    min-height: 27.5rem;
    gap: 0;
  }

  .hmr-copy {
    position: relative;
    z-index: 2;
    max-width: min(41rem, 56%);
    padding-right: 1rem;
  }

  .hmr-stage {
    position: absolute !important;
    inset: -10% -14% -12% 28%;
    z-index: 1;
    min-height: 0 !important;
    pointer-events: none;
    transform: translate3d(calc(var(--dx-soft) * -0.1), calc(var(--dy-soft) * -0.1), 0);
    -webkit-mask-image: radial-gradient(
      ellipse at 67% 50%,
      rgba(0, 0, 0, 1) 26%,
      rgba(0, 0, 0, 0.95) 44%,
      rgba(0, 0, 0, 0.75) 58%,
      rgba(0, 0, 0, 0.34) 74%,
      rgba(0, 0, 0, 0.12) 86%,
      transparent 96%
    ) !important;
    mask-image: radial-gradient(
      ellipse at 67% 50%,
      rgba(0, 0, 0, 1) 26%,
      rgba(0, 0, 0, 0.95) 44%,
      rgba(0, 0, 0, 0.75) 58%,
      rgba(0, 0, 0, 0.34) 74%,
      rgba(0, 0, 0, 0.12) 86%,
      transparent 96%
    ) !important;
  }

  .hmr-stage-monogram {
    font-size: clamp(7.2rem, 16vw, 11rem);
    color: rgba(17, 26, 45, 0.028) !important;
  }

  .hmr-nextline {
    margin-top: 0.8rem;
  }
}

.hmr-shell.is-interactive .hmr-stage {
  transform: translate3d(calc(var(--dx-soft) * -0.1), calc(var(--dy-soft) * -0.1), 0) !important;
}

.hmr-shell.is-interactive .hmr-stage-monogram {
  transform: translate(-50%, -50%) !important;
}

@media (max-width: 980px) {
  .hmr-actions {
    gap: 0.9rem;
  }

  .hmr-flow-shell {
    inset: -16% -14% -14% -12% !important;
  }

  .hmr-flow-canvas {
    opacity: 0.88;
    -webkit-mask-image: radial-gradient(
      ellipse at 55% 50%,
      rgba(0, 0, 0, 1) 42%,
      rgba(0, 0, 0, 0.86) 60%,
      rgba(0, 0, 0, 0.34) 76%,
      transparent 92%
    ) !important;
    mask-image: radial-gradient(
      ellipse at 55% 50%,
      rgba(0, 0, 0, 1) 42%,
      rgba(0, 0, 0, 0.86) 60%,
      rgba(0, 0, 0, 0.34) 76%,
      transparent 92%
    ) !important;
  }
}

@media (max-width: 760px) {
  .hmr-actions {
    gap: 0.85rem;
  }

  .hmr-actions .button {
    font-size: 0.9rem;
  }

  .hmr-flow-fade,
  .hmr-flow-edge {
    display: none !important;
  }
}

/* Home Header v10 override (real stats strip / count-up) */
.hmr-metrics {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  max-width: 44rem;
}

.hmr-metric {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.18rem;
  padding-top: 0.5rem;
}

.hmr-metric::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(17, 26, 45, 0.08),
    rgba(56, 234, 215, 0.28),
    rgba(255, 79, 183, 0.22),
    rgba(17, 26, 45, 0.05)
  );
}

.hmr-metric-value {
  display: block;
  color: #101a2d;
  font-family: var(--font-display);
  font-weight: 720;
  font-variation-settings: "wght" 720;
  font-size: clamp(1.18rem, 2.6vw, 1.88rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.hmr-metric-label {
  display: block;
  color: #6a7f96;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .hmr-metrics {
    max-width: 100%;
    gap: 0.65rem 0.8rem;
  }

  .hmr-metric-value {
    font-size: clamp(1.08rem, 3vw, 1.55rem);
  }

  .hmr-metric-label {
    font-size: 0.63rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 760px) {
  .hmr-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.75rem;
    margin-top: 0.85rem;
  }

  .hmr-metric:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hmr-metric {
    padding-top: 0.42rem;
  }

  .hmr-metric-value {
    font-size: clamp(1.06rem, 4.4vw, 1.32rem);
  }

  .hmr-metric-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}

/* Home Header v11 override (bigger + load reveal) */
@keyframes hmr-fade-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hmr-fade-stage {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.988);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.hm-hero--refined-motion {
  min-height: calc(100svh - 6.5rem);
  display: grid;
  align-items: center;
}

.hmr-shell {
  width: 100%;
}

.hmr-copy-top,
.hmr-title,
.hmr-strap,
.hmr-metrics {
  opacity: 0;
  animation: hmr-fade-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hmr-copy-top {
  animation-delay: 70ms;
}

.hmr-title {
  animation-delay: 150ms;
}

.hmr-strap {
  animation-delay: 260ms;
}

.hmr-metrics {
  animation-delay: 360ms;
}

.hmr-stage {
  opacity: 0;
  animation: hmr-fade-stage 900ms cubic-bezier(0.19, 1, 0.22, 1) 180ms both;
}

.hmr-title-main {
  font-size: clamp(3.5rem, 9vw, 7.8rem) !important;
}

.hmr-title-sub {
  font-size: clamp(3.15rem, 8.1vw, 6.9rem) !important;
}

.hmr-strap {
  margin-top: 1.1rem;
  font-size: clamp(1.12rem, 2.15vw, 1.7rem) !important;
}

.hmr-metrics {
  margin-top: 1rem;
  max-width: 50rem;
  gap: 0.85rem 1.2rem;
}

.hmr-metric {
  padding-top: 0.58rem;
}

.hmr-metric-value {
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 0.9;
}

.hmr-metric-label {
  font-size: 0.71rem;
}

@media (min-width: 981px) {
  .hmr-grid {
    min-height: max(39rem, calc(100svh - 10.4rem)) !important;
  }

  .hmr-copy {
    max-width: min(45rem, 60%) !important;
  }

  .hmr-stage {
    inset: -11% -14% -14% 26% !important;
  }

  .hmr-stage-monogram {
    font-size: clamp(8.6rem, 19vw, 13rem) !important;
  }
}

@media (max-width: 980px) {
  .hm-hero--refined-motion {
    min-height: calc(100svh - 5.8rem);
    align-items: start;
  }

  .hmr-grid {
    min-height: 0 !important;
  }

  .hmr-title-main {
    font-size: clamp(3rem, 11vw, 5rem) !important;
  }

  .hmr-title-sub {
    font-size: clamp(2.7rem, 10vw, 4.5rem) !important;
  }

  .hmr-strap {
    font-size: clamp(1.02rem, 3.3vw, 1.3rem) !important;
  }

  .hmr-metrics {
    margin-top: 0.95rem;
    gap: 0.75rem 0.95rem;
  }

  .hmr-metric-value {
    font-size: clamp(1.22rem, 4vw, 1.8rem);
  }
}

@media (max-width: 760px) {
  .hm-hero--refined-motion {
    min-height: calc(100svh - 5.4rem);
  }

  .hmr-copy-top,
  .hmr-title,
  .hmr-strap,
  .hmr-metrics,
  .hmr-stage {
    animation-duration: 560ms;
  }

  .hmr-metrics {
    gap: 0.7rem 0.8rem;
  }

  .hmr-metric-value {
    font-size: clamp(1.14rem, 5vw, 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmr-copy-top,
  .hmr-title,
  .hmr-strap,
  .hmr-metrics,
  .hmr-stage {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Home Header v12 override (edge strips / lower content) */
.hm-hero--refined-motion {
  position: relative;
  padding-top: 0.75rem;
  padding-bottom: 1.4rem;
}

.hm-hero--refined-motion::before {
  content: "";
  position: absolute;
  inset: 0.5rem 0.35rem 0.5rem;
  pointer-events: none;
  z-index: 0;
  border: 1px solid rgba(17, 26, 45, 0.1);
  opacity: 0.8;
}

.hm-hero--refined-motion::after {
  content: "";
  position: absolute;
  inset: 0.5rem 0.35rem auto;
  height: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 26, 45, 0.22),
    rgba(56, 234, 215, 0.18) 34%,
    rgba(255, 79, 183, 0.18) 68%,
    rgba(17, 26, 45, 0.18)
  );
}

.hmr-shell {
  position: relative;
  z-index: 1;
  padding-top: 2rem !important;
  padding-bottom: 1.4rem !important;
}

.hmr-copy {
  padding-top: 1rem !important;
}

.hmr-copy-top {
  margin-bottom: 0.45rem;
}

.hmr-eyebrow {
  letter-spacing: 0.16em;
}

@media (min-width: 981px) {
  .hm-hero--refined-motion {
    min-height: calc(100svh - 5.6rem);
    padding-top: 0.9rem;
    padding-bottom: 1.65rem;
  }

  .hm-hero--refined-motion::before {
    inset: 0.6rem 0.55rem 0.65rem;
  }

  .hm-hero--refined-motion::after {
    inset: 0.6rem 0.55rem auto;
  }

  .hmr-shell {
    padding-top: 2.8rem !important;
    padding-bottom: 1.7rem !important;
  }

  .hmr-grid {
    min-height: max(41rem, calc(100svh - 9.2rem)) !important;
  }

  .hmr-copy {
    padding-top: 1.65rem !important;
  }
}

@media (max-width: 980px) {
  .hm-hero--refined-motion {
    padding-top: 0.55rem;
    padding-bottom: 1rem;
  }

  .hm-hero--refined-motion::before {
    inset: 0.45rem 0.15rem 0.45rem;
    opacity: 0.65;
  }

  .hm-hero--refined-motion::after {
    inset: 0.45rem 0.15rem auto;
  }

  .hmr-shell {
    padding-top: 1.25rem !important;
    padding-bottom: 0.7rem !important;
  }

  .hmr-copy {
    padding-top: 0.45rem !important;
  }
}

@media (max-width: 760px) {
  .hm-hero--refined-motion::before {
    inset: 0.35rem 0 0.35rem;
    border-color: rgba(17, 26, 45, 0.07);
  }

  .hm-hero--refined-motion::after {
    inset: 0.35rem 0 auto;
  }
}
