/*
 * OpenEnvision · Black Swan identity
 * Three-colour system: black, white, red.
 */

:root {
  --ink: #050505;
  --ink-soft: #111111;
  --paper: #ffffff;
  --sheet: #ffffff;
  --line: rgba(5, 5, 5, 0.18);
  --line-dark: rgba(255, 255, 255, 0.24);
  --muted: rgba(5, 5, 5, 0.62);
  --red: #df1f26;
  --red-dark: #b80f16;
  --green: #df1f26;
  --blue: #df1f26;
  --gold: #df1f26;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.09);
  --page-gutter: clamp(22px, 4.7vw, 72px);
  --page-width: 1360px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

html {
  background: var(--ink);
}

body,
.research-page-main,
.publications-main,
.resources-main,
.team-main,
.news-main {
  color: var(--ink);
  background: var(--paper);
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
.brand,
.button,
.footer-brand {
  font-family: var(--mono);
}

::selection {
  color: var(--white, #fff);
  background: var(--red);
}

/* Header */
.site-header,
.site-header.is-scrolled,
.site-header.nav-active,
.home-page .site-header:not(.is-scrolled):not(.nav-active),
.join-page .site-header:not(.is-scrolled):not(.nav-active) {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 var(--page-gutter);
  color: var(--ink);
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled,
.site-header.nav-active {
  height: 70px;
}

.brand {
  gap: 10px;
  padding-right: 28px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.045em;
  border-right: 2px solid var(--ink);
}

.site-header.is-scrolled .brand,
.site-header.nav-active .brand {
  border-right-color: var(--ink);
}

.brand-logo,
.site-header.is-scrolled .brand-logo,
.site-header.nav-active .brand-logo,
.site-header:not(.is-scrolled):not(.nav-active) .brand-logo,
.home-page .site-header:not(.is-scrolled):not(.nav-active) .brand-logo,
.join-page .site-header:not(.is-scrolled):not(.nav-active) .brand-logo {
  width: 56px;
  height: 48px;
  filter: none;
  opacity: 1;
}

.site-nav {
  width: auto;
  max-width: none;
  flex: 0 1 auto;
  gap: clamp(16px, 1.9vw, 30px);
  margin-right: 0;
  margin-left: auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.site-nav a {
  padding: 13px 0;
  white-space: nowrap;
  opacity: 1;
}

.site-nav a::after {
  bottom: 4px;
  height: 3px;
  border-radius: 0;
  background: var(--red);
}

.nav-toggle {
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 0;
}

/* Shared brand language */
.eyebrow,
.section-kicker,
.artifact-card span,
.join-card span,
.row-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-kicker::after,
.eyebrow::after {
  width: 44px;
  height: 2px;
  background: var(--red);
  opacity: 1;
}

.button {
  min-height: 52px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
  border-width: 2px;
  border-radius: 0;
  box-shadow: none;
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: none;
}

.button-primary:hover {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.button-secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: #fff;
  backdrop-filter: none;
}

.button-secondary:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.button-dark {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

/* Homepage hero */
.home-hero {
  height: auto;
  min-height: min(920px, 100svh);
  padding-top: 82px;
  overflow: hidden;
  color: var(--ink);
  border-bottom: 10px solid var(--red);
  background: #fff;
}

.home-hero::before {
  inset: 82px auto 0 50%;
  width: 2px;
  height: auto;
  background: var(--ink);
  filter: none;
  transform: none;
  animation: none;
}

.home-hero::after {
  right: auto;
  bottom: 46px;
  left: var(--page-gutter);
  width: 72px;
  height: 8px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  opacity: 1;
}

#starfield,
.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  display: grid;
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: calc(min(920px, 100svh) - 82px);
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
  padding: 82px 0 96px;
  margin: 0 auto;
}

.hero-copy-block {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(72px, 8vw, 126px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.home-hero h1::after {
  display: block;
  width: min(210px, 34%);
  height: 10px;
  margin-top: 34px;
  content: "";
  background: var(--red);
}

.hero-copy {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

.hero-actions {
  gap: 12px;
  margin-top: 36px;
}

.hero-swan {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  isolation: isolate;
}

.hero-swan::before {
  position: absolute;
  z-index: -2;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow:
    28px 28px 0 #fff,
    30px 30px 0 var(--ink);
}

.hero-swan::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: 6%;
  width: 42%;
  height: 36%;
  content: "";
  background: var(--red);
}

.hero-swan img {
  width: min(43vw, 650px);
  max-width: 100%;
  height: auto;
  filter: contrast(1.12);
  transform: translate(-1%, -1%);
}

.hero-swan-index,
.hero-swan-caption {
  position: absolute;
  z-index: 3;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-swan-index {
  top: 4%;
  right: 0;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--red);
}

.hero-swan-caption {
  bottom: 0;
  left: 2%;
  padding: 10px 12px;
  color: #fff;
  background: var(--ink);
}

/* Homepage sections */
.section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.statement-section {
  color: var(--ink);
  background: #fff;
}

.statement-section::before {
  top: 84px;
  right: 4%;
  width: 360px;
  height: 360px;
  border: 2px solid var(--ink);
  border-radius: 58% 42% 62% 38%;
  opacity: 0.08;
  transform: rotate(-24deg);
}

.statement-section::after {
  top: 218px;
  right: -3%;
  width: 310px;
  height: 310px;
  border: 8px solid var(--red);
  border-radius: 72% 28% 70% 30%;
  opacity: 0.1;
  transform: rotate(-31deg);
}

.statement h2 {
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.065em;
}

.statement p:last-child {
  color: var(--muted);
  font-weight: 600;
}

.metric-strip {
  border-top: 2px solid var(--ink);
}

.metric-strip div {
  border-left: 1px solid var(--ink);
}

.metric-strip div::before {
  width: 10px;
  height: 10px;
  border: 0;
  background: var(--red);
  transform: none;
}

.metric-strip strong {
  color: var(--ink);
  font-weight: 900;
}

.metric-strip span {
  color: var(--muted);
}

.preview-section {
  color: #fff;
  background: var(--ink);
}

.preview-section::before {
  top: -210px;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 2px solid #fff;
  border-radius: 56% 44% 68% 32%;
  box-shadow: none;
  opacity: 0.12;
  transform: rotate(-24deg);
}

.preview-section .section-head h2 {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.preview-card {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.34);
}

.preview-card:first-child {
  border-top-color: rgba(255, 255, 255, 0.34);
}

.preview-card:hover {
  padding-right: 28px;
  padding-left: 28px;
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.preview-card h3,
.preview-card:hover h3 {
  color: inherit;
  font-weight: 900;
}

.preview-card p {
  color: rgba(255, 255, 255, 0.68);
}

.preview-card:hover p {
  color: rgba(5, 5, 5, 0.66);
}

.preview-card span,
.preview-card:nth-child(2) span,
.preview-card:nth-child(3) span,
.preview-card:nth-child(4) span {
  margin: 0;
  color: var(--red);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.preview-card::after {
  color: var(--red);
  font-weight: 900;
}

.home-system-section {
  color: var(--ink);
  background: #fff;
}

.home-system-section::before {
  background-image: none;
}

.home-system-shell {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.home-system-copy h2,
.home-system-flow h3 {
  font-weight: 900;
}

.home-system-copy > p:last-child,
.home-system-flow p {
  color: var(--muted);
}

.home-system-flow article {
  border-top-color: var(--ink);
}

.home-system-flow span {
  color: var(--red);
  font-weight: 900;
}

.resources-band {
  color: #fff;
  background: var(--red);
}

.resources-band::before {
  right: 0;
  left: 0;
  height: 2px;
  background: #fff;
}

.resources-band .section-kicker,
.resources-band h2 {
  color: #fff;
}

.resources-band .section-kicker::after {
  background: #fff;
}

.resources-band .button-dark {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.resources-band .button-dark:hover {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

/* Interior hero family */
.research-landing,
.publications-hero,
.resources-hero,
.news-hero,
.network-section,
.join-page .join-landing {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom: 10px solid var(--red);
  background: var(--ink);
}

.research-landing::before,
.publications-hero::before,
.resources-hero::before,
.network-section::before,
.join-page .join-landing::before {
  position: absolute;
  inset: auto 2% -20% auto;
  width: min(46vw, 670px);
  height: min(46vw, 670px);
  content: "";
  background: url("../img/brand/openenvision_mark.png") center / contain no-repeat;
  filter: grayscale(1) invert(1);
  opacity: 0.09;
  mask-image: none;
  transform: rotate(-5deg);
  pointer-events: none;
}

.research-landing::after,
.publications-hero::after,
.resources-hero::after,
.network-section::after,
.join-page .join-landing::after {
  position: absolute;
  right: var(--page-gutter);
  bottom: 0;
  left: var(--page-gutter);
  width: auto;
  height: 2px;
  min-width: 0;
  min-height: 0;
  content: "";
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.research-landing,
.publications-hero,
.resources-hero {
  min-height: min(720px, 100svh);
  padding-top: 164px;
}

.research-landing-copy h1,
.publications-hero-copy h1,
.resources-hero-copy h1,
.network-head h1,
.news-hero-copy h1,
.join-page .join-landing-copy h1 {
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.075em;
}

.research-landing-copy p:last-of-type,
.publications-hero-copy p:last-of-type,
.resources-hero-copy p:last-of-type,
.news-hero-copy > p:last-child,
.join-page .join-landing-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.research-anchors a,
.publication-anchors a,
.resource-anchors a,
.join-page .join-anchors a {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 0;
  background: transparent;
}

.research-anchors a:hover,
.publication-anchors a:hover,
.resource-anchors a:hover,
.join-page .join-anchors a:hover {
  color: #fff;
  border-color: var(--red);
}

.research-visual,
.publication-record-panel,
.resource-console,
.join-network-visual,
.network-detail,
.news-brief {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: var(--ink);
  box-shadow: 18px 18px 0 var(--red);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.research-visual::before,
.publication-record-panel::before,
.resource-console::before,
.join-network-visual::before,
.news-brief::before {
  background-image: none;
}

.system-core,
.network-core {
  color: #fff;
  background: var(--red);
  box-shadow: none;
}

.system-node,
.network-node {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: var(--ink);
}

/* Editorial content and cards */
.research-focus-section,
.research-method-section,
.publication-feature-section,
.publication-index-section,
.resource-types-section,
.worldfoundry-section,
.catalog-preview-section,
.release-workflow-section,
.release-standards-section,
.news-feed-section,
.team-showcase,
.join-page .join-opportunities-section {
  background: #fff;
}

.research-focus-head h2,
.research-method-copy h2,
.publication-section-head h2,
.resource-section-head h2,
.release-workflow-copy h2,
.release-standards-head h2,
.news-feed-head h2,
.join-page .join-section-head h2,
.join-page .join-fit-copy h2,
.team-title-block h1 {
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.065em;
}

.research-focus-card,
.resource-type-card,
.team-member,
.publication-featured-card,
.publication-index-row,
.publication-next,
.worldfoundry-panel,
.catalog-preview-panel,
.release-workflow-panel,
.release-standards-grid,
.join-value-list article,
.join-page .join-contact-inner {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.research-focus-card:hover,
.resource-type-card:hover,
.team-member:hover,
.join-value-list article:hover {
  border-color: var(--red);
  box-shadow: 10px 10px 0 var(--red);
  transform: translate(-4px, -4px);
}

.research-focus-card,
.resource-type-card,
.focus-world,
.focus-multimodal,
.focus-vision,
.focus-physical,
.resource-code-card,
.resource-model-card,
.resource-data-card,
.resource-benchmark-card {
  --focus-accent: var(--red);
  --resource-accent: var(--red);
}

.research-focus-card::before,
.resource-type-card::before {
  height: 7px;
  background: var(--red);
}

.research-focus-card::after,
.resource-type-card::after {
  display: none;
}

.focus-icon,
.resource-icon,
.release-standards-grid .release-standard-icon {
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 0;
  background: #fff;
}

.focus-label,
.focus-index,
.resource-type-card > span,
.release-standard-index,
.member-index,
.index-year {
  color: var(--red);
  font-weight: 900;
}

.focus-points li,
.worldfoundry-tags span,
.publication-tags span,
.index-template-links span,
.member-tags span {
  color: var(--ink);
  border-color: var(--ink);
  border-radius: 0;
  background: #fff;
}

.research-method-panel,
.release-workflow-panel {
  border-radius: 0;
  background: var(--ink);
}

.research-loop-list div,
.release-steps div,
.release-standards-grid div {
  background: #fff;
}

.publication-year-block,
.worldfoundry-release-card,
.catalog-board {
  color: #fff;
  background: var(--ink);
}

.publication-mini-figure i,
.publication-mini-figure b,
.catalog-board i,
.catalog-board b,
.worldfoundry-release-card i {
  background: var(--red);
}

.publication-index-row:hover {
  border-color: var(--red);
}

.resource-hub-item span,
.resource-console .console-top span,
.console-status span {
  color: var(--red);
}

/* Team and collaboration map */
.network-section {
  background: var(--ink);
}

.map-card {
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: var(--ink);
}

.collab-map .leaflet-tile-pane {
  filter: grayscale(1) contrast(1.08);
}

.collab-map .leaflet-control-attribution {
  filter: grayscale(1);
}

.map-toolbar button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: var(--ink);
}

.map-toolbar button:hover,
.map-toolbar button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.partner-strip,
.partner-logo-wall {
  border: 2px solid #fff;
  border-radius: 0;
  background: var(--ink);
}

.partner-strip div {
  color: #fff;
  border-left-color: rgba(255, 255, 255, 0.34);
  background: var(--ink);
}

.partner-logo-card,
.partner-logo-card.is-dark {
  border-radius: 0;
  background: #fff;
}

.team-member-featured {
  color: #fff;
  background: var(--ink);
}

.team-member-featured h2,
.team-member-featured h3,
.team-member-featured .member-copy,
.team-member-featured .member-index {
  color: #fff;
}

.member-portrait,
.team-member-featured .member-portrait {
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  border-radius: 0;
  background: var(--red);
}

.member-portrait-link:hover,
.member-portrait-link:focus-visible,
.team-member-featured .member-portrait-link:hover,
.team-member-featured .member-portrait-link:focus-visible {
  color: #fff;
  background: var(--ink);
}

/* News */
.news-hero {
  background: var(--ink);
}

.news-hero::before {
  position: absolute;
  right: -3%;
  bottom: -34%;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  content: "";
  background: url("../img/brand/openenvision_mark.png") center / contain no-repeat;
  filter: grayscale(1) invert(1);
  opacity: 0.08;
}

.news-month {
  border: 2px solid var(--ink);
  border-radius: 0;
}

.news-month-summary {
  color: var(--ink);
  background: #fff;
}

.news-month-summary:hover {
  color: #fff;
  background: var(--ink);
}

.news-month-summary:hover span,
.news-month-summary:hover em {
  color: #fff;
}

.news-month-summary:hover em {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.news-month-summary:hover::after {
  background: var(--red);
}

.news-day time strong,
.news-day > div > p:first-child {
  color: var(--red);
  font-weight: 900;
}

.news-day a,
.news-links a {
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
}

.news-day a:hover,
.news-links a:hover {
  border-color: var(--red);
  background: var(--red);
}

/* Join */
.join-page,
body.join-page {
  --join-ink: #050505;
  --join-paper: #ffffff;
  --join-text: #050505;
  --join-muted: rgba(5, 5, 5, 0.62);
  --join-line: rgba(5, 5, 5, 0.22);
  --join-red: #df1f26;
  background: #fff;
}

.network-signals rect,
.network-signals rect:nth-child(3),
.network-signals rect:nth-child(4),
.network-signals rect:nth-child(7),
.network-signals rect:nth-child(8) {
  fill: #fff;
}

.network-signals rect:nth-child(even) {
  fill: var(--red);
}

.join-page .join-landing {
  background: var(--ink);
}

body.join-page {
  background: #fff;
}

.join-page .button-primary,
.join-page .network-core {
  color: #fff;
  background: var(--red);
}

.join-page .join-scope-rail {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--ink);
}

.join-page .join-scope-rail > div {
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--ink);
}

.join-page .join-scope-rail span,
.join-page .join-opportunity-index,
.join-page .join-value-list span,
.join-page .join-value-list article:nth-child(2) span,
.join-page .join-value-list article:nth-child(3) span,
.join-page .join-value-list article:nth-child(4) span,
.join-page .join-value-list article:nth-child(5) span {
  color: var(--red);
}

.join-page .join-value-list article::before,
.join-page .join-value-list article:nth-child(2)::before,
.join-page .join-value-list article:nth-child(3)::before,
.join-page .join-value-list article:nth-child(4)::before,
.join-page .join-value-list article:nth-child(5)::before,
.join-page .join-value-list article:nth-child(6)::before {
  background: var(--red);
}

.join-page .join-fit-section,
.join-page .join-contact-section {
  background: var(--ink);
}

.join-page .join-fit-section::before,
.join-page .join-contact-section::before {
  background-image: none;
}

.join-page .join-fit-copy h2 {
  color: #fff;
}

.join-page .join-contact-inner {
  color: var(--ink);
  box-shadow: 18px 18px 0 var(--red);
}

.join-page .join-contact-actions {
  border: 2px solid var(--ink);
  border-radius: 0;
}

.join-page .contact-link-card {
  color: var(--ink);
  border-top-color: var(--ink);
  background: #fff;
}

.join-page .contact-link-card:hover {
  color: #fff;
  background: var(--red);
}

.join-page .contact-logo-wrap {
  border-radius: 0;
  background: #fff;
}

/* Community wrapper; the external site remains legible but monochrome. */
body.community-page {
  --community-border: rgba(255, 255, 255, 0.4);
  --community-surface: #050505;
  color: #fff;
  background: var(--ink);
}

.community-main {
  background: var(--ink);
}

.community-toolbar {
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 0;
  background: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.community-toolbar::after {
  height: 4px;
  background: var(--red);
}

.community-external-link {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  background: var(--ink);
}

.community-external-link:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.community-frame-wrap {
  border: 2px solid #fff;
  border-radius: 0;
  background: #fff;
  box-shadow: 18px 18px 0 var(--red);
}

.community-native-surface {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 1 1 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  overflow: hidden;
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 18px 18px 0 var(--red);
}

.community-native-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 112px);
  color: var(--ink);
}

.community-native-copy h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(54px, 5.8vw, 88px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.community-native-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.68;
}

.community-native-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.community-native-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.community-native-visual::before {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.3;
}

.community-native-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 36%;
  content: "";
  background: var(--red);
}

.community-native-visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 650px);
  filter: grayscale(1) invert(1);
  opacity: 0.94;
}

.community-native-visual span,
.community-native-visual strong {
  position: absolute;
  z-index: 2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-native-visual span {
  top: 28px;
  right: 28px;
  padding-bottom: 8px;
  color: #fff;
  font-size: 13px;
  border-bottom: 3px solid var(--red);
}

.community-native-visual strong {
  bottom: 30px;
  left: 30px;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 13px;
  background: #fff;
}

.community-frame {
  filter: none;
}

.community-frame-loading {
  color: var(--ink);
  background: #fff;
}

.community-loading-track {
  border-radius: 0;
  background: var(--ink);
}

.community-loading-track i {
  border-radius: 0;
  background: var(--red);
}

.community-mobile-launch {
  color: var(--ink);
  background: #fff;
}

.community-mobile-launch-inner {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  box-shadow: 12px 12px 0 var(--red);
}

.community-mobile-launch p {
  color: var(--muted);
}

.community-mobile-primary {
  color: #fff;
  border-radius: 0;
  background: var(--red);
  box-shadow: none;
}

.community-mobile-links a {
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
}

.community-mobile-links a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

/* Footer */
.site-footer,
.join-page .site-footer {
  color: rgba(255, 255, 255, 0.66);
  border-top: 0;
  background: var(--ink);
}

.site-footer::before,
.join-page .site-footer::before {
  right: 0;
  left: 0;
  height: 6px;
  background: var(--red);
}

.footer-logo {
  filter: grayscale(1) invert(1);
  opacity: 1;
}

.footer-brand,
.footer-links {
  color: #fff;
}

.footer-brand {
  font-weight: 900;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-copyright {
  border-top-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-active,
  .home-page .site-header:not(.is-scrolled):not(.nav-active),
  .join-page .site-header:not(.is-scrolled):not(.nav-active) {
    right: 0;
    left: 0;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-nav {
    max-width: none;
    gap: 14px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 46px;
  }

  .hero-swan {
    min-height: 540px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 112px;
  }

  .home-hero::before {
    display: none;
  }

  .hero-copy-block {
    max-width: 760px;
  }

  .hero-swan {
    min-height: 520px;
  }

  .hero-swan::before {
    width: min(58vw, 500px);
  }

  .hero-swan img {
    width: min(66vw, 580px);
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-active,
  .join-page .site-header:not(.is-scrolled):not(.nav-active) {
    top: 0;
    right: 0;
    left: 0;
    height: 68px;
    padding: 0 16px 0 18px;
  }

  .brand {
    padding-right: 0;
    font-size: 18px;
    border-right: 0;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo,
  .site-header.nav-active .brand-logo {
    width: 46px;
    height: 40px;
  }

  .site-nav {
    top: 68px;
    right: 0;
    left: 0;
    padding: 10px 18px 18px;
    color: var(--ink);
    border: 0;
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 36px rgba(5, 5, 5, 0.12);
    backdrop-filter: none;
    font-size: 14px;
  }

  .site-nav a {
    padding: 14px 6px;
    border-bottom-color: rgba(5, 5, 5, 0.14);
  }

  .home-hero {
    padding-top: 68px;
  }

  .home-hero h1 {
    font-size: clamp(60px, 15vw, 94px);
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .hero-swan-index {
    right: 4%;
  }

  .research-landing,
  .publications-hero,
  .resources-hero,
  .news-hero,
  .network-section,
  .join-page .join-landing {
    padding-top: 116px;
  }

  .research-landing::before,
  .publications-hero::before,
  .resources-hero::before,
  .network-section::before,
  .join-page .join-landing::before {
    width: 70vw;
    height: 70vw;
    opacity: 0.06;
  }

  .research-visual,
  .publication-record-panel,
  .resource-console,
  .join-network-visual,
  .network-detail,
  .news-brief,
  .join-page .join-contact-inner,
  .community-frame-wrap {
    box-shadow: 10px 10px 0 var(--red);
  }

  .metric-strip div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 15.5vw, 72px);
    line-height: 0.88;
  }

  .home-hero h1::after {
    height: 7px;
    margin-top: 24px;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-swan {
    min-height: 380px;
  }

  .hero-swan::before {
    width: min(78vw, 370px);
    box-shadow:
      14px 14px 0 #fff,
      16px 16px 0 var(--ink);
  }

  .hero-swan::after {
    right: -10%;
    bottom: 7%;
  }

  .hero-swan img {
    width: min(92vw, 430px);
  }

  .hero-swan-index {
    top: 0;
  }

  .hero-swan-caption {
    left: 0;
  }

  .metric-strip div {
    padding-right: 12px;
    padding-left: 12px;
  }

  .preview-card:hover {
    padding-right: 16px;
    padding-left: 16px;
  }

  .research-focus-card:hover,
  .resource-type-card:hover,
  .team-member:hover,
  .join-value-list article:hover {
    box-shadow: 6px 6px 0 var(--red);
    transform: translate(-2px, -2px);
  }

  .resources-band {
    align-items: stretch;
  }

  .resources-band .button-dark {
    width: 100%;
  }

  .community-main {
    padding-top: 84px;
  }

  .community-native-surface {
    grid-template-columns: 1fr;
  }

  .community-native-copy {
    padding: 52px 24px;
  }

  .community-native-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .community-native-actions,
  .community-native-actions .button {
    width: 100%;
  }

  .community-native-visual {
    min-height: 430px;
  }
}

@media (max-width: 799px) {
  .community-frame {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-swan img,
  .hero-swan::before,
  .hero-swan::after {
    animation: none;
    transition: none;
  }
}

/* ---------------------------------------------------------------
   Legibility & bugfix pass (2026-07-20)
   - larger base type across sections
   - full-colour partner crests with labels that wrap instead of clip
   - compact red member portraits that no longer overlap the label
   - hover states keep their text visible
   - research system nodes sized to fit their labels
   --------------------------------------------------------------- */

.hero-copy {
  font-size: clamp(19px, 1.5vw, 23px);
}

.statement p:last-child {
  font-size: 19px;
}

.metric-strip strong {
  font-size: 21px;
}

.metric-strip span {
  font-size: 15px;
}

.preview-card h3 {
  font-size: 26px;
}

.preview-card p {
  font-size: 15px;
}

.member-index {
  font-size: 14px;
}

.member-copy p {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.member-tags span {
  padding: 9px 13px;
  font-size: 13px;
}

.partner-logo-card::after {
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: normal;
  text-overflow: clip;
}

.news-brief span {
  font-size: 13px;
}

.news-brief strong {
  font-size: 20px;
}

.news-day > div > p:first-child {
  font-size: 13px;
  letter-spacing: 0.1em;
}

.system-core {
  width: clamp(96px, 11.5vw, 124px);
  height: clamp(96px, 11.5vw, 124px);
  font-size: clamp(14px, 1.35vw, 17px);
}

.system-node {
  width: clamp(94px, 11.5vw, 124px);
  height: clamp(94px, 11.5vw, 124px);
  padding: 8px;
  font-size: clamp(11px, 1.1vw, 13.5px);
  font-weight: 800;
  line-height: 1.22;
}

@media (min-width: 821px) and (max-width: 1000px) {
  .site-nav {
    gap: 10px;
    font-size: 12px;
  }
}

/* Numbering legibility: list/card indices sized to their headings */
.home-system-flow span {
  font-size: 20px;
}

.research-loop-list span,
.resource-type-card > span {
  font-size: 15px;
}

/* Team map: selected-region label matches other kickers */
.detail-label {
  font-size: 13px;
}

/* Icons keep their real colours everywhere; filtered-out partner
   cards dim with opacity only instead of going grey */
.partner-logo-card.is-muted {
  filter: none;
}

/* WorldFoundry: retire legacy teal accents; headline fits narrow screens */
.worldfoundry-copy {
  background: #fff;
}

.worldfoundry-copy h2 {
  font-size: clamp(30px, 6.5vw, 64px);
}

.worldfoundry-card-top span,
.worldfoundry-card-row span {
  color: var(--red);
  font-size: 13px;
}

.worldfoundry-card-top {
  background: rgba(255, 255, 255, 0.07);
}

.worldfoundry-actions a.is-docs {
  color: #fff;
  background: var(--red);
}

.worldfoundry-actions a.is-docs:hover {
  color: #fff;
  background: var(--ink);
}

.worldfoundry-actions a:focus-visible,
a.worldfoundry-card-row:focus-visible {
  outline-color: var(--red);
}

/* Join CTA: on-theme red, square corners */
.join-page .join-actions .button-primary {
  border-color: transparent;
  border-radius: 0;
  background: var(--red);
  box-shadow: none;
}

/* ---------------------------------------------------------------
   Terminal type layer (2026-07-20)
   Headings, numbering, and labels speak in a monospace "console"
   voice; body copy stays Arial for reading comfort. Adds shell
   prompt markers and the typed hero title with a blinking caret.
   --------------------------------------------------------------- */

/* Labels, numbering, chips, and console-adjacent UI go monospace */
.eyebrow,
.section-kicker,
.artifact-card span,
.join-card span,
.row-number,
.preview-card span,
.home-system-flow span,
.research-loop-list span,
.resource-type-card > span,
.release-standard-index,
.focus-index,
.focus-label,
.member-index,
.index-year,
.hero-swan-index,
.hero-swan-caption,
.metric-strip strong,
.metric-strip span,
.member-tags span,
.focus-points li,
.worldfoundry-tags span,
.publication-tags span,
.index-template-links span,
.news-month-summary span,
.news-day time span,
.news-day time strong,
.news-day > div > p:first-child,
.news-brief span,
.news-links a,
.news-day a,
.detail-label,
.network-counts span,
.map-toolbar button,
.partner-strip span,
.partner-logo-card::after,
.system-core,
.system-node,
.research-visual-head span,
.research-anchors a,
.publication-anchors a,
.resource-anchors a,
.join-page .join-anchors a,
.join-page .join-scope-rail span,
.join-page .join-opportunity-index,
.community-native-visual span,
.community-native-visual strong,
.site-nav {
  font-family: var(--mono);
}

/* Shell prompt markers */
.eyebrow::before,
.section-kicker::before {
  content: "> ";
}

.hero-swan-caption::before {
  color: var(--red);
  content: "$ ";
}

.eyebrow,
.section-kicker {
  letter-spacing: 0.08em;
}

/* Mono runs wider than Arial: retune display sizes and tracking */
.home-hero h1 {
  font-size: clamp(36px, 8.6vw, 100px);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.statement h2 {
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.preview-section .section-head h2 {
  font-size: clamp(34px, 3.7vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-system-copy h2 {
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.resources-band h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.research-focus-head h2,
.research-method-copy h2,
.publication-section-head h2,
.resource-section-head h2,
.release-workflow-copy h2,
.release-standards-head h2,
.news-feed-head h2,
.join-page .join-section-head h2,
.join-page .join-fit-copy h2 {
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.team-title-block h1 {
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.research-landing-copy h1,
.publications-hero-copy h1,
.resources-hero-copy h1,
.network-head h1,
.news-hero-copy h1,
.join-page .join-landing-copy h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.community-native-copy h2 {
  font-size: clamp(38px, 4.6vw, 70px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.worldfoundry-copy h2 {
  font-size: clamp(26px, 5.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.member-copy h2,
.team-member-featured .member-copy h2 {
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.preview-card h3 {
  font-size: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Nav: mono metrics need one size down to stay on a single line */
.site-nav {
  font-size: 14px;
}

@media (max-width: 1180px) {
  .site-nav {
    font-size: 12.5px;
  }
}

@media (min-width: 821px) and (max-width: 1000px) {
  .site-nav {
    gap: 10px;
    font-size: 11.5px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    font-size: 14px;
  }
}

/* Typed hero title with blinking caret */
.home-hero h1 .typed-title {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  animation: oe-typing 1.3s steps(12, end) 150ms backwards;
}

.home-hero h1 .typed-title::after {
  display: inline-block;
  width: 0.52em;
  height: 0.1em;
  margin-left: 0.08em;
  content: "";
  background: var(--red);
  animation: oe-caret 1.1s steps(1, end) infinite;
}

@keyframes oe-typing {
  from {
    width: 0;
  }

  to {
    width: calc(12ch + 0.66em);
  }
}

@keyframes oe-caret {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero h1 .typed-title,
  .home-hero h1 .typed-title::after {
    animation: none;
  }
}

/* Primary navigation dropdown */
.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
  color: inherit;
}

.nav-dropdown summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-dropdown summary:hover,
.nav-dropdown[open] summary,
.nav-dropdown.is-current summary {
  opacity: 1;
}

.nav-dropdown summary:hover::after,
.nav-dropdown[open] summary::after,
.nav-dropdown.is-current summary::after {
  transform: scaleX(1);
}

.nav-dropdown summary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: -16px;
  display: grid;
  min-width: 182px;
  padding: 8px;
  color: var(--ink);
  border: 1px solid rgba(5, 7, 13, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(5, 7, 13, 0.16);
}

.site-nav .nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 5px;
  opacity: 1;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav .nav-dropdown-menu a::after {
  display: none;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a[aria-current="page"] {
  color: var(--red);
  background: rgba(240, 74, 58, 0.08);
}

@media (max-width: 820px) {
  .site-nav {
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }

  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(5, 7, 13, 0.14);
  }

  .nav-dropdown summary {
    justify-content: space-between;
    padding: 15px 6px;
    opacity: 1;
  }

  .nav-dropdown summary::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    color: inherit;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .nav-dropdown-menu a {
    padding: 12px 14px;
    border: 0;
    border-left: 2px solid var(--red);
    border-radius: 0;
    background: rgba(240, 74, 58, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown summary,
  .nav-dropdown summary::after,
  .nav-dropdown summary svg,
  .site-nav .nav-dropdown-menu a {
    transition: none;
  }
}

/* Foresight — OpenEnvision AI community */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.foresight-page {
  --foresight-gutter: clamp(22px, 4.7vw, 72px);
  --foresight-rule: 2px solid var(--ink);
  color: var(--ink);
  background: #fff;
}

.foresight-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.foresight-main {
  overflow: hidden;
  background: #fff;
}

.foresight-main h1,
.foresight-main h2,
.foresight-main h3,
.foresight-main strong,
.foresight-main button,
.foresight-main a {
  font-family: var(--mono);
}

.foresight-section-index {
  margin: 0 0 28px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.foresight-section-index::before {
  content: none;
}

.foresight-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 98px));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  padding: 132px var(--foresight-gutter) 60px;
  border-bottom: var(--foresight-rule);
  background: #fff;
}

.foresight-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.foresight-hero h1 {
  margin: 0;
  font-size: clamp(76px, 9.2vw, 148px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.foresight-hero-copy > p {
  max-width: 720px;
  margin: 42px 0 0;
  font-family: var(--mono);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.72;
}

.foresight-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.foresight-button,
.foresight-inline-action,
.foresight-closing a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 800;
  border: 2px solid currentColor;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.foresight-button:hover,
.foresight-inline-action:hover,
.foresight-closing a:hover {
  transform: translateY(-3px);
}

.foresight-button-primary {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.foresight-button-primary:hover {
  color: var(--red);
  background: #fff;
}

.foresight-button-secondary {
  color: var(--ink);
  background: #fff;
}

.foresight-button-secondary:hover {
  color: #fff;
  background: var(--ink);
}

.foresight-observatory {
  position: relative;
  width: min(48vw, 720px);
  max-width: 100%;
  aspect-ratio: 720 / 620;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.foresight-observatory__geometry {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.foresight-observatory__construction,
.foresight-orbit-rotor,
.foresight-observatory__rays,
.foresight-observatory__fixed-nodes {
  fill: none;
  stroke: var(--ink);
  vector-effect: non-scaling-stroke;
}

.foresight-orbit,
.foresight-axis,
.foresight-vector,
.foresight-horizon,
.foresight-waterline,
.foresight-observatory__rays path,
.foresight-node,
.foresight-signal-ring,
.foresight-signal-dot {
  vector-effect: non-scaling-stroke;
}

.foresight-orbit--outer {
  stroke-width: 1.2;
  opacity: 0.54;
}

.foresight-orbit--inner {
  stroke-width: 1.1;
  opacity: 0.48;
}

.foresight-orbit--arc {
  stroke-width: 1.15;
  opacity: 0.44;
}

.foresight-orbit--dashed {
  stroke-width: 1;
  stroke-dasharray: 3 5;
  opacity: 0.54;
}

.foresight-orbit--guide {
  stroke-width: 0.75;
  stroke-dasharray: 1 10;
  opacity: 0.2;
}

.foresight-axis {
  stroke-width: 1.05;
  opacity: 0.38;
}

.foresight-vector {
  stroke-width: 1.15;
  opacity: 0.42;
}

.foresight-horizon {
  stroke-width: 1.15;
  opacity: 0.55;
}

.foresight-waterline {
  stroke-width: 1;
  opacity: 0.24;
}

.foresight-observatory__rays path {
  stroke-width: 0.8;
  opacity: 0.18;
}

.foresight-node--solid {
  fill: var(--ink);
  stroke: var(--ink);
}

.foresight-node--open {
  fill: #fff;
  stroke-width: 1.2;
}

.foresight-signal-ring {
  fill: #fff;
  stroke: var(--red);
  stroke-width: 1.2;
}

.foresight-signal-dot {
  fill: var(--red);
  stroke: none;
}

.foresight-observatory__labels {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.62;
}

.foresight-observatory__readout {
  fill: var(--red);
  opacity: 0.9;
}

.foresight-observatory__swan {
  position: absolute;
  z-index: 2;
  top: 27%;
  left: 23%;
  display: block;
  width: 55%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.foresight-orbit-rotor--slow {
  transform-box: view-box;
  transform-origin: 332px 307px;
  animation: foresight-orbit-clockwise 28s linear infinite;
}

.foresight-orbit-rotor--counter {
  transform-box: view-box;
  transform-origin: 332px 307px;
  animation: foresight-orbit-counter 38s linear infinite;
}

.foresight-observatory__rays {
  animation: foresight-signal-breathe 4.8s ease-in-out infinite;
}

@keyframes foresight-orbit-clockwise {
  to {
    transform: rotate(360deg);
  }
}

@keyframes foresight-orbit-counter {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes foresight-signal-breathe {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

.foresight-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateX(-50%);
}

.foresight-scroll-cue svg,
.foresight-inline-action svg,
.foresight-closing a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.foresight-about {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  border-bottom: var(--foresight-rule);
  background: #fff;
}

.foresight-about-copy {
  padding: 76px clamp(34px, 4vw, 64px) 82px var(--foresight-gutter);
  border-right: var(--foresight-rule);
}

.foresight-about h2,
.foresight-resources h2,
.foresight-events h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.foresight-about-copy > p:last-child,
.foresight-resource-rail > p:last-of-type,
.foresight-events-head > div > p:last-child {
  margin: 28px 0 0;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.78;
}

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

.foresight-functions article {
  min-height: 100%;
  padding: 76px clamp(24px, 2.6vw, 42px) 70px;
  border-left: 1px solid var(--ink);
}

.foresight-functions article:first-child {
  border-left: 0;
}

.foresight-functions svg {
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.foresight-functions span,
.foresight-resource-number,
.foresight-talk-list > a > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
}

.foresight-functions h3 {
  margin: 14px 0 18px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
}

.foresight-functions p {
  margin: 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.72;
}

.foresight-resources {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  border-bottom: var(--foresight-rule);
  background: #fff;
}

.foresight-resource-rail {
  padding: 82px clamp(34px, 4vw, 60px) 78px var(--foresight-gutter);
  border-right: 4px solid var(--red);
}

.foresight-resource-filters {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.foresight-resource-filters button {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 46px 0 16px;
  color: var(--ink);
  text-align: left;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.foresight-resource-filters button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.foresight-resource-filters button:hover,
.foresight-resource-filters button.is-selected {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.foresight-resource-index {
  padding: 82px var(--foresight-gutter) 78px clamp(34px, 4vw, 70px);
}

.foresight-resource-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 26px;
  padding: 0 50px 18px 54px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
}

.foresight-resource-row {
  border-bottom: 1px solid var(--ink);
}

.foresight-resource-row[hidden] {
  display: none;
}

.foresight-resource-row summary,
.foresight-resource-link {
  display: grid;
  min-height: 150px;
  grid-template-columns: 44px minmax(0, 1fr) 190px 28px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease, padding 180ms ease;
}

.foresight-resource-link {
  color: inherit;
  text-decoration: none;
}

.foresight-resource-row summary::-webkit-details-marker {
  display: none;
}

.foresight-resource-row summary:hover,
.foresight-resource-row[open] summary,
.foresight-resource-link:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(223, 31, 38, 0.045);
}

.foresight-resource-copy {
  display: grid;
  gap: 12px;
}

.foresight-resource-copy strong {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.16;
}

.foresight-resource-copy small,
.foresight-resource-type {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
}

.foresight-resource-type {
  color: rgba(5, 5, 5, 0.68);
}

.foresight-resource-row summary > svg,
.foresight-resource-link > svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
  transition: transform 180ms ease, stroke 180ms ease;
}

.foresight-resource-row[open] summary > svg {
  stroke: var(--red);
  transform: rotate(90deg);
}

.foresight-resource-link:hover > svg {
  stroke: var(--red);
  transform: translateX(5px);
}

.foresight-resource-detail {
  padding: 0 58px 28px 64px;
}

.foresight-resource-detail p {
  max-width: 780px;
  margin: 0;
  padding-left: 18px;
  color: rgba(5, 5, 5, 0.72);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.68;
  border-left: 3px solid var(--red);
}

.foresight-career-directory {
  margin-top: 2px;
  border: 2px solid var(--ink);
  background: #fff;
}

.foresight-career-directory p {
  max-width: none;
  margin: 0;
  padding-left: 0;
  border-left: 0;
}

.foresight-career-head {
  display: flex;
  min-height: 74px;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.foresight-career-head > div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px 18px;
}

.foresight-career-head > div > span,
.foresight-career-head strong,
.foresight-career-head > span {
  font-family: var(--mono);
}

.foresight-career-head > div > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foresight-career-head strong {
  font-size: 13px;
}

.foresight-career-head strong span {
  color: var(--ink);
  font: inherit;
}

.foresight-career-head > span {
  display: grid;
  min-width: 176px;
  place-items: center;
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.foresight-career-standard {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  border-bottom: 1px solid var(--ink);
}

.foresight-career-standard > span {
  display: grid;
  min-height: 70px;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foresight-career-standard p {
  align-self: center;
  padding: 13px 18px;
  color: rgba(5, 5, 5, 0.76);
  font-size: 11px;
  line-height: 1.55;
}

.foresight-career-toolbar {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid var(--ink);
}

.foresight-career-toolbar > span {
  color: rgba(5, 5, 5, 0.54);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foresight-career-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.foresight-career-filters button {
  min-height: 32px;
  padding: 0 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.foresight-career-filters button:hover,
.foresight-career-filters button.is-selected {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.foresight-career-result {
  padding: 11px 18px !important;
  color: rgba(5, 5, 5, 0.58) !important;
  background: #f2f2ef;
  font-size: 10px !important;
  font-weight: 700;
  line-height: 1.4 !important;
  border-bottom: 1px solid var(--ink) !important;
}

.foresight-career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.foresight-career-card {
  display: grid;
  min-width: 0;
  min-height: 350px;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 18px;
  background: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.foresight-career-card:hover {
  background: #fafaf7;
  box-shadow: inset 4px 0 0 var(--red);
}

.foresight-career-card[hidden] {
  display: none;
}

.foresight-career-card > header,
.foresight-career-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
}

.foresight-career-card > header {
  padding-bottom: 12px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(5, 5, 5, 0.3);
}

.foresight-career-card > header span:first-child {
  color: var(--red);
}

.foresight-career-card > header span:last-child {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 6px;
  color: #fff;
  background: var(--ink);
}

.foresight-career-copy {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0 14px;
}

.foresight-career-copy > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.07em;
  overflow-wrap: anywhere;
}

.foresight-career-copy small {
  color: rgba(5, 5, 5, 0.42);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}

.foresight-career-copy h3 {
  margin: 5px 0 9px;
  font-family: var(--mono);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.foresight-career-copy p {
  color: rgba(5, 5, 5, 0.65);
  font-size: 9px;
  line-height: 1.55;
}

.foresight-career-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 5px;
  padding-bottom: 14px;
}

.foresight-career-tags span {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 6px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  border: 1px solid rgba(223, 31, 38, 0.55);
  text-transform: uppercase;
}

.foresight-career-location {
  align-self: end;
  display: grid;
  gap: 6px;
  padding: 11px 12px;
  border-left: 3px solid var(--red);
  background: #f2f2ef;
}

.foresight-career-location small,
.foresight-career-location strong {
  font-family: var(--mono);
}

.foresight-career-location small {
  color: var(--red);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foresight-career-location strong {
  font-size: 9px;
  line-height: 1.48;
}

.foresight-career-card > footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.3);
}

.foresight-career-card > footer > span {
  color: rgba(5, 5, 5, 0.48);
  font-size: 8px;
}

.foresight-career-card > footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.foresight-career-card > footer a:hover {
  color: var(--red);
}

.foresight-career-card > footer svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.foresight-conference-tracker {
  margin-top: 2px;
  border: 2px solid var(--ink);
  background: #fff;
}

.foresight-tracker-topline {
  display: flex;
  min-height: 72px;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.foresight-tracker-topline > div {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 18px;
}

.foresight-tracker-topline > div span,
.foresight-tracker-topline > div strong,
.foresight-tracker-topline > a {
  font-family: var(--mono);
}

.foresight-tracker-topline > div span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foresight-tracker-topline > div strong {
  font-size: 13px;
}

.foresight-tracker-topline > div strong span {
  color: var(--ink);
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.foresight-tracker-topline > a {
  display: flex;
  min-width: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease;
}

.foresight-tracker-topline > a:hover {
  background: var(--red);
}

.foresight-tracker-topline svg,
.foresight-conference-card footer svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.foresight-tracker-note {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
}

.foresight-tracker-note > span {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
}

.foresight-tracker-note p {
  max-width: none;
  padding: 13px 18px;
  color: rgba(5, 5, 5, 0.78);
  font-size: 11px;
  line-height: 1.55;
  border-left: 0;
}

.foresight-tracker-note p strong {
  color: var(--ink);
}

.foresight-conference-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--ink);
}

.foresight-conference-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.foresight-conference-filters button {
  min-height: 32px;
  padding: 0 11px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.foresight-conference-filters button:hover,
.foresight-conference-filters button.is-selected {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.foresight-conference-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.foresight-conference-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(5, 5, 5, 0.64);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.foresight-conference-legend i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  background: #fff;
}

.foresight-conference-legend i.is-official {
  border-color: var(--red);
  background: var(--red);
}

.foresight-conference-legend i.is-tracked {
  background: var(--ink);
}

.foresight-conference-legend i.is-estimated {
  border-style: dashed;
}

.foresight-conference-result {
  max-width: none;
  margin: 0;
  padding: 11px 18px;
  color: rgba(5, 5, 5, 0.58);
  background: #f2f2ef;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid var(--ink);
  border-left: 0;
}

.foresight-conference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.foresight-conference-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 310px;
  grid-template-rows: auto auto auto auto 1fr;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.foresight-conference-card[hidden] {
  display: none;
}

.foresight-conference-card.is-urgent {
  background: #fff5f4;
  box-shadow: inset 4px 0 0 var(--red);
}

.foresight-conference-card.is-soon {
  box-shadow: inset 4px 0 0 var(--ink);
}

.foresight-conference-card.is-closed {
  background: #f2f2ef;
}

.foresight-conference-card.is-closed > * {
  opacity: 0.56;
}

.foresight-conference-card > header,
.foresight-conference-card > footer,
.foresight-conference-deadline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foresight-conference-card > header {
  padding-bottom: 15px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(5, 5, 5, 0.3);
}

.foresight-conference-card > header > span:first-child {
  color: var(--red);
}

.foresight-countdown-source {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 7px;
  font-size: 9px;
  font-weight: 800;
  border: 1px solid currentColor;
}

.foresight-countdown-source.is-official {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.foresight-countdown-source.is-tracked {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.foresight-countdown-source.is-estimated {
  color: var(--ink);
  border-style: dashed;
  background: #fff;
}

.foresight-conference-name {
  position: relative;
  padding: 20px 0 18px;
}

.foresight-conference-name > span {
  position: absolute;
  top: 22px;
  right: 0;
  color: rgba(5, 5, 5, 0.12);
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.foresight-conference-name h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 78%;
  font-family: var(--mono);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.foresight-conference-name p {
  max-width: 68%;
  margin: 8px 0 0;
  padding: 0;
  color: rgba(5, 5, 5, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  border: 0;
}

.foresight-live-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
}

.foresight-live-countdown > span {
  display: grid;
  min-width: 0;
  place-items: center;
  gap: 5px;
  padding: 11px 4px 9px;
  border-left: 1px solid var(--ink);
}

.foresight-live-countdown > span:first-child {
  border-left: 0;
}

.foresight-live-countdown strong,
.foresight-live-countdown small {
  font-family: var(--mono);
}

.foresight-live-countdown strong {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}

.foresight-live-countdown small {
  color: rgba(5, 5, 5, 0.48);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foresight-conference-deadline {
  padding: 14px 0;
}

.foresight-conference-deadline > div {
  display: grid;
  gap: 4px;
}

.foresight-conference-deadline small,
.foresight-conference-deadline strong,
.foresight-conference-deadline > span {
  font-family: var(--mono);
}

.foresight-conference-deadline small {
  color: rgba(5, 5, 5, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.foresight-conference-deadline strong {
  font-size: 10px;
}

.foresight-conference-deadline > span {
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.foresight-conference-card.is-closed .foresight-conference-deadline > span {
  color: var(--ink);
}

.foresight-conference-card > footer {
  align-self: end;
  padding-top: 13px;
  border-top: 1px solid rgba(5, 5, 5, 0.3);
}

.foresight-conference-card > footer > span {
  max-width: 64%;
  color: rgba(5, 5, 5, 0.56);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.45;
}

.foresight-conference-card > footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.foresight-conference-card > footer a:hover {
  color: var(--red);
}

.foresight-conference-noscript {
  max-width: none;
  margin: 0;
  padding: 20px;
  border-left: 4px solid var(--red);
}

.foresight-workshop-radar {
  margin-top: 2px;
  border: 2px solid var(--ink);
  background: #fff;
}

.foresight-workshop-radar p {
  max-width: none;
  margin: 0;
  padding-left: 0;
  border-left: 0;
}

.foresight-workshop-head {
  display: flex;
  min-height: 76px;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.foresight-workshop-head > div:first-child {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px 18px;
}

.foresight-workshop-head > div:first-child > span,
.foresight-workshop-head strong,
.foresight-workshop-hosts a {
  font-family: var(--mono);
}

.foresight-workshop-head > div:first-child > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foresight-workshop-head strong {
  font-size: 13px;
}

.foresight-workshop-head strong span {
  color: var(--ink);
  font: inherit;
}

.foresight-workshop-hosts {
  display: grid;
  grid-template-columns: repeat(2, minmax(86px, 1fr));
  background: var(--ink);
}

.foresight-workshop-hosts a {
  display: grid;
  min-width: 112px;
  place-items: center;
  padding: 0 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 180ms ease;
}

.foresight-workshop-hosts a:hover {
  background: var(--red);
}

.foresight-workshop-standard {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  border-bottom: 1px solid var(--ink);
}

.foresight-workshop-standard > span {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.foresight-workshop-standard p {
  align-self: center;
  padding: 13px 18px;
  color: rgba(5, 5, 5, 0.76);
  font-size: 11px;
  line-height: 1.55;
}

.foresight-workshop-toolbar {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid var(--ink);
}

.foresight-workshop-toolbar > span {
  color: rgba(5, 5, 5, 0.54);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foresight-workshop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.foresight-workshop-filters button {
  min-height: 32px;
  padding: 0 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.foresight-workshop-filters button:hover,
.foresight-workshop-filters button.is-selected {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.foresight-workshop-result {
  padding: 11px 18px !important;
  color: rgba(5, 5, 5, 0.58) !important;
  background: #f2f2ef;
  font-size: 10px !important;
  font-weight: 700;
  line-height: 1.4 !important;
  border-bottom: 1px solid var(--ink) !important;
}

.foresight-workshop-list {
  display: grid;
  gap: 1px;
  background: var(--ink);
}

.foresight-workshop-card {
  min-width: 0;
  padding: 19px;
  background: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.foresight-workshop-card[hidden] {
  display: none;
}

.foresight-workshop-card.is-open {
  box-shadow: inset 4px 0 0 var(--red);
}

.foresight-workshop-card.is-program-upcoming {
  background: #f6f6f2;
}

.foresight-workshop-card.is-complete {
  background: #ecece8;
}

.foresight-workshop-card > header,
.foresight-workshop-card > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foresight-workshop-card > header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.32);
}

.foresight-workshop-card > header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  align-items: baseline;
}

.foresight-workshop-card > header span,
.foresight-workshop-card > header small,
.foresight-workshop-status {
  font-family: var(--mono);
}

.foresight-workshop-card > header > div span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foresight-workshop-card > header > div small {
  color: rgba(5, 5, 5, 0.52);
  font-size: 9px;
}

.foresight-workshop-status {
  min-height: 26px;
  padding: 7px 8px 0;
  color: #fff;
  background: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.foresight-workshop-card.is-open .foresight-workshop-status {
  background: var(--red);
}

.foresight-workshop-card.is-complete .foresight-workshop-status {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}

.foresight-workshop-copy {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0 18px;
}

.foresight-workshop-copy > span {
  color: rgba(223, 31, 38, 0.9);
  font-family: var(--mono);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.foresight-workshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.foresight-workshop-tags span {
  padding: 4px 6px 3px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  border: 1px solid rgba(223, 31, 38, 0.55);
  text-transform: uppercase;
}

.foresight-workshop-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.foresight-workshop-copy p {
  max-width: 760px;
  margin-top: 9px;
  color: rgba(5, 5, 5, 0.64);
  font-size: 10px;
  line-height: 1.55;
}

.foresight-workshop-organizers {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 5px 16px;
  padding: 14px 16px;
  background: #f2f2ef;
  border-left: 3px solid var(--red);
}

.foresight-workshop-organizers small,
.foresight-workshop-organizers strong,
.foresight-workshop-organizers span {
  font-family: var(--mono);
}

.foresight-workshop-organizers small {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.foresight-workshop-organizers strong {
  font-size: 10px;
  line-height: 1.45;
}

.foresight-workshop-organizers span {
  color: rgba(5, 5, 5, 0.58);
  font-size: 9px;
  line-height: 1.45;
}

.foresight-workshop-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  border: 1px solid var(--ink);
}

.foresight-workshop-timeline > div {
  position: relative;
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 4px;
  padding: 11px 12px 10px 34px;
  border-left: 1px solid var(--ink);
}

.foresight-workshop-timeline > div:first-child {
  border-left: 0;
}

.foresight-workshop-timeline span {
  position: absolute;
  top: 11px;
  left: 10px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}

.foresight-workshop-timeline small,
.foresight-workshop-timeline strong {
  font-family: var(--mono);
}

.foresight-workshop-timeline small {
  color: rgba(5, 5, 5, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.foresight-workshop-timeline strong {
  font-size: 9px;
  line-height: 1.35;
}

.foresight-workshop-card > footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.3);
}

.foresight-workshop-card > footer > span,
.foresight-workshop-card > footer a {
  font-family: var(--mono);
}

.foresight-workshop-card > footer > span {
  max-width: 62%;
  color: rgba(5, 5, 5, 0.54);
  font-size: 8px;
  line-height: 1.45;
}

.foresight-workshop-card > footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.foresight-workshop-card > footer a:hover {
  color: var(--red);
}

.foresight-workshop-card > footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.foresight-inline-action {
  width: fit-content;
  margin-top: 34px;
  color: var(--ink);
  background: #fff;
}

.foresight-inline-action:hover {
  color: #fff;
  background: var(--ink);
}

.foresight-talks {
  padding: 56px var(--foresight-gutter) 60px;
  color: #fff;
  background: var(--ink);
}

.foresight-talks-head {
  display: grid;
  grid-template-columns: 220px minmax(650px, 1fr) 280px;
  gap: 36px;
  align-items: center;
  padding-bottom: 40px;
}

.foresight-talks-number {
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(110px, 12vw, 190px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.1em;
}

.foresight-talks h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 3.65vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.foresight-talks-head > div > p:last-child {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.72;
}

.foresight-signal {
  width: 100%;
  height: auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-linejoin: miter;
  stroke-width: 1.25;
}

.foresight-signal-red {
  stroke: var(--red);
  stroke-width: 2;
}

.foresight-talk-list {
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.foresight-talk-list > a {
  display: grid;
  min-height: 100px;
  grid-template-columns: 88px minmax(240px, 0.65fr) minmax(260px, 1fr) 44px;
  gap: 34px;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.foresight-talk-list > a:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: #fff;
  background: rgba(223, 31, 38, 0.13);
}

.foresight-talk-list strong {
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.12;
}

.foresight-talk-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.62;
}

.foresight-talk-list svg,
.foresight-event-formats svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.foresight-talk-list > a:hover svg,
.foresight-event-formats a:hover svg {
  transform: translateX(6px);
}

.foresight-inline-action-dark {
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}

.foresight-inline-action-dark:hover {
  color: var(--ink);
  background: var(--red);
}

.foresight-events {
  padding: 78px var(--foresight-gutter) 0;
  border-bottom: var(--foresight-rule);
  background: #fff;
}

.foresight-events-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 70px;
}

.foresight-events-head > div {
  max-width: 880px;
}

.foresight-event-formats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 26px;
}

.foresight-event-formats::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
}

.foresight-event-formats > a {
  position: relative;
  min-height: 340px;
  padding: 32px clamp(26px, 3vw, 52px) 56px;
  border-left: 1px solid var(--red);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.foresight-event-formats > a:last-child {
  border-right: 1px solid var(--red);
}

.foresight-event-formats > a::before {
  position: absolute;
  top: -36px;
  left: -9px;
  width: 15px;
  height: 15px;
  content: "";
  border: 3px solid var(--red);
  border-radius: 50%;
  background: #fff;
}

.foresight-event-formats > a:hover {
  color: var(--ink);
  background: rgba(223, 31, 38, 0.055);
  transform: translateY(-6px);
}

.foresight-event-formats span {
  display: block;
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.foresight-event-formats h3 {
  margin: 22px 0 20px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
}

.foresight-event-formats p {
  margin: 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.68;
}

.foresight-event-formats svg {
  position: absolute;
  top: 49px;
  right: clamp(24px, 2vw, 36px);
  stroke: var(--ink);
}

.foresight-closing {
  display: grid;
  grid-template-columns: 96px minmax(280px, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 42px var(--foresight-gutter);
  color: #fff;
  background: var(--red);
}

.foresight-closing img {
  width: 88px;
  height: 76px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(3);
}

.foresight-closing h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.foresight-closing a {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.foresight-closing a:hover {
  color: var(--red);
  background: #fff;
}

.foresight-footer {
  margin-top: 0;
}

.foresight-footer .footer-links a[aria-current="page"] {
  color: var(--red);
  opacity: 1;
}

@media (max-width: 1180px) {
  .foresight-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 42px;
  }

  .foresight-about {
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  }

  .foresight-functions article {
    padding-right: 24px;
    padding-left: 24px;
  }

  .foresight-resources {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .foresight-resource-head {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .foresight-resource-row summary,
  .foresight-resource-link {
    grid-template-columns: 38px minmax(0, 1fr) 140px 26px;
    gap: 14px;
  }

  .foresight-conference-grid {
    grid-template-columns: 1fr;
  }

  .foresight-talks-head {
    grid-template-columns: 130px minmax(0, 1fr) 260px;
  }

  .foresight-talk-list > a {
    grid-template-columns: 64px minmax(210px, 0.7fr) minmax(240px, 1fr) 36px;
    gap: 24px;
  }
}

@media (max-width: 980px) {
  .foresight-hero {
    min-height: min(720px, calc(100svh - 98px));
  }

  .foresight-observatory {
    width: min(44vw, 520px);
  }

  .foresight-about {
    grid-template-columns: 1fr;
  }

  .foresight-about-copy {
    border-right: 0;
    border-bottom: var(--foresight-rule);
  }

  .foresight-resources {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .foresight-resource-index {
    padding-right: 34px;
    padding-left: 34px;
  }

  .foresight-resource-head {
    display: none;
  }

  .foresight-resource-row summary,
  .foresight-resource-link {
    grid-template-columns: 38px minmax(0, 1fr) 28px;
  }

  .foresight-resource-type {
    grid-column: 2;
    grid-row: 2;
  }

  .foresight-resource-row summary > svg,
  .foresight-resource-link > svg {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .foresight-resource-row[data-resource-kind="careers"] .foresight-resource-detail,
  .foresight-resource-row[data-resource-kind="deadlines"] .foresight-resource-detail,
  .foresight-resource-row[data-resource-kind="workshops"] .foresight-resource-detail {
    padding-right: 0;
    padding-left: 0;
  }

  .foresight-career-grid {
    grid-template-columns: 1fr;
  }

  .foresight-career-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .foresight-conference-toolbar {
    grid-template-columns: 1fr;
  }

  .foresight-conference-legend {
    justify-content: flex-start;
  }

  .foresight-conference-grid {
    grid-template-columns: 1fr;
  }

  .foresight-workshop-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .foresight-talks-head {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .foresight-signal {
    grid-column: 2;
    max-width: 420px;
  }

  .foresight-events-head {
    grid-template-columns: 1fr;
  }

  .foresight-closing {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .foresight-closing a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .foresight-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 118px;
    padding-bottom: 82px;
  }

  .foresight-hero h1 {
    font-size: clamp(60px, 18vw, 104px);
  }

  .foresight-hero-copy > p {
    margin-top: 28px;
    font-size: 17px;
  }

  .foresight-observatory {
    width: min(92vw, 694px);
    justify-self: center;
  }

  .foresight-scroll-cue {
    display: none;
  }

  .foresight-about-copy,
  .foresight-resource-rail,
  .foresight-resource-index,
  .foresight-talks,
  .foresight-events {
    padding-right: var(--foresight-gutter);
    padding-left: var(--foresight-gutter);
  }

  .foresight-functions {
    grid-template-columns: 1fr;
  }

  .foresight-functions article,
  .foresight-functions article:first-child {
    min-height: 0;
    padding: 40px var(--foresight-gutter);
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .foresight-functions article:first-child {
    border-top: 0;
  }

  .foresight-functions svg {
    margin-bottom: 24px;
  }

  .foresight-resources {
    grid-template-columns: 1fr;
  }

  .foresight-resource-rail {
    border-right: 0;
    border-bottom: 4px solid var(--red);
  }

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

  .foresight-resource-row summary,
  .foresight-resource-link {
    min-height: 126px;
  }

  .foresight-resource-detail {
    padding-left: 52px;
  }

  .foresight-talks-head {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 24px;
  }

  .foresight-talks-number {
    font-size: 88px;
  }

  .foresight-signal {
    grid-column: 1 / -1;
    width: min(520px, 100%);
  }

  .foresight-talk-list > a {
    min-height: 136px;
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    gap: 18px;
  }

  .foresight-talk-list p {
    grid-column: 2 / 4;
    padding-bottom: 18px;
  }

  .foresight-talk-list svg {
    grid-column: 3;
    grid-row: 1;
  }

  .foresight-event-formats {
    grid-template-columns: 1fr;
    padding-top: 0;
    border-left: 3px solid var(--red);
  }

  .foresight-event-formats::before {
    display: none;
  }

  .foresight-event-formats > a,
  .foresight-event-formats > a:last-child {
    min-height: 250px;
    border-top: 1px solid var(--red);
    border-right: 0;
    border-left: 0;
  }

  .foresight-event-formats > a::before {
    top: 40px;
    left: -10px;
  }

  .foresight-closing {
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .foresight-section-index {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .foresight-hero-actions,
  .foresight-button,
  .foresight-inline-action {
    width: 100%;
  }

  .foresight-button,
  .foresight-inline-action {
    justify-content: center;
  }

  .foresight-about h2,
  .foresight-resources h2,
  .foresight-events h2,
  .foresight-talks h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .foresight-resource-filters {
    grid-template-columns: 1fr;
  }

  .foresight-resource-index {
    padding-top: 44px;
  }

  .foresight-resource-row summary,
  .foresight-resource-link {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .foresight-resource-copy strong {
    font-size: 19px;
  }

  .foresight-resource-copy small,
  .foresight-resource-type {
    font-size: 11px;
  }

  .foresight-resource-detail {
    padding-right: 0;
    padding-left: 40px;
  }

  .foresight-resource-row[data-resource-kind="careers"] .foresight-resource-detail,
  .foresight-resource-row[data-resource-kind="deadlines"] .foresight-resource-detail,
  .foresight-resource-row[data-resource-kind="workshops"] .foresight-resource-detail {
    padding-left: 0;
  }

  .foresight-career-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .foresight-career-head > span {
    min-width: 0;
    min-height: 46px;
    border-top: 1px solid var(--ink);
  }

  .foresight-career-standard {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .foresight-career-standard p {
    padding: 12px;
    font-size: 10px;
  }

  .foresight-career-toolbar {
    padding: 14px;
  }

  .foresight-career-filters button {
    flex: 1 1 calc(50% - 6px);
  }

  .foresight-career-card {
    min-height: 0;
    padding: 16px;
  }

  .foresight-career-copy {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .foresight-career-copy h3 {
    font-size: 21px;
  }

  .foresight-tracker-topline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .foresight-tracker-topline > a {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border-top: 1px solid var(--ink);
  }

  .foresight-tracker-note {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .foresight-tracker-note p {
    padding: 12px;
    font-size: 10px;
  }

  .foresight-conference-toolbar {
    gap: 14px;
    padding: 14px;
  }

  .foresight-conference-filters {
    gap: 6px;
  }

  .foresight-conference-filters button {
    flex: 1 1 calc(33.333% - 6px);
    padding: 0 8px;
  }

  .foresight-conference-card {
    min-height: 300px;
    padding: 16px;
  }

  .foresight-conference-name h3 {
    max-width: 72%;
    font-size: 23px;
  }

  .foresight-live-countdown strong {
    font-size: 19px;
  }

  .foresight-conference-card > footer {
    align-items: flex-start;
  }

  .foresight-conference-card > footer > span {
    max-width: 58%;
  }

  .foresight-workshop-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .foresight-workshop-hosts {
    min-height: 48px;
    border-top: 1px solid var(--ink);
  }

  .foresight-workshop-hosts a {
    min-width: 0;
  }

  .foresight-workshop-standard {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .foresight-workshop-standard > span {
    min-height: 78px;
    font-size: 9px;
  }

  .foresight-workshop-toolbar {
    padding: 14px;
  }

  .foresight-workshop-filters button {
    flex: 1 1 calc(50% - 7px);
    padding: 0 8px;
  }

  .foresight-workshop-card {
    padding: 16px;
  }

  .foresight-workshop-card > header {
    align-items: flex-start;
  }

  .foresight-workshop-copy {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .foresight-workshop-copy > span {
    font-size: 20px;
  }

  .foresight-workshop-copy h3 {
    font-size: 21px;
  }

  .foresight-workshop-organizers {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .foresight-workshop-organizers small {
    grid-row: auto;
  }

  .foresight-workshop-timeline > div {
    min-height: 82px;
    padding-right: 7px;
    padding-left: 29px;
  }

  .foresight-workshop-timeline span {
    left: 8px;
  }

  .foresight-workshop-card > footer {
    align-items: flex-start;
  }

  .foresight-workshop-card > footer > span {
    max-width: 58%;
  }

  .foresight-talks-head {
    grid-template-columns: 1fr;
  }

  .foresight-talks-number {
    font-size: 76px;
  }

  .foresight-talk-list > a {
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    gap: 12px;
  }

  .foresight-talk-list strong {
    font-size: 21px;
  }

  .foresight-event-formats > a {
    padding-right: 30px;
    padding-left: 30px;
  }

  .foresight-closing {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .foresight-closing img {
    width: 54px;
    height: 50px;
  }

  .foresight-closing a {
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .foresight-orbit-rotor--slow,
  .foresight-orbit-rotor--counter,
  .foresight-observatory__rays {
    animation: none;
  }

  .foresight-button,
  .foresight-inline-action,
  .foresight-closing a,
  .foresight-resource-filters button,
  .foresight-resource-row summary,
  .foresight-resource-row summary > svg,
  .foresight-resource-link,
  .foresight-resource-link > svg,
  .foresight-conference-filters button,
  .foresight-conference-card,
  .foresight-talk-list > a,
  .foresight-talk-list svg,
  .foresight-event-formats > a,
  .foresight-event-formats svg {
    transition: none;
  }
}
