:root {
  color-scheme: dark;
  --ink: #080b0d;
  --panel: #0e1316;
  --panel-2: #141b1e;
  --line: #273136;
  --line-strong: #3a494f;
  --text: #edf4f2;
  --muted: #9ba9a7;
  --teal: #35e0ce;
  --gold: #e7c765;
  --blue: #79b8ff;
  --coral: #ff806f;
  --pink: #f4b6d7;
  --pink-soft: rgba(244, 182, 215, 0.12);
  --shell: 1320px;
  --sans: "Inter Tight", "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  letter-spacing: 0;
}
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--teal);
  color: #03100e;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.hub-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.hub-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 94px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: linear-gradient(to bottom, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px) saturate(120%);
}
.hub-nav__inner {
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}
.hub-brand-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hub-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hub-brand__mark {
  width: auto;
  display: inline-flex;
  gap: 3px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.hub-brand__mark i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7a8585;
}
.hub-brand__mark i:nth-child(3) { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.hub-brand strong,
.hub-brand small { display: block; font-family: var(--mono); letter-spacing: 0; }
.hub-brand strong { font-size: 13px; line-height: 1.1; }
.hub-brand small { margin-top: 3px; color: #7a8585; font-size: 9px; }
.hub-fluge {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(170, 174, 177, 0.18);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 35%, rgba(42, 219, 196, 0.26), transparent 60%), rgba(252, 253, 254, 0.045);
  box-shadow: inset 0 1px 0 rgba(252, 253, 254, 0.12), 0 0 34px rgba(42, 219, 196, 0.12);
  opacity: 1;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.hub-fluge:hover,
.hub-fluge:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(42, 219, 196, 0.45);
  box-shadow: inset 0 1px 0 rgba(252, 253, 254, 0.12), 0 0 30px rgba(42, 219, 196, 0.14);
}
.hub-fluge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(42, 219, 196, 0.28)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.hub-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
}
.hub-nav-link,
.hub-account,
.hub-lang {
  color: #c6d0ce;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.hub-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}
.hub-nav-link__dash {
  display: block;
  width: 10px;
  height: 1px;
  flex: 0 0 auto;
  background: #4a5555;
  transition: width 160ms ease, background-color 160ms ease;
}
.hub-nav-link:hover,
.hub-nav-link:focus-visible,
.hub-account:hover,
.hub-account:focus-visible { color: var(--teal); }
.hub-nav-link:hover,
.hub-nav-link:focus-visible { background: rgba(255, 255, 255, 0.04); }
.hub-nav-link:hover .hub-nav-link__dash,
.hub-nav-link:focus-visible .hub-nav-link__dash { width: 18px; background: var(--teal); }
.hub-product-nav { position: relative; }
.hub-product-nav__toggle {
  min-width: 136px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)), rgba(255, 255, 255, 0.02);
}
.hub-product-nav__chevron {
  margin-left: 2px;
  color: var(--teal);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 160ms ease;
}
.hub-product-nav:hover .hub-product-nav__chevron,
.hub-product-nav:focus-within .hub-product-nav__chevron,
.hub-product-nav.is-open .hub-product-nav__chevron { transform: translateY(1px) rotate(180deg); }
.hub-product-nav__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(340px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 124px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) rgba(255, 255, 255, 0.06);
  scrollbar-gutter: stable;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: radial-gradient(80% 70% at 50% 0%, rgba(53, 224, 206, 0.16), transparent 68%), rgba(7, 8, 10, 0.97);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 28px 80px -34px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}
.hub-product-nav__menu::-webkit-scrollbar { width: 7px; }
.hub-product-nav__menu::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 999px; }
.hub-product-nav__menu::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 999px; }
.hub-product-nav:hover .hub-product-nav__menu,
.hub-product-nav:focus-within .hub-product-nav__menu,
.hub-product-nav.is-open .hub-product-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.hub-product-menu__family {
  position: sticky;
  top: -10px;
  z-index: 2;
  display: block;
  padding: 12px 14px 8px;
  background: rgba(7, 8, 10, 0.98);
  backdrop-filter: blur(14px);
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.hub-product-menu__family:not(:first-child) { margin-top: 7px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.hub-product-menu__family[data-family="creative"],
.hub-product-menu__item[data-family="creative"] .hub-product-menu__num { color: var(--pink); }
.hub-product-menu__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-areas: "num name" "num tag";
  column-gap: 12px;
  row-gap: 2px;
  padding: 13px 14px;
  border-radius: 8px;
  color: #c6d0ce;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.hub-product-menu__item:hover,
.hub-product-menu__item:focus-visible { color: var(--text); background: rgba(255, 255, 255, 0.06); transform: translateX(2px); outline: none; }
.hub-product-menu__num { grid-area: num; align-self: center; color: var(--teal); font: 11px var(--mono); }
.hub-product-menu__name { grid-area: name; font: 700 12px var(--mono); }
.hub-product-menu__tag { grid-area: tag; color: #758280; font: 10px var(--mono); text-transform: uppercase; }
.hub-nav__tools { display: flex; align-items: center; gap: 14px; }
.hub-lang {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.hub-lang:hover { color: var(--teal); }
.hub-account.is-logged { color: var(--teal); }
.hub-social {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c6d0ce;
  font: 400 11px var(--mono);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.hub-social:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-1px); }
.hub-social--discord { border-color: rgba(53, 224, 206, 0.48); }
.hub-social--instagram { border-color: rgba(244, 182, 215, 0.62); }
.hub-social--instagram:hover,
.hub-social--instagram:focus-visible { color: var(--pink); border-color: var(--pink); }
.hub-social svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hub-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  background: var(--teal);
  color: #03100e;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.26);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.hub-button:hover { transform: translateY(-1px); background: #7ff4e6; border-color: #7ff4e6; }
.hub-button--small { min-height: 34px; padding: 0 13px; font-size: 12px; }
.hub-nav .hub-button--small {
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: none;
}
.hub-button--outline { background: rgba(8, 11, 13, 0.58); color: var(--text); border-color: #68767b; }
.hub-button--outline:hover { background: #1b2528; border-color: var(--text); }
.hub-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hub-menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #11171a;
}
.hub-menu-toggle span { width: 17px; height: 1px; background: var(--text); }

.hub-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080b0d;
}
.hub-hero__image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/magnetar-v2-2.1.1-bypass.png?v=20260810');
  background-repeat: no-repeat;
  background-position: right 44%;
  background-size: min(74vw, 1040px) auto;
  opacity: 0.86;
}
.hub-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 10, 0.42);
  border-left: 48vw solid rgba(5, 8, 10, 0.76);
}
.hub-hero__content {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 58px 0 92px;
}
.hub-eyebrow {
  margin: 0 0 15px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.hub-hero h1 {
  margin: 0;
  font-size: 82px;
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
}
.hub-hero__lead {
  max-width: 680px;
  margin: 19px 0 0;
  color: #f5f8f7;
  font-size: 27px;
  line-height: 1.22;
  font-weight: 650;
}
.hub-hero__copy {
  max-width: 590px;
  margin: 16px 0 28px;
  color: #bdc8c6;
  font-size: 16px;
}
.hub-hero__facts {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  background: rgba(8, 11, 13, 0.92);
}
.hub-hero__facts div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 14px 18px 14px 54px;
  border-right: 1px solid var(--line);
}
.hub-hero__facts div::before {
  position: absolute;
  left: 18px;
  top: 50%;
  color: #596663;
  font: 10px var(--mono);
  transform: translateY(-50%);
}
.hub-hero__facts div:nth-child(1)::before { content: "01"; }
.hub-hero__facts div:nth-child(2)::before { content: "02"; }
.hub-hero__facts div:nth-child(3)::before { content: "03"; }
.hub-hero__facts div:nth-child(4)::before { content: "04"; }
.hub-hero__facts div:nth-child(4)::before,
.hub-hero__facts div:nth-child(4) strong { color: var(--pink); }
.hub-hero__facts div:last-child { border-right: 0; }
.hub-hero__facts strong { font-size: 16px; }
.hub-hero__facts span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.hub-hero .hub-eyebrow { color: var(--pink); }
.hub-hero .hub-button--outline { border-color: rgba(244, 182, 215, 0.62); }
.hub-hero .hub-button--outline:hover { border-color: var(--pink); background: var(--pink); color: #211017; }

.hub-intro,
.hub-docs { padding: 92px 0 104px; }
.hub-section-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hub-section-head::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 92px;
  height: 2px;
  background: var(--teal);
}
.hub-section-head::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 98px;
  width: 38px;
  height: 2px;
  background: var(--pink);
}
.hub-section-head h2,
.hub-euclid h2 {
  margin: 0;
  max-width: 820px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}
.hub-section-head > p,
.hub-euclid__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hub-filters {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 3px;
  padding: 3px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b1012;
}
.hub-filters button {
  position: relative;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.hub-filters button:hover { color: var(--text); }
.hub-filters button.is-active { border-color: rgba(244, 182, 215, 0.42); background: var(--pink-soft); color: var(--pink); }
.hub-filters button[data-family="mastering"].is-active { color: var(--gold); }
.hub-filters button[data-family="creative"].is-active { color: var(--pink); }
.hub-filters button[data-family="live"].is-active { color: var(--blue); }
.hub-filters button:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }

.hub-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.hub-product-card {
  --product-accent: var(--teal);
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d1214;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.hub-product-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--product-accent);
  opacity: 0.75;
}
.hub-product-card:hover {
  border-color: color-mix(in srgb, var(--product-accent) 45%, var(--line));
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}
.hub-product-card[data-family="mastering"] { --product-accent: var(--gold); }
.hub-product-card[data-family="creative"] { --product-accent: var(--pink); }
.hub-product-card[data-family="live"] { --product-accent: var(--blue); }
.hub-product-card__media {
  position: relative;
  height: 232px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080c0e;
  text-decoration: none;
}
.hub-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}
.hub-product-card:hover .hub-product-card__media img { transform: scale(1.025); filter: brightness(1.07); }
.hub-product-card__ordinal {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  color: var(--product-accent);
  font: 600 10px var(--mono);
}
.hub-product-card__open {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 13px;
  padding: 5px 7px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 45%, transparent);
  border-radius: 3px;
  background: rgba(7, 10, 12, 0.88);
  color: var(--text);
  font: 600 9px var(--mono);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.hub-product-card:hover .hub-product-card__open,
.hub-product-card__media:focus-visible .hub-product-card__open { opacity: 1; transform: translateY(0); }
.hub-product-card__body { flex: 1; display: flex; flex-direction: column; padding: 21px 21px 22px; }
.hub-product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hub-product-card__family { color: var(--product-accent); font: 700 10px var(--mono); text-transform: uppercase; }
.hub-status {
  padding: 3px 7px;
  border: 1px solid rgba(244, 182, 215, 0.38);
  border-radius: 3px;
  color: #f0d6e4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.hub-product-card h3 { margin: 18px 0 8px; font-size: 23px; line-height: 1.1; }
.hub-product-card__tagline { min-height: 48px; margin: 0; color: var(--muted); font-size: 14px; }
.hub-product-card__formats { margin: 15px 0 18px; color: #748381; font-size: 10px; font-weight: 750; }
.hub-product-card__actions { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.hub-text-link { color: var(--text); font-size: 12px; font-weight: 800; text-decoration: none; }
.hub-text-link:hover { color: var(--product-accent); }

.hub-euclid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  min-height: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b1012;
}
.hub-euclid__media {
  min-height: 600px;
  background-image: url('/assets/newsletter/euclid-console-20260714.jpg');
  background-size: cover;
  background-position: center;
  border-right: 1px solid var(--line);
}
.hub-euclid__body {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.hub-euclid__heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.hub-euclid__heading .hub-eyebrow { margin: 0; }
.hub-euclid__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid #31524e;
  border-radius: 3px;
  color: #b8c8c5;
  font: 600 9px var(--mono);
  text-transform: uppercase;
}
.hub-euclid__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 9px rgba(53, 224, 206, 0.8); }
.hub-euclid__body > p { max-width: 560px; margin: 20px 0 0; }
.hub-euclid .hub-actions { margin-top: 28px; }
.hub-inline-specs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.hub-inline-specs span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 3px; color: #b4c1bf; font-size: 10px; font-weight: 700; }
.hub-euclid__capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hub-euclid__capabilities div { min-width: 0; padding: 18px 12px 18px 0; border-right: 1px solid var(--line); }
.hub-euclid__capabilities div:not(:first-child) { padding-left: 15px; }
.hub-euclid__capabilities div:last-child { border-right: 0; }
.hub-euclid__capabilities strong,
.hub-euclid__capabilities span { display: block; }
.hub-euclid__capabilities strong { color: var(--teal); font: 700 18px var(--mono); }
.hub-euclid__capabilities div:nth-child(2) strong { color: var(--pink); }
.hub-euclid__capabilities span { margin-top: 5px; color: var(--muted); font-size: 10px; }

.hub-docs { background: #090d0f; }
.hub-resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hub-resource-grid a {
  position: relative;
  min-height: 222px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #0c1113;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}
.hub-resource-grid a:last-child { border-right: 0; }
.hub-resource-grid a:hover { background: #141e20; }
.hub-resource-index { margin: 0; color: var(--teal); font: 600 10px var(--mono); }
.hub-resource-grid a > div { align-self: end; }
.hub-resource-grid strong,
.hub-resource-grid a > div > span { display: block; }
.hub-resource-grid strong { font-size: 17px; }
.hub-resource-grid a > div > span { margin-top: 9px; color: var(--muted); font-size: 13px; }
.hub-resource-arrow { position: absolute; top: 18px; right: 20px; margin: 0; color: #60706d; font-size: 18px; transition: color 160ms ease, transform 160ms ease; }
.hub-resource-grid a:hover .hub-resource-arrow { color: var(--teal); transform: translate(2px, -2px); }
.hub-resource-grid a:last-child .hub-resource-index { color: var(--pink); }
.hub-resource-grid a:last-child:hover .hub-resource-arrow { color: var(--pink); }
.hub-resource-grid a:nth-child(2) .hub-resource-index { color: var(--pink); }

.hub-footer { border-top: 1px solid var(--line); background: #060809; }
.hub-footer__statement {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 80px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hub-footer__statement h2 { max-width: 720px; margin: 0; font-size: 52px; line-height: 1.02; }
.hub-footer__statement .hub-eyebrow { color: var(--pink); }
.hub-footer__fluge {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}
.hub-footer__fluge:hover { color: var(--teal); border-color: #31524e; }
.hub-footer__fluge img { width: 72px; height: 72px; flex: 0 0 auto; object-fit: contain; }
.hub-footer__fluge span,
.hub-footer__fluge small,
.hub-footer__fluge strong,
.hub-footer__fluge em { display: block; }
.hub-footer__fluge small { color: #71807d; font: 600 9px var(--mono); text-transform: uppercase; }
.hub-footer__fluge strong { margin-top: 4px; color: var(--text); font-size: 22px; }
.hub-footer__fluge em { margin-top: 3px; color: #71807d; font-size: 10px; font-style: normal; }
.hub-footer__directory { display: grid; grid-template-columns: minmax(240px, 1fr) minmax(520px, 1.25fr); gap: 80px; padding-top: 48px; padding-bottom: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hub-footer__brand { align-self: start; width: fit-content; display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.hub-footer__brand strong,
.hub-footer__brand small { display: block; font-family: var(--mono); }
.hub-footer__brand strong { font-size: 15px; }
.hub-footer__brand small { margin-top: 4px; color: #667471; font-size: 9px; }
.hub-footer__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.hub-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.hub-footer nav strong { margin-bottom: 6px; color: #e5eeec; font: 650 10px var(--mono); text-transform: uppercase; }
.hub-footer nav a { color: #788683; font-size: 12px; text-decoration: none; }
.hub-footer nav a:hover { color: var(--teal); }
.hub-footer__wordmark { width: 100%; overflow: hidden; padding: 30px 0 16px; color: #27302f; font-size: 132px; line-height: 0.8; font-weight: 850; text-align: center; white-space: nowrap; }
.hub-footer__base { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hub-footer__base small { color: #5c6866; font: 500 9px var(--mono); }

@media (max-width: 1320px) {
  .hub-brand-group { gap: 14px; }
  .hub-brand small { display: none; }
  .hub-fluge { width: 50px; height: 50px; border-radius: 15px; }
  .hub-fluge img { width: 40px; height: 40px; }
  .hub-nav-link { padding: 8px; gap: 6px; font-size: 10px; }
  .hub-nav-link__dash { width: 8px; }
  .hub-nav__tools { gap: 7px; }
}

@media (max-width: 1120px) {
  .hub-nav__links { gap: 4px; }
  .hub-nav__links a[href="#documents"],
  .hub-nav__links a[href="/community.html"] { display: none; }
  .hub-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-resource-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-resource-grid a:nth-child(2) { border-right: 0; }
  .hub-resource-grid a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hub-euclid__body { padding: 50px; }
  .hub-footer__statement { gap: 46px; }
  .hub-footer__directory { grid-template-columns: 200px 1fr; gap: 46px; }
  .hub-footer__wordmark { font-size: 96px; }
}

@media (max-width: 760px) {
  .hub-shell { width: min(calc(100% - 28px), var(--shell)); }
  .hub-nav { min-height: 78px; padding: 14px 20px; }
  .hub-nav__inner { width: 100%; gap: 10px; }
  .hub-brand-group { gap: 8px; }
  .hub-fluge { width: 50px; height: 50px; }
  .hub-fluge img { width: 40px; height: 40px; }
  .hub-nav__links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 14px 16px;
    border-bottom: 1px solid var(--line);
    background: #090d0f;
  }
  .hub-nav__links.is-open { display: flex; }
  .hub-nav__links .hub-nav-link,
  .hub-nav__links a[href="#documents"],
  .hub-nav__links a[href="/community.html"] { width: 100%; display: flex; justify-content: flex-start; padding: 12px; }
  .hub-product-nav { width: 100%; }
  .hub-product-nav__toggle { justify-content: flex-start; }
  .hub-product-nav__menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    border-width: 0;
    transform: none;
    overflow: hidden;
  }
  .hub-product-nav:hover .hub-product-nav__menu,
  .hub-product-nav:focus-within .hub-product-nav__menu,
  .hub-product-nav.is-open .hub-product-nav__menu {
    max-height: 55vh;
    padding: 10px;
    border-width: 1px;
    overflow-y: auto;
    transform: none;
  }
  .hub-nav__tools { margin-left: auto; gap: 7px; }
  .hub-nav__tools .hub-account,
  .hub-nav__tools > .hub-button,
  .hub-social { display: none; }
  .hub-lang { font-size: 11px; }
  .hub-menu-toggle { display: flex; }

  .hub-hero { min-height: 520px; }
  .hub-hero__image { background-position: 65% 23%; background-size: 880px auto; opacity: 0.38; }
  .hub-hero__shade { border-left: 0; background: rgba(5, 8, 10, 0.6); }
  .hub-hero__content { min-height: 440px; padding: 38px 0 94px; justify-content: flex-end; }
  .hub-hero h1 { font-size: 48px; }
  .hub-hero__lead { max-width: 500px; font-size: 21px; }
  .hub-hero__copy { font-size: 14px; }
  .hub-hero__facts { min-height: 78px; grid-template-columns: repeat(2, 1fr); }
  .hub-hero__facts div { padding: 8px 7px; }
  .hub-hero__facts div::before { display: none; }
  .hub-hero__facts div:nth-child(2) { border-right: 0; }
  .hub-hero__facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hub-hero__facts strong { font-size: 12px; }
  .hub-hero__facts span { font-size: 8px; }

  .hub-intro,
  .hub-docs { padding: 66px 0 74px; }
  .hub-section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; padding-top: 22px; }
  .hub-section-head h2,
  .hub-euclid h2 { font-size: 31px; }
  .hub-filters { width: 100%; }
  .hub-product-grid { grid-template-columns: 1fr; }
  .hub-product-card__media { height: 205px; }
  .hub-product-card__open { opacity: 1; transform: none; }
  .hub-product-card__tagline { min-height: 0; }

  .hub-euclid { grid-template-columns: 1fr; }
  .hub-euclid__media { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hub-euclid__body { padding: 48px 22px 58px; }
  .hub-euclid__heading { align-items: flex-start; flex-direction: column; }
  .hub-euclid__capabilities { margin-top: 34px; }
  .hub-euclid__capabilities div { padding: 15px 8px 15px 0; }
  .hub-euclid__capabilities div:not(:first-child) { padding-left: 10px; }
  .hub-euclid__capabilities strong { font-size: 15px; }
  .hub-euclid__capabilities span { font-size: 9px; }
  .hub-resource-grid { grid-template-columns: 1fr; }
  .hub-resource-grid a { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hub-resource-grid a:last-child { border-bottom: 0; }

  .hub-footer__statement { min-height: 0; grid-template-columns: 1fr; gap: 38px; padding-top: 58px; padding-bottom: 58px; }
  .hub-footer__statement h2 { font-size: 38px; }
  .hub-footer__fluge { min-height: 96px; }
  .hub-footer__fluge img { width: 62px; height: 62px; }
  .hub-footer__directory { grid-template-columns: 1fr; gap: 38px; padding-top: 40px; padding-bottom: 40px; }
  .hub-footer__links { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .hub-footer nav { justify-content: flex-start; }
  .hub-footer__wordmark { padding-top: 24px; font-size: 56px; }
  .hub-footer__base { min-height: 70px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 5px; }
}

@media (max-width: 460px) {
  .hub-brand > span:last-child { display: none; }
  .hub-lang { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
