/* ==========================================================================
   Cawoba — Home page layer
   Loaded after styles.css. Asymmetric hero, illustrated diagrams,
   bento feature grid, UI mockups, photo slots, integration hub.
   ========================================================================== */

/* ------------------------- 1. Hero: asymmetric split ---------------------- */
.hero {
  text-align: left;
  padding-block: var(--sp-9) var(--sp-8);
  overflow: visible;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: var(--sp-8);
  align-items: center;
}
.hero h1 {
  max-width: 17ch;
  margin-inline: 0;
  font-size: var(--step-5);
}
.hero .lead {
  margin: var(--sp-5) 0 0;
  text-align: left;
  max-width: 46ch;
}
.hero__actions { justify-content: flex-start; }
.hero__note { text-align: left; }

/* Social proof row */
.proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  max-width: 30rem;
}
.proof__stack { display: flex; }
.proof__stack span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: var(--brand-gradient-soft);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: .6875rem;
  font-weight: 750;
  color: var(--brand-teal);
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.proof__stack span:first-child { margin-left: 0; }
.proof__stack span:last-child { background: var(--ink-900); color: #fff; }
.proof__text { font-size: var(--step--1); color: var(--ink-400); line-height: 1.5; }
.proof__text strong { color: var(--ink-900); font-weight: 650; }

/* ---------------------- 2. Hero art: network graph ----------------------- */
.hero__art {
  position: relative;
  isolation: isolate;
}
.netgraph { width: 100%; height: auto; overflow: visible; }

.netgraph__link {
  fill: none;
  stroke: url(#ng-line);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
  animation: dash-flow 2.6s linear infinite;
}
@keyframes dash-flow { to { stroke-dashoffset: -24; } }

.netgraph__ring {
  fill: none;
  stroke: var(--brand-teal);
  opacity: .28;
  transform-origin: 300px 300px;
  animation: pulse-ring 3.4s ease-out infinite;
}
.netgraph__ring:nth-of-type(2) { animation-delay: 1.15s; }
.netgraph__ring:nth-of-type(3) { animation-delay: 2.3s; }
@keyframes pulse-ring {
  0% { transform: scale(.62); opacity: .34; }
  70% { opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.netgraph__node rect { fill: #fff; stroke: var(--line-strong); stroke-width: 1.4; }
.netgraph__node text {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  fill: var(--ink-700);
}
.netgraph__node .netgraph__sub { font-size: 10.5px; font-weight: 500; fill: var(--ink-300); }
.netgraph__node circle.dot { fill: var(--brand-green); }
.netgraph__node--alt circle.dot { fill: var(--brand-blue); }

.netgraph__hub text {
  font-family: var(--font-display);
  font-weight: 800;
  fill: #fff;
  font-size: 17px;
  letter-spacing: -.02em;
}
.netgraph__hub .netgraph__hubsub {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  fill: rgba(255, 255, 255, .68);
}

/* Floating card overlapping the graph */
.floatcard {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3) var(--sp-4);
  min-width: 190px;
  animation: float-y 6s ease-in-out infinite;
}
.floatcard--a { top: -1%; right: -1%; }
.floatcard--b { bottom: -1%; left: -3%; animation-delay: -3s; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.floatcard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.floatcard__label {
  font-size: .6875rem;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.floatcard__value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink-900);
  margin-top: 2px;
}
.floatcard__meta { font-size: .6875rem; color: var(--ink-300); margin-top: 2px; }

/* -------------------- 3. Angled dark section transition ------------------ */
.section--angled {
  clip-path: polygon(0 34px, 100% 0, 100% 100%, 0 calc(100% - 34px));
  padding-block: calc(var(--sp-10) + 34px);
  margin-block: -12px;
}

/* --------------------- 4. Layer diagram (what is Cawoba) ----------------- */
.split--reverse { grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); }
.split--reverse > *:first-child { order: 2; }
.split--reverse > *:last-child { order: 1; }

.layerdiag { position: relative; }
.layerdiag svg { width: 100%; height: auto; overflow: visible; }

.layerdiag__plane { transition: transform .4s var(--ease); }
.layerdiag:hover .layerdiag__plane--mid { transform: translateY(-6px); }

.layerdiag__caption {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-size: var(--step--1);
  color: var(--ink-400);
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
}
.layerdiag__caption strong { color: var(--ink-900); font-weight: 650; }

.layerdiag__label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.015em;
}
.layerdiag__sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
}
.layerdiag__tick {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ------------------- 5. How it works: connected flow -------------------- */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
/* Dashed rail runs from the first node centre to the last node centre.
   Node is 56px, so its centre sits 28px in from the column edge. */
.flow__rail {
  position: absolute;
  left: 28px;
  right: calc(25% - (var(--sp-5) * .75) - 28px);
  top: 27px;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .28) 0 7px, transparent 7px 15px);
  background-size: 15px 2px;
  background-repeat: repeat-x;
}
.flow__item { position: relative; }
.flow__node {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-900);
  border: 1px solid var(--line-dark-strong);
  color: var(--brand-green);
  position: relative;
  z-index: 2;
  margin-bottom: var(--sp-5);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.flow__node svg { width: 22px; height: 22px; }
.flow__item:hover .flow__node { border-color: var(--brand-teal); transform: translateY(-3px); }
/* Small step label instead of a ghost numeral, so the rail never strikes through it */
.flow__step {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--brand-green);
}
.flow__step::before { content: "STEP "; color: rgba(255, 255, 255, .35); }
.flow__item:nth-child(even) .flow__step { color: var(--brand-blue); }
.flow__item h3 { font-size: 1.125rem; letter-spacing: -.02em; margin-bottom: var(--sp-2); }
.flow__item p { font-size: var(--step--1); color: rgba(255, 255, 255, .6); line-height: 1.65; max-width: 30ch; }
.flow__item:nth-child(even) .flow__node { color: var(--brand-blue); }

/* ---------------------- 6. Bento feature grid --------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
}
.bento__card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.bento__card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.bento__card h3 {
  font-size: 1.1875rem;
  letter-spacing: -.022em;
  margin-block: var(--sp-4) var(--sp-2);
}
.bento__card p { font-size: var(--step--1); color: var(--ink-400); line-height: 1.68; max-width: 44ch; }

.bento__card--feature { grid-column: span 4; display: grid; gap: var(--sp-5); }
.bento__card--tall { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bento__card--half { grid-column: span 2; }
.bento__card--wide { grid-column: span 3; }

.bento__card--dark {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: rgba(255, 255, 255, .68);
}
.bento__card--dark h3 { color: #fff; }
.bento__card--dark p { color: rgba(255, 255, 255, .6); }

.bento__tag {
  display: inline-block;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: var(--sp-4);
}
.bento__card--dark .bento__tag { color: var(--brand-green); }

/* Decorative art inside tall bento card */
.bento__art { padding-top: var(--sp-6); }
.bento__art svg { width: 100%; height: auto; overflow: visible; }

/* --------------------- 7. Realistic UI mockup --------------------------- */
.uimock {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  font-size: 11.5px;
  line-height: 1.5;
}
.uimock__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 9px 12px;
  background: var(--paper-100);
  border-bottom: 1px solid var(--line);
}
.uimock__dots { display: flex; gap: 5px; }
.uimock__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }
.uimock__crumb {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-300);
  letter-spacing: .01em;
}
.uimock__body { padding: 12px 14px 14px; }
.uimock__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: 10px;
}
.uimock__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink-900);
}
.uimock table { width: 100%; border-collapse: collapse; }
.uimock th, .uimock td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink-500);
  white-space: nowrap;
}
.uimock th {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-300);
  border-bottom-color: var(--line-strong);
}
.uimock td.num, .uimock th.num { text-align: right; font-variant-numeric: tabular-nums; }
.uimock td.item { color: var(--ink-800); font-weight: 550; }
.uimock tr:last-child td { border-bottom: 0; }
.uimock__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--line-strong);
}
.uimock__total b {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -.02em;
  color: var(--ink-900);
}
.uimock__actions { display: flex; gap: 6px; margin-top: 11px; }
.uimock__btn {
  padding: 5px 11px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 650;
  background: var(--ink-900);
  color: #fff;
}
.uimock__btn--ghost {
  background: var(--paper);
  color: var(--ink-500);
  border: 1px solid var(--line-strong);
}

/* Compact bar-chart mock */
.barmock {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 84px;
  margin-top: var(--sp-5);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.barmock i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: var(--brand-gradient);
  opacity: .3;
}
.barmock i:nth-child(1) { height: 38%; }
.barmock i:nth-child(2) { height: 55%; opacity: .45; }
.barmock i:nth-child(3) { height: 46%; opacity: .6; }
.barmock i:nth-child(4) { height: 74%; opacity: .78; }
.barmock i:nth-child(5) { height: 100%; opacity: 1; }
.barmock__legend {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-2);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-300);
}

/* Scheme pills mock */
.schememock {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.schememock__pill {
  padding: .3125rem .625rem;
  border-radius: var(--r-full);
  font-size: .6875rem;
  font-weight: 650;
  background: var(--brand-gradient-soft);
  border: 1px solid rgba(52, 185, 138, .25);
  color: #237a5b;
}
.schememock__pill--muted {
  background: var(--paper-100);
  border-color: var(--line);
  color: var(--ink-400);
}

/* ------------------------- 8. Photo slots ------------------------------- */
.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--paper-100);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-6) var(--sp-4) var(--sp-4);
  background: linear-gradient(to top, rgba(13, 21, 38, .86), rgba(13, 21, 38, 0));
  color: #fff;
  font-size: var(--step--1);
  font-weight: 550;
  line-height: 1.45;
}
.photo__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
  padding: .25rem .5rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .9);
  border: 1px dashed var(--line-strong);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* Staggered photo band */
.photoband {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: var(--sp-4);
  align-items: start;
}
.photoband .photo:nth-child(1) { aspect-ratio: 4 / 3; }
.photoband .photo:nth-child(2) { aspect-ratio: 3 / 4; margin-top: var(--sp-7); }
.photoband .photo:nth-child(3) { aspect-ratio: 4 / 3; margin-top: var(--sp-4); }

/* Offset audience cards + in-card photo */
.audience--offset { align-items: start; }
.audience--offset .aud:last-child { margin-top: var(--sp-7); }
.aud__photo {
  aspect-ratio: 8 / 5;
  margin-bottom: var(--sp-5);
  border-radius: var(--r-md);
  box-shadow: none;
}

/* ---------------------- 9. Integration hub ------------------------------ */
.hub {
  display: grid;
  grid-template-columns: 1fr minmax(200px, .82fr) 1fr;
  grid-template-rows: repeat(3, auto);
  gap: var(--sp-4) var(--sp-6);
  align-items: center;
}
/* Explicit placement: 3 integrations left, hub in the middle, 3 right.
   Child order is item, hub, item, item, item, item, item. */
.hub > *:nth-child(1) { grid-area: 1 / 1; }
.hub > *:nth-child(3) { grid-area: 1 / 3; }
.hub > *:nth-child(4) { grid-area: 2 / 1; }
.hub > *:nth-child(5) { grid-area: 2 / 3; }
.hub > *:nth-child(6) { grid-area: 3 / 1; }
.hub > *:nth-child(7) { grid-area: 3 / 3; }

.hub__center {
  grid-area: 1 / 2 / 4 / 3;
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
}
.hub__rings {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hub__rings circle {
  fill: none;
  stroke: var(--line-strong);
  stroke-dasharray: 4 8;
  opacity: .8;
}
.hub__badge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--ink-900);
  color: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 152px;
}
.hub__badge svg { width: 34px; height: 34px; }
.hub__badge b {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: -.02em;
}
.hub__badge span { font-size: .6875rem; color: rgba(255, 255, 255, .6); }

.hub__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.hub__item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hub__logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--paper-100);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 800;
  color: var(--ink-700);
  flex: none;
}
.hub__name {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.015em;
}
.hub__item--soon { opacity: .8; }

/* ------------------------- 10. Quote block ------------------------------ */
.quote {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: var(--sp-7);
  align-items: center;
  padding: var(--sp-7);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background:
    radial-gradient(420px 220px at 88% 4%, rgba(52, 185, 138, .07), transparent 70%),
    var(--paper);
  box-shadow: var(--shadow-md);
}
.quote__portrait {
  width: 148px; height: 148px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.quote__portrait img { width: 100%; height: 100%; object-fit: cover; }
.quote__mark {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: .7;
  color: var(--brand-teal);
  opacity: .3;
}
.quote blockquote {
  margin: var(--sp-2) 0 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.022em;
  color: var(--ink-900);
  text-wrap: pretty;
}
.quote figcaption { margin-top: var(--sp-4); font-size: var(--step--1); color: var(--ink-400); }
.quote figcaption strong { color: var(--ink-800); }
.quote__placeholder {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .25rem .625rem;
  border-radius: var(--r-full);
  border: 1px dashed var(--line-strong);
  background: var(--paper-100);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--sp-3);
}

/* --------------------- 11. Decorative background art -------------------- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
.deco svg { display: block; }
.deco--arcs { top: -60px; right: -120px; width: 460px; }
.deco--dots { bottom: -40px; left: -60px; width: 260px; }
.has-deco { position: relative; overflow: hidden; }
.has-deco > .container { position: relative; z-index: 1; }

/* ------------------------- 12. Responsive ------------------------------- */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__card--feature { grid-column: span 4; }
  .bento__card--tall { grid-column: span 2; grid-row: auto; }
  .bento__card--half { grid-column: span 2; }
  .bento__card--wide { grid-column: span 2; }
  .hero__grid { gap: var(--sp-6); }
  .floatcard { min-width: 168px; }
}

@media (max-width: 900px) {
  .hero { padding-block: var(--sp-8) var(--sp-7); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero h1 { max-width: 22ch; }
  .hero .lead { max-width: 58ch; }
  .hero__art { max-width: 520px; margin-inline: auto; width: 100%; }
  .floatcard--a { right: 0; }
  .floatcard--b { left: 0; }

  .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 1; }
  .split--reverse > *:last-child { order: 2; }

  .section--angled {
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 calc(100% - 20px));
    padding-block: calc(var(--sp-10) + 20px);
  }

  .flow { grid-template-columns: 1fr 1fr; row-gap: var(--sp-7); }
  .flow__rail { display: none; }

  .photoband { grid-template-columns: 1fr 1fr; }
  .photoband .photo:nth-child(2) { margin-top: 0; }
  .photoband .photo:nth-child(3) { margin-top: 0; grid-column: span 2; aspect-ratio: 16 / 9; }

  .hub { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .hub > *:nth-child(n) { grid-area: auto; }
  .hub__center { grid-column: 1 / -1; order: -1; margin-bottom: var(--sp-3); }
  .hub__rings { display: none; }

  .audience--offset .aud:last-child { margin-top: 0; }

  .quote { grid-template-columns: 1fr; gap: var(--sp-5); padding: var(--sp-6); }
  .quote__portrait { width: 108px; height: 108px; }

  .deco--arcs { width: 320px; right: -100px; }
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--feature,
  .bento__card--tall,
  .bento__card--half,
  .bento__card--wide { grid-column: span 1; }
  .flow { grid-template-columns: 1fr; }
  .photoband { grid-template-columns: 1fr; }
  .photoband .photo:nth-child(3) { grid-column: span 1; aspect-ratio: 4 / 3; }
  .hub { grid-template-columns: 1fr; }
  .proof { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .uimock { font-size: 10.5px; }
  .uimock th, .uimock td { padding: 5px 6px; }
  .floatcard--a, .floatcard--b { position: static; margin-top: var(--sp-4); animation: none; }
  .hero__art { max-width: 100%; }

  /* The graph scales down with the viewport, so scale text up in user units
     and drop the secondary labels to keep the nodes legible. */
  /* +9px recentres the label in the chip now that the sub-line is gone */
  .netgraph__node text { font-size: 18px; transform: translateY(9px); }
  .netgraph__node .netgraph__sub { display: none; }
  .netgraph__hub text { font-size: 22px; }
  .netgraph__hub .netgraph__hubsub { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .netgraph__link, .netgraph__ring, .floatcard { animation: none; }
  .bento__card:hover, .hub__item:hover, .flow__item:hover .flow__node { transform: none; }
}
