/* ============================================================
   BOZZY — Direction A · "Etched"
   Black as printing paper. Cream ink. Crimson once per view.
   Cormorant Garamond only.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../assets/fonts/CormorantGaramond-SemiBoldItalic.woff2') format('woff2'); font-weight: 600; font-style: italic; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --ink: #000000;
  --cream: #FBF8F5;
  --cream-70: rgba(251, 248, 245, 0.72);
  --cream-45: rgba(251, 248, 245, 0.45);
  --hairline: rgba(251, 248, 245, 0.16);
  --hairline-soft: rgba(251, 248, 245, 0.09);
  --crimson: #AF101C;
  --serif: 'Cormorant Garamond', 'Cormorant', Garamond, 'Times New Roman', serif;
  --measure: 34em;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--crimson); color: var(--cream); }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-45);
}
h1, h2, h3 { font-weight: 400; line-height: 1.08; }
.display {
  font-weight: 300;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  letter-spacing: 0.005em;
}
.display em, .headline em { font-style: italic; font-weight: 400; }
.headline {
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}
.sub {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 400;
  color: var(--cream-70);
  max-width: var(--measure);
}
.accent { color: var(--crimson); }
p { max-width: var(--measure); }

/* ---------- Motifs ---------- */
.rule-dotted {
  border: none;
  height: 3px;
  background-image: radial-gradient(circle, var(--cream-45) 1.2px, transparent 1.4px);
  background-size: 9px 3px;
  background-repeat: repeat-x;
  background-position: left center;
}
.plate {
  border: 1px solid var(--hairline);
  padding: clamp(1.5rem, 3vw, 3rem);
}

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem var(--gutter);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline-soft);
}
.lockup img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.site-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-70);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--cream); border-bottom-color: var(--crimson); }
.head-cta {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--hairline);
  padding: 0.6rem 1.2rem;
  transition: border-color 0.25s, background 0.25s;
  white-space: nowrap;
}
.head-cta:hover { border-color: var(--crimson); background: rgba(175, 16, 28, 0.12); }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100svh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: clamp(4rem, 9vh, 7rem) var(--gutter) 3rem;
  position: relative;
}
.hero .display { max-width: 15em; }
.hero .sub { margin: 0 auto; }
.hero-mark { height: clamp(64px, 9vw, 110px); width: auto; opacity: 0.92; }
.scroll-cue {
  margin-top: clamp(1rem, 5vh, 3rem);
  width: 1px;
  height: 72px;
  background-image: linear-gradient(to bottom, var(--cream-45) 45%, transparent 45%);
  background-size: 1px 9px;
  position: relative;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -2.5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
}

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 10vh, 8.5rem) var(--gutter); }
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  margin: 0 auto clamp(3rem, 6vh, 5rem);
  max-width: 46em;
}
.section-head .sub { margin: 0 auto; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-wide { max-width: 1400px; margin: 0 auto; }

/* ---------- Ecosystem (rings on dotted line) ---------- */
.eco-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.eco-line::before {
  content: '';
  position: absolute;
  top: calc(clamp(120px, 14vw, 180px) / 2);
  left: -4vw;
  right: -4vw;
  height: 3px;
  background-image: radial-gradient(circle, var(--cream-45) 1.2px, transparent 1.4px);
  background-size: 9px 3px;
  background-repeat: repeat-x;
  z-index: 0;
}
.eco-item { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.eco-item img.ring { width: clamp(120px, 14vw, 180px); height: auto; border-radius: 50%; transition: transform 0.35s ease; }
.eco-item:hover img.ring { transform: scale(1.045); }
.eco-item .eco-name { font-size: 1.35rem; font-weight: 500; letter-spacing: 0.06em; }
.eco-item .eco-role { font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--cream-45); }

/* ---------- Overview rows (alternating plates) ---------- */
.overview {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3.5rem, 8vh, 6.5rem) 0;
  border-top: 1px solid var(--hairline-soft);
}
.overview:last-of-type { border-bottom: 1px solid var(--hairline-soft); }
.overview.flip { grid-template-columns: 1fr minmax(200px, 320px); }
.overview.flip .overview-media { order: 2; }
.overview-media { display: flex; justify-content: center; }
.overview-media img { width: 100%; max-width: 300px; border-radius: 50%; }
.overview-body { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.overview-body h3 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 400; }
.overview-body .eyebrow { color: var(--cream-45); }
.overview-body p { color: var(--cream-70); font-size: 1.12rem; }

/* ---------- Text links / CTAs ---------- */
.textlink {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--crimson);
  padding-bottom: 0.3rem;
  transition: color 0.25s;
}
.textlink:hover { color: var(--crimson); }
.cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.cta-block .headline { max-width: 18em; }
.cta-block p { color: var(--cream-70); margin: 0 auto; }
.cta-mail {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 400;
  font-style: italic;
  border-bottom: 1px solid var(--crimson);
  padding-bottom: 0.2rem;
  transition: color 0.3s;
}
.cta-mail:hover { color: var(--crimson); }

/* ---------- Universe (Magellan: Data & Signals) ---------- */
.universe { position: relative; max-width: 1100px; margin: 0 auto; }
.universe-core { position: relative; width: min(58vw, 520px); margin: 0 auto; }
.universe-core .cloud {
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: #ffffff;
  padding: 6%;
}
.universe-core::before {
  content: '';
  position: absolute;
  inset: -9%;
  border-radius: 50%;
  border: 1.5px dotted var(--cream-45);
  animation: spin 160s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stat-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 9vw, 104px);
  height: clamp(72px, 9vw, 104px);
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--crimson);
  text-align: center;
  z-index: 2;
}
.stat-chip b { font-size: clamp(1.05rem, 1.6vw, 1.5rem); font-weight: 600; color: var(--crimson); line-height: 1; }
.stat-chip span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-70); margin-top: 0.3rem; }
.signals-seal {
  margin: 2.2rem auto 0;
  width: fit-content;
  background: var(--crimson);
  color: var(--cream);
  padding: 0.7rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.domain-flank {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(3rem, 6vh, 4.5rem);
}
.domain {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.domain img { width: clamp(64px, 7vw, 96px); height: clamp(64px, 7vw, 96px); object-fit: contain; }
.domain .d-name { font-size: 0.82rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 500; }
.domain .d-sub { font-size: 0.92rem; font-style: italic; color: var(--cream-45); }

/* ---------- Engine (3 anchor plates) ---------- */
.engine-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.engine-nav a.plate {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s;
}
.engine-nav a.plate:hover { border-color: var(--crimson); }
.engine-nav .num { font-size: 2.2rem; font-weight: 300; font-style: italic; color: var(--crimson); line-height: 1; }
.engine-nav .t { font-size: 0.85rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 500; }
.engine-nav .d { font-size: 0.98rem; color: var(--cream-45); font-style: italic; }
.engine-detail { border-top: 1px solid var(--hairline-soft); padding: clamp(3rem, 6vh, 5rem) 0; display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: clamp(2rem, 5vw, 5rem); }
.engine-detail h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 400; }
.engine-detail .eyebrow { display: block; margin-bottom: 0.9rem; }
.item-rows { display: flex; flex-direction: column; gap: 1.6rem; }
.item-row { display: grid; grid-template-columns: 72px 1fr; gap: 1.4rem; align-items: center; }
.item-row img { width: 64px; height: 64px; object-fit: contain; }
.item-row .n { font-size: 1.9rem; font-weight: 300; font-style: italic; color: var(--crimson); width: 64px; text-align: center; line-height: 1; }
.item-row h4 { font-size: 1.2rem; font-weight: 600; letter-spacing: 0.04em; }
.item-row p { font-size: 1rem; color: var(--cream-70); }

/* ---------- Raven props rail ---------- */
.props-rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2.6vw, 2.6rem);
  flex-wrap: wrap;
  padding: 1rem 0;
}
.props-rail::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--hairline);
  z-index: 0;
}
.prop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s;
}
.prop:hover { transform: translateY(-4px); }
.prop img { width: clamp(56px, 6vw, 84px); height: clamp(56px, 6vw, 84px); object-fit: contain; border-radius: 50%; background: var(--cream); padding: 6px; }
.prop span { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--cream-70); }
.props-rail .prop-center img { width: clamp(120px, 12vw, 168px); height: auto; background: none; padding: 0; }

/* ---------- Feature sections (video + features) ---------- */
.feature-block { border-top: 1px solid var(--hairline-soft); padding: clamp(3.5rem, 8vh, 6.5rem) 0; }
.feature-head { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.4rem; max-width: 46em; }
.feature-head h3 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 400; }
.feature-head p { color: var(--cream-70); font-size: 1.15rem; font-style: italic; }
.feature-media { border: 1px solid var(--hairline); padding: clamp(0.6rem, 1.4vw, 1.1rem); background: rgba(251,248,245,0.02); }
.feature-media video { width: 100%; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.8rem); margin-top: 2.4rem; }
.feature { display: flex; flex-direction: column; gap: 0.6rem; }
.feature img { width: 54px; height: 54px; object-fit: contain; margin-bottom: 0.4rem; }
.feature h4 { font-size: 1.22rem; font-weight: 600; letter-spacing: 0.03em; }
.feature p { font-size: 1rem; color: var(--cream-70); }

/* ---------- Flock: builder elements ---------- */
.placeholder-frame {
  border: 1.5px dotted var(--cream-45);
  aspect-ratio: 16 / 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2rem;
}
.placeholder-frame img { height: 56px; width: auto; opacity: 0.85; }
.placeholder-frame .cap { font-style: italic; color: var(--cream-45); font-size: 1.05rem; }
.builder-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.6vw, 2.4rem); margin-top: 2.6rem; }
.builder-el { border-top: 1px solid var(--hairline); padding-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.builder-el .n { font-size: 2rem; font-weight: 300; font-style: italic; color: var(--crimson); line-height: 1; }
.builder-el h4 { font-size: 1.18rem; font-weight: 600; }
.builder-el p { font-size: 0.98rem; color: var(--cream-70); }

/* ---------- Flock: street spectrum ---------- */
.street-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.6rem, 5vh, 4rem);
}
.street-bar .street-label {
  background: var(--crimson);
  color: var(--cream);
  padding: 0.85rem 2.2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  letter-spacing: 0.14em;
  font-weight: 500;
  white-space: nowrap;
}
.street-bar .street-label em { font-weight: 700; }
.street-bar .track {
  flex: 1;
  height: 3px;
  background-image: radial-gradient(circle, var(--crimson) 1.3px, transparent 1.5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: left center;
}
.street-bar img { width: clamp(96px, 10vw, 148px); height: auto; }
.wf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2.2vw, 2rem); }
.wf-col { display: flex; flex-direction: column; gap: 1.1rem; }
.wf-col > .wf-colhead {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-45);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--hairline);
}
.wf-card {
  border: 1px solid var(--hairline);
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.wf-card:hover { border-color: var(--crimson); transform: translateY(-4px); }
.wf-card img { width: 76px; height: 76px; object-fit: contain; }
.wf-card h4 { font-size: 1.2rem; font-weight: 600; color: var(--cream); }
.wf-card p { font-size: 0.97rem; color: var(--cream-70); }

/* ---------- About: manifesto ---------- */
.manifesto { max-width: 40em; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.manifesto p { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 300; line-height: 1.5; max-width: none; }
.manifesto p em { font-style: italic; }
.manifesto .kicker { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-style: italic; font-weight: 400; }
.qa-medallions { display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding: 1rem 0; }
.qa-medallions img { width: clamp(110px, 13vw, 170px); height: auto; }
.qa-medallions .dots { width: clamp(40px, 6vw, 90px); height: 3px; background-image: radial-gradient(circle, var(--cream-45) 1.2px, transparent 1.4px); background-size: 9px 3px; background-repeat: repeat-x; }

/* ---------- Founders ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.founder { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.founder .portrait {
  width: clamp(160px, 18vw, 230px);
  height: clamp(160px, 18vw, 230px);
  border-radius: 50%;
  overflow: hidden;
  background: #949494; /* matches the baked headshot backdrop */
  border: 1px solid var(--hairline);
}
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder h3 { font-size: 1.7rem; font-weight: 500; }
.founder .role { font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--crimson); }
.founder p { font-size: 1.02rem; color: var(--cream-70); text-align: left; }

/* ---------- Partner panels ---------- */
.partner-panels { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.partner-panel { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.partner-panel h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 400; }
.partner-panel p { color: var(--cream-70); font-size: 1.08rem; }
.partner-panel .textlink { margin-top: auto; }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--hairline-soft);
  padding: clamp(3rem, 6vh, 4.5rem) var(--gutter) 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.foot-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.foot-top .becurious {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}
.foot-top .becurious i { font-style: normal; color: var(--crimson); }
.foot-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.foot-links a { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-45); transition: color 0.25s; }
.foot-links a:hover { color: var(--cream); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.foot-bottom img { height: 30px; width: auto; opacity: 0.9; }
.foot-bottom .mail { font-style: italic; font-size: 1.05rem; color: var(--cream-70); }
.foot-bottom .mail:hover { color: var(--cream); }
.foot-bottom small { font-size: 0.78rem; color: var(--cream-45); letter-spacing: 0.08em; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .universe-core::before { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  /* Dropdown panel under the Menu button, anchored right.
     NB: .site-head has backdrop-filter, which makes it the containing
     block for fixed descendants — a full-screen fixed overlay collapses
     to the header box and its links spill transparently over the page.
     position:absolute against the sticky header avoids that entirely. */
  .site-nav {
    position: absolute;
    top: 100%;
    right: var(--gutter);
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
    padding: 1.6rem 1.9rem 1.8rem;
    background: #000;
    border: 1px solid var(--hairline);
    border-top: none;
    min-width: 218px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 0.95rem; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .head-cta { display: none; }
  .overview, .overview.flip { grid-template-columns: 1fr; gap: 2rem; }
  .overview.flip .overview-media { order: 0; }
  .overview-media img { max-width: 210px; }
  .eco-line { grid-template-columns: 1fr; gap: 3rem; }
  .eco-line::before { display: none; }
  .domain-flank { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .engine-nav { grid-template-columns: 1fr; }
  .engine-detail { grid-template-columns: 1fr; gap: 1.6rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .builder-grid { grid-template-columns: 1fr 1fr; }
  .wf-grid { grid-template-columns: 1fr 1fr; }
  .founders { grid-template-columns: 1fr; gap: 3.5rem; }
  .partner-panels { grid-template-columns: 1fr; gap: 3.5rem; }
  .street-bar { flex-direction: column; gap: 1rem; }
  .street-bar .track { width: 60%; flex: none; height: 3px; }
}
@media (max-width: 560px) {
  .domain-flank { grid-template-columns: repeat(2, 1fr); }
  .builder-grid { grid-template-columns: 1fr; }
  .wf-grid { grid-template-columns: 1fr; }
  .stat-chip { width: 64px; height: 64px; }
  .stat-chip b { font-size: 0.95rem; }
  .stat-chip span { font-size: 0.5rem; }
}

/* ============================================================
   REVISION 2 — feedback round 1 (2026-07-07)
   ============================================================ */

/* Bold navigation (top + footer) */
.site-nav a { font-weight: 700; }
.foot-links a { font-weight: 700; }

/* Red solid header CTA (adopted from Direction B) */
.head-cta {
  background: var(--crimson);
  border: none;
  font-weight: 700;
}
.head-cta:hover { background: var(--cream); color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-solid { background: var(--crimson); color: var(--cream); }
.btn-solid:hover { background: var(--cream); color: var(--ink); }
.btn-outline { border: 1.5px solid var(--cream-45); color: var(--cream); }
.btn-outline:hover { border-color: var(--crimson); color: var(--crimson); }

/* Hero: figure + starfield + larger sub */
.hero { position: relative; overflow: hidden; }
.hero > * { position: relative; z-index: 1; }
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-figure { height: clamp(150px, 20vh, 240px); width: auto; }
.hero .hero-sub { font-size: clamp(1.44rem, 1.9vw, 1.8rem); }

/* Ecosystem role labels: +25% and bold */
.eco-item .eco-role { font-size: 0.98rem; font-weight: 700; color: var(--cream-70); }

/* Contact blocks: larger */
.cta-block .headline { font-size: clamp(2.4rem, 4.6vw, 4rem); }
.cta-block .sub { font-size: clamp(1.35rem, 1.9vw, 1.7rem); }

/* Magellan: cream stat chips */
.stat-chip { background: var(--cream); border: 2px solid var(--crimson); }
.stat-chip b { color: var(--crimson); }
.stat-chip span { color: var(--ink); }

/* Magellan: universe with flanking domain columns */
.universe-grid {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr) minmax(150px, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.universe-core-wrap { padding: clamp(3rem, 6vw, 4.5rem) clamp(3rem, 6vw, 5rem) 0; }
.universe-core { width: 100%; max-width: 460px; }
.domain-col { display: flex; flex-direction: column; gap: clamp(2rem, 5vh, 3.2rem); }
.signals-seal { margin-top: clamp(6.5rem, 14vw, 8.5rem); }

/* Domains: ink engravings in cream circles; labels +25% */
.domain img {
  background: var(--cream);
  border-radius: 50%;
  padding: 10px;
  width: clamp(76px, 8vw, 108px);
  height: clamp(76px, 8vw, 108px);
}
.domain .d-name { font-size: 1.02rem; font-weight: 700; letter-spacing: 0.3em; }
.domain .d-sub { font-size: 1rem; }

/* Engine plates: legibility */
.engine-nav .t { font-size: 1rem; color: var(--cream); }
.engine-nav .d { font-size: 1.05rem; color: var(--cream-70); }

/* Raven props labels: bigger + bold */
.prop span { font-size: 0.92rem; font-weight: 700; color: var(--cream); }

/* Flock column heads: bigger + bold */
.wf-col > .wf-colhead { font-size: 1rem; font-weight: 700; color: var(--cream); }

/* About: founder roles white, bigger, bold */
.founder .role { color: var(--cream); font-size: 1.05rem; font-weight: 700; }

/* Responsive: domains below the universe on mobile */
@media (max-width: 960px) {
  .universe-grid { grid-template-columns: 1fr; }
  .universe-core-wrap { order: -1; padding: 2.5rem 4.4rem 0; }
  .domain-col { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.8rem; margin-top: 2rem; }
  .domain { width: 40%; }
  .signals-seal { margin-top: clamp(4.5rem, 18vw, 6rem); }
  .domain-flank { display: none; }
}

/* Longer Raven chapter intros: upright for legibility */
.feature-head p { font-style: normal; font-size: 1.08rem; }

/* ============================================================
   REVISION 3 — feedback round 2
   ============================================================ */
.display em.accent, .headline em.accent { font-weight: 600; }
.headline, .display { text-wrap: balance; }
.section-head .sub, .cta-block .sub { text-wrap: balance; max-width: 40em; }
.hero--lg .display { font-size: clamp(3.1rem, 7.4vw, 6.6rem); }
.hero--lg .hero-sub { font-size: clamp(1.6rem, 2.2vw, 2.05rem); }
.hero--lg .hero-figure { height: clamp(230px, 33vh, 380px); }
.hero-logo { height: clamp(140px, 18vh, 210px); }
.universe-core .cloud { padding: 0; }
.universe-core::before { border: 2px dotted rgba(251, 248, 245, 0.6); }
.domain .d-sub { font-weight: 700; }
.item-row img.sm { width: 50px; height: 50px; justify-self: center; }
.engine-nav .num { font-size: 2.8rem; font-weight: 600; }
.builder-el .n { font-weight: 700; }
.founder p { text-align: center; }
.feature-head p { max-width: 46em; }
.btn-outline { background: var(--crimson); border: none; color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--ink); }
@media (max-width: 960px) {
  .hero--lg .hero-figure { height: clamp(170px, 24vh, 260px); }
}

/* ============================================================
   REVISION 4 — Direction A chosen; feedback round 3
   ============================================================ */

/* Legibility: brighter dims, larger small text */
:root {
  --cream-70: rgba(251, 248, 245, 0.82);
  --cream-45: rgba(251, 248, 245, 0.58);
}
.eyebrow { font-size: 0.84rem; }
.feature p, .wf-card p, .builder-el p, .item-row p { font-size: 1.06rem; }
.overview-body p { font-size: 1.16rem; }
.founder p { font-size: 1.06rem; }
.domain .d-sub { font-size: 1.06rem; }
.foot-bottom small { font-size: 0.85rem; }
p { text-wrap: pretty; }

/* Tighter heroes + extended dotted connector */
.hero { min-height: calc(87svh - 70px); padding-bottom: 0.25rem; }
.scroll-cue { height: 130px; margin-top: 1.5rem; margin-bottom: -0.5rem; }
.hero + .section, .hero + section { padding-top: clamp(2rem, 4vh, 3.25rem) !important; }

/* Homepage: split hero (copy left, figure right) */
.hero--split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  column-gap: clamp(2rem, 4vw, 4.5rem);
  text-align: left;
}
.hero--split .hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
.hero--split .hero-copy .display { max-width: none; font-size: clamp(2.7rem, 5.3vw, 4.9rem); white-space: nowrap; }
.hero--split .hero-copy .sub { margin: 0; }
.hero--split .hero-figure { justify-self: center; height: clamp(280px, 44vh, 460px); }
.hero--split .scroll-cue { grid-column: 1 / -1; justify-self: center; }

/* Magellan: light grey stat bubbles, seal up, engine boxes */
.stat-chip { background: #DEDBD8; }
.signals-seal { margin-top: clamp(4rem, 8.5vw, 5.5rem); }
.engine-nav .num { font-size: 3.2rem; font-style: normal; font-weight: 600; line-height: 1; }
.engine-nav .t { font-size: 1.4rem; line-height: 1.15; }

/* Flock: ravens in cream circles (pitch-deck treatment) */
.wf-card img {
  background: var(--cream);
  border-radius: 50%;
  padding: 13px;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

/* About: hero manifesto opener */
.hero .hero-sub { max-width: 44em; }

@media (max-width: 960px) {
  .hero--split { grid-template-columns: 1fr; text-align: center; row-gap: 1.6rem; }
  .hero--split .hero-copy { align-items: center; }
  .hero--split .hero-copy .display { white-space: normal; font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero--split .hero-figure { order: -1; height: clamp(180px, 26vh, 270px); }
  .scroll-cue { height: 80px; }
}

/* ============================================================
   REVISION 5 — fold discipline + feedback round 4
   ============================================================ */

/* Fold = bottom of the dotted line, red dot on every page */
.hero { min-height: calc(100svh - 70px); padding-bottom: 1rem; }
.hero > img.hero-figure, .hero > img.hero-logo { margin-top: auto; }
.hero > .scroll-cue { margin-top: auto; margin-bottom: 0; height: clamp(70px, 12vh, 140px); flex-shrink: 0; }
.scroll-cue::after { width: 7px; height: 7px; left: -3px; bottom: -2px; }
.hero + .section, .hero + section { padding-top: clamp(1.5rem, 3vh, 2.5rem) !important; }

/* Homepage: 50% bigger headline; copy+figure group centered as a unit */
.hero--split {
  grid-template-columns: auto auto;
  grid-template-rows: 1fr auto;
  justify-content: center;
  column-gap: clamp(3rem, 7vw, 7.5rem);
}
.hero--split .hero-figure { margin-top: 0; }
.hero--split .hero-copy .display { font-size: clamp(3.6rem, 7.6vw, 7rem); }
.hero--split .hero-sub { font-size: clamp(1.7rem, 2.3vw, 2.15rem); }

/* Magellan: engine plates centered, bigger numbers */
.engine-nav a.plate { justify-content: center; min-height: 200px; }
.engine-nav .num { font-size: 4rem; font-variant-numeric: lining-nums; }

/* Raven: props rail as 7-column grid — ring dead-center, line through icon centers */
.props-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  row-gap: 0.7rem;
  column-gap: clamp(0.5rem, 1.8vw, 1.8rem);
}
.props-rail::before { top: calc(1rem + clamp(120px, 12vw, 168px) / 2); }
.props-rail .prop { display: contents; }
.props-rail .prop img { grid-row: 1; transition: transform 0.3s; }
.props-rail .prop span { grid-row: 2; }
.props-rail .prop:nth-child(1) img, .props-rail .prop:nth-child(1) span { grid-column: 1; }
.props-rail .prop:nth-child(2) img, .props-rail .prop:nth-child(2) span { grid-column: 2; }
.props-rail .prop:nth-child(3) img, .props-rail .prop:nth-child(3) span { grid-column: 3; }
.props-rail .prop:nth-child(4) img { grid-column: 4; }
.props-rail .prop:nth-child(5) img, .props-rail .prop:nth-child(5) span { grid-column: 5; }
.props-rail .prop:nth-child(6) img, .props-rail .prop:nth-child(6) span { grid-column: 6; }
.props-rail .prop:nth-child(7) img, .props-rail .prop:nth-child(7) span { grid-column: 7; }
.props-rail .prop img:hover { transform: translateY(-4px); }

/* Flock: more breathing room inside raven circles */
.wf-card img { width: 98px; height: 98px; padding: 17px; }

@media (max-width: 960px) {
  .props-rail { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
  .props-rail::before { display: none; }
  .props-rail .prop { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
  .hero--split { grid-template-columns: 1fr; }
  .hero--split .hero-copy .display { font-size: clamp(2.5rem, 9.5vw, 3.6rem); }
}

/* ============================================================
   REVISION 6 — feedback round 5
   ============================================================ */

/* Homepage: figure truly centered with the copy (beats the fold margin rule) */
.hero--split :is(img, video).hero-figure { margin-top: 0; align-self: center; }

/* Raven rail v2: thicker line BEHIND icons, labels tight to icons, ring dead-center */
.props-rail {
  --pico: clamp(56px, 6vw, 84px);
  grid-template-rows: auto;
  align-items: start;
  padding: 1rem 0 clamp(2.5rem, 5vw, 3.75rem);
}
.props-rail::before {
  height: 3px;
  background-image: none;
  background-color: rgba(251, 248, 245, 0.5);
  top: calc(1rem + var(--pico) / 2);
  z-index: 0;
}
.props-rail .prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  grid-row: 1;
  position: relative;
  z-index: 1;
}
.props-rail .prop:nth-child(1) { grid-column: 1; }
.props-rail .prop:nth-child(2) { grid-column: 2; }
.props-rail .prop:nth-child(3) { grid-column: 3; }
.props-rail .prop:nth-child(5) { grid-column: 5; }
.props-rail .prop:nth-child(6) { grid-column: 6; }
.props-rail .prop:nth-child(7) { grid-column: 7; }
.props-rail .prop img { width: var(--pico); height: var(--pico); }
.props-rail .prop-center {
  position: absolute;
  left: 50%;
  top: calc(1rem + var(--pico) / 2);
  transform: translate(-50%, -50%);
}
.props-rail .prop-center img { width: clamp(120px, 12vw, 168px); height: auto; }

/* Raven: close the gap between the rail and 01 · Sectors & Analysts */
#props { padding-bottom: 1rem; }
.feature-block:first-of-type { padding-top: clamp(1.5rem, 3vh, 2.5rem); }

/* Flock: art at ~60% of circle (deck proportion) so crop edges stay clear of the rim */
.wf-card img { width: 100px; height: 100px; padding: 20px; }

@media (max-width: 960px) {
  .props-rail .prop-center { position: static; transform: none; }
}

/* ============================================================
   REVISION 7 — feedback round 6
   ============================================================ */

/* Dotted-line motif above CTA headlines */
.cta-cue {
  width: 1px;
  height: clamp(70px, 10vh, 110px);
  background-image: linear-gradient(to bottom, var(--cream-45) 45%, transparent 45%);
  background-size: 1px 9px;
  position: relative;
  margin-bottom: 0.6rem;
}
.cta-cue::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson);
}

/* Homepage: header/sub up 25%; figure sized in vw so the pair scales together */
.hero--split { column-gap: clamp(2rem, 4.5vw, 4.5rem); }
.hero--split .hero-copy .display { font-size: clamp(4.2rem, 9vw, 8.4rem); }
.hero--split .hero-sub { font-size: clamp(2rem, 2.8vw, 2.6rem); }
.hero--split .hero-figure { height: auto; width: clamp(250px, 26vw, 420px); }

@media (max-width: 960px) {
  .hero--split .hero-copy .display { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero--split .hero-figure { width: clamp(170px, 44vw, 260px); }
  .cta-cue { height: 60px; }
}

/* ============================================================
   REVISION 8 — feedback round 7
   ============================================================ */

/* CTA sections: trim the extra whitespace above the dotted cue */
#contact, #partnership, #demo, #custom { padding-top: clamp(2rem, 4vh, 3.5rem); }
.cta-cue { height: clamp(60px, 8vh, 90px); }

/* Homepage: revert round-7 size bump to the previous version */
.hero--split { column-gap: clamp(3rem, 7vw, 7.5rem); }
.hero--split .hero-copy .display { font-size: clamp(3.6rem, 7.6vw, 7rem); }
.hero--split .hero-sub { font-size: clamp(1.7rem, 2.3vw, 2.15rem); }
.hero--split .hero-figure { height: clamp(280px, 44vh, 460px); width: auto; }

/* Flock: circles are baked into the assets now — plain images, no CSS clipping */
.wf-card img { background: none; padding: 0; border-radius: 0; width: 100px; height: 100px; }

@media (max-width: 960px) {
  .hero--split .hero-copy .display { font-size: clamp(2.5rem, 9.5vw, 3.6rem); }
  .hero--split .hero-figure { height: clamp(180px, 26vh, 270px); width: auto; }
}

/* Broadsheet (Public) icon: a hair smaller to sit optically even with coin + pipe */
#sources .item-row:first-child img { width: 64px; height: 64px; justify-self: center; }

/* Center every source/engine icon in its column so visual centers align */
.item-row img { justify-self: center; }

/* Raven ring: deterministic vertical centering on the line */
.props-rail .prop-center {
  top: calc(1rem + var(--pico) / 2 - clamp(120px, 12vw, 168px) / 2);
  transform: translateX(-50%);
}

/* Ring's abs containing block is its grid row (starts after rail padding) — remove the 1rem term */
.props-rail .prop-center {
  top: calc(var(--pico) / 2 - clamp(120px, 12vw, 168px) / 2);
}

/* ============================================================
   REVISION 9 — Matthew's easy edits (master v1.0)
   ============================================================ */

/* 10M+ Signals: typographic stat between dotted rules (not a button) */
.signals-seal {
  background: none;
  color: inherit;
  padding: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0;
}
.signals-seal::before, .signals-seal::after {
  content: '';
  width: clamp(46px, 7vw, 110px);
  height: 3px;
  background-image: radial-gradient(circle, var(--cream-45) 1.2px, transparent 1.4px);
  background-size: 9px 3px;
  background-repeat: repeat-x;
}
.signals-seal b {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  font-variant-numeric: lining-nums;
}
.signals-seal span {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
  padding-top: 0.5em;
}

/* ============================================================
   REVISION 10 — MASTER v1.2: legibility, "Type" treatment
   (Matthew's pick from Version B explorations, 2026-07-13)
   Quiet copy: full-strength cream, Medium weight, ~15% larger.
   ============================================================ */

:root {
  --cream-70: rgba(251, 248, 245, 0.97);
  --cream-45: rgba(251, 248, 245, 0.72);
}

/* Full-strength Medium-weight quiet copy */
.sub, .overview-body p, .feature p, .feature-head p, .wf-card p,
.builder-el p, .item-row p, .founder p, .partner-panel p,
.engine-nav .d, .domain .d-sub, .placeholder-frame .cap, .cta-block p {
  font-weight: 500;
  letter-spacing: 0.012em;
}
.manifesto p { font-weight: 400; }
.placeholder-frame .cap { color: var(--cream-70); }

/* ~15% larger quiet copy */
.feature p, .wf-card p, .builder-el p, .item-row p, .founder p { font-size: 1.22rem; line-height: 1.58; }
.overview-body p { font-size: 1.34rem; line-height: 1.6; }
.feature-head p, .partner-panel p { font-size: 1.26rem; line-height: 1.6; }
.engine-nav .d { font-size: 1.18rem; }
.domain .d-sub { font-size: 1.16rem; }
.placeholder-frame .cap { font-size: 1.18rem; }
.eyebrow { font-size: 0.92rem; }
.feature h4, .wf-card h4, .builder-el h4, .item-row h4 { font-size: 1.34rem; }
.foot-bottom small { font-size: 0.95rem; color: var(--cream-70); }

/* Magellan "Creating connectivity" headline on one line (2026-07-13):
   smaller size, section-head freed of its measure so the line can run wide.
   Wraps naturally again below ~1000px where one line can't fit. */
#data-signals .section-head { max-width: none; }
#data-signals .headline { font-size: clamp(1.7rem, 2.95vw, 2.85rem); }

/* ============================================================
   REVISION 11 — responsive QA round (Chris, 2026-07-15)
   Branch: 09_Version B - Responsive (from Master Option 2)
   ============================================================ */

/* Mobile dropdown: Get in Touch lives inside the menu (head-cta is
   hidden ≤960px); hidden on desktop where head-cta covers it. */
.site-nav .nav-contact { display: none; }
@media (max-width: 960px) {
  .site-nav .nav-contact {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.6rem 1.3rem;
    background: var(--crimson);
    color: var(--cream);
    font-weight: 700;
  }
  .site-nav .nav-contact:hover { background: var(--cream); color: var(--ink); }
}

/* Hero figure can never distort: if the grid column pinches the image
   (global img max-width:100%), letterbox inside the box instead of
   stretching. Applies to every hero image site-wide. */
.hero-figure, .hero-logo { object-fit: contain; }

/* Split hero stacks earlier — between 960 and 1080px the two-column
   layout pinched the figure column. Same stack recipe as ≤960px. */
@media (max-width: 1080px) {
  .hero--split { grid-template-columns: 1fr; text-align: center; row-gap: 1.6rem; }
  .hero--split .hero-copy { align-items: center; }
  .hero--split .hero-copy .display { white-space: normal; font-size: clamp(2.5rem, 6.5vw, 3.8rem); }
  .hero--split .hero-figure { order: -1; height: clamp(180px, 26vh, 270px); width: auto; }
}

/* Magellan domains ≤960px: tidy 3-per-row grid per column instead of
   the 2+1 zigzag the flex-wrap produced. */
@media (max-width: 960px) {
  /* minmax(0,1fr): plain 1fr tracks refuse to shrink below the labels'
     min-content width and overflow the viewport on phones */
  .domain-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; width: 100%; }
  .domain { width: auto; }
  .universe-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .domain-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* smaller chips (density.css) need less side padding — bigger disk */
  .universe-core-wrap { padding-left: 3rem; padding-right: 3rem; }
}

/* Raven rail ≤960px: REVISION 8's translateX(-50%) (line ~954) outlives
   the media reset above it in the cascade and shifted the in-flow ring
   half its width onto the Business icon. Reset it here (last in file),
   and give the ring its own centered row above the wrapped icons. */
@media (max-width: 960px) {
  .props-rail .prop-center {
    position: static;
    transform: none;
    order: -1;
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

/* ============================================================
   REVISION 12 — Flock #workflows copy round (2026-07-21)
   ============================================================ */
/* Widen the intro measure so the (shortened) copy sits on 2 lines, not 3 —
   extends left & right within the .wrap-wide column. text-wrap:balance is
   overridden: with room it minimises line width and PREFERS 3 short lines,
   so use pretty + a measure that fills to exactly two lines. */
#workflows .section-head { max-width: none; }
#workflows .section-head .sub { max-width: 52em; text-wrap: wrap; }
/* Descriptors: italic, slightly smaller so all 8 fit on 2 lines, and a
   uniform 2-line reserve so the grid rows stay level. */
#workflows .wf-card p { font-style: italic; font-size: 1.16rem; min-height: 2lh; }

/* ============================================================
   REVISION 13 — Mobile icon grids (2026-07-21)
   Phone-only (≤600px) cleanups for the Magellan domain icons and the
   Raven props rail, which wrapped raggedly. Id-prefixed + inside a
   media query, so DESKTOP IS UNTOUCHED.
   ============================================================ */
@media (max-width: 600px) {
  /* Magellan universe: cloud on top, then a clean 2×3 grid of the 6 domains.
     display:contents promotes the domains out of their two columns into the
     universe-grid so all six align in one 2-col grid. */
  #data-signals .universe-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.4rem; align-items: start; }
  #data-signals .domain-col { display: contents; }
  #data-signals .universe-core-wrap { grid-column: 1 / -1; order: -1; }
  #data-signals .domain { width: auto; }

  /* Raven rail: ring on top, then an even 3×2 grid (fixed-width props so the
     variable-width labels stop wrapping unevenly); tighter label spacing so
     they fit the narrow columns. */
  #props .props-rail { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 2rem 0; }
  #props .props-rail::before { display: none; }
  #props .props-rail .prop { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; flex: 0 0 33%; max-width: 33%; }
  #props .props-rail .prop span { letter-spacing: 0.08em; font-size: 0.78rem; text-align: center; }
  #props .props-rail .prop-center { flex: 0 0 100%; max-width: 100%; order: -1; position: static; transform: none; }
}
