/* Stroom Capital — stroom.css
   Palette:
   brand_primary / bg_dark:   #0d1117
   bg_dark_alt:               #161b22
   bg_light:                  #f8fafc
   bg_white:                  #ffffff
   accent_decorative:         #22d3ee  (cyan on dark)
   accent_aa_on_light:        #0369a1  (dark teal on light)
   fg_on_dark_primary:        #f0f6fc
   fg_on_dark_secondary:      #8b949e
   fg_on_light_primary:       #0d1117
   fg_on_light_secondary:     #4b5563
   divider_on_dark:           #21262d
   portfolio_card_bg:         #161b22
*/

/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0d1117;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { line-height: 1.75; }

a { text-decoration: none; }

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg-dark: #0d1117;
  --bg-dark-alt: #161b22;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --accent: #22d3ee;
  --accent-light: #0369a1;
  --fg-dark-1: #f0f6fc;
  --fg-dark-2: #8b949e;
  --fg-light-1: #0d1117;
  --fg-light-2: #4b5563;
  --divider-dark: #21262d;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ===== NAV ===== */
.stroom-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Dark-top pages: transparent until scroll */
.stroom-nav--dark {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.stroom-nav--dark .stroom-nav__link {
  color: #f0f6fc;
}
.stroom-nav--dark .stroom-nav__link:hover {
  color: #22d3ee;
}
.stroom-nav--dark.scrolled {
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: #21262d;
}
.stroom-nav--dark.scrolled .stroom-nav__link {
  color: #f0f6fc;
}
.stroom-nav--dark.scrolled .stroom-nav__link:hover {
  color: #22d3ee;
}

/* Light-top pages: white from the start */
.stroom-nav--light {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.stroom-nav--light .stroom-nav__link {
  color: #0d1117;
}
.stroom-nav--light .stroom-nav__link:hover {
  color: #0369a1;
}

.stroom-nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stroom-nav__logo { display: flex; align-items: center; }

.stroom-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.stroom-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.stroom-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.stroom-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
/* hamburger color based on nav variant */
.stroom-nav--dark .stroom-nav__hamburger { color: #f0f6fc; }
.stroom-nav--light .stroom-nav__hamburger { color: #0d1117; }

.stroom-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #0d1117;
  padding: 1.5rem 2rem;
  border-top: 1px solid #21262d;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}

.stroom-nav__mobile-menu.open { display: flex; }

.stroom-nav__mobile-link {
  color: #f0f6fc;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid #21262d;
  display: block;
}
.stroom-nav__mobile-link:hover { color: #22d3ee; }

/* ===== CONTAINER ===== */
.stroom-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.stroom-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
}

.stroom-btn--outline-dark {
  color: #f0f6fc;
  border-color: rgba(240, 246, 252, 0.4);
  background: transparent;
}
.stroom-btn--outline-dark:hover {
  color: #22d3ee;
  border-color: #22d3ee;
  background: transparent;
}

.stroom-btn--ghost-dark {
  color: #22d3ee;
  border-color: #22d3ee;
  background: transparent;
}
.stroom-btn--ghost-dark:hover {
  background: rgba(34, 211, 238, 0.08);
  color: #22d3ee;
}

.stroom-btn--outline-light {
  color: #0d1117;
  border-color: #0d1117;
  background: transparent;
}
.stroom-btn--outline-light:hover {
  color: #0369a1;
  border-color: #0369a1;
  background: transparent;
}

.stroom-btn--primary {
  background: #22d3ee;
  color: #0d1117;
  border-color: #22d3ee;
}
.stroom-btn--primary:hover {
  background: #06b6d4;
  border-color: #06b6d4;
  color: #0d1117;
}

/* ===== SECTION LABEL ===== */
.stroom-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.stroom-label--dark { color: #22d3ee; }
.stroom-label--light { color: #0369a1; }

/* ===== HERO — INDEX ===== */
.stroom-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0d1117;
}

.stroom-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stroom-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stroom-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.65);
  z-index: 1;
}

/* Fallback CSS mesh gradient when no hero image */
.stroom-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1117 0%, #0f1f2e 60%, #0d1117 100%);
  z-index: 0;
}
.stroom-hero__bg-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
}

.stroom-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}

.stroom-hero__headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f0f6fc;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.stroom-hero__subtext {
  font-size: 1.125rem;
  color: rgba(240, 246, 252, 0.75);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ===== SECTION: CONVICTION PILLARS ===== */
.stroom-pillars {
  background: #161b22;
  padding: 6rem 2rem;
}

.stroom-pillars__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stroom-pillar {
  background: #0d1117;
  padding: 2.5rem;
  border: 1px solid #21262d;
}

.stroom-pillar__area {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #22d3ee;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.stroom-pillar__belief {
  font-size: 1.0625rem;
  color: #f0f6fc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.stroom-pillar__companies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.stroom-pillar__company {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8b949e;
  letter-spacing: 0.04em;
}

.stroom-pillar__company::after { content: ' ·'; }
.stroom-pillar__company:last-child::after { content: ''; }

/* ===== SECTION: PORTFOLIO PREVIEW ===== */
.stroom-portfolio-preview {
  background: #0d1117;
  padding: 6rem 2rem;
}

.stroom-portfolio-preview__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.stroom-portfolio-preview__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #f0f6fc;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.stroom-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-bottom: 3rem;
  background: #21262d;
  border: 1px solid #21262d;
}

.stroom-logo-grid__item {
  background: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.stroom-logo-grid__item:hover {
  opacity: 1;
  background: #161b22;
}

.stroom-logo-grid__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.25);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #22d3ee;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.stroom-logo-grid__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.stroom-logo-grid__name {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240, 246, 252, 0.6);
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.stroom-logo-grid__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== SECTION: TEAM SNAPSHOT ===== */
.stroom-team-snap {
  background: #161b22;
  padding: 6rem 2rem;
}

.stroom-team-snap__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.stroom-team-snap__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #f0f6fc;
  margin-bottom: 3rem;
  text-align: center;
}

.stroom-team-snap__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stroom-team-snap__member {
  text-align: center;
}

.stroom-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  border: 2px solid #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #22d3ee;
  margin: 0 auto 1rem;
  letter-spacing: 0.05em;
}

.stroom-avatar--large {
  width: 120px;
  height: 120px;
  font-size: 1.375rem;
}

img.stroom-avatar {
  object-fit: cover;
  object-position: top;
  background: none;
  border: none;
}

.stroom-team-snap__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 0.25rem;
}

.stroom-team-snap__title {
  font-size: 0.8125rem;
  color: #8b949e;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.stroom-team-snap__credential {
  font-size: 0.875rem;
  color: rgba(240, 246, 252, 0.65);
  line-height: 1.5;
}

.stroom-team-snap__tagline {
  text-align: center;
  font-size: 0.9375rem;
  color: #8b949e;
  font-style: italic;
}

/* ===== SECTION: LATEST INSIGHTS (light) ===== */
.stroom-latest-insights {
  background: #f8fafc;
  padding: 6rem 2rem;
}

.stroom-latest-insights__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.stroom-latest-insights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.stroom-latest-insights__heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #0d1117;
}

.stroom-article-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stroom-article-card {
  border-bottom: 2px solid #0d1117;
  padding-bottom: 1.5rem;
}

.stroom-article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.stroom-article-card__cat {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.stroom-article-card__date {
  font-size: 0.75rem;
  color: #4b5563;
}

.stroom-article-card__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.stroom-article-card__headline a {
  color: #0d1117;
  text-decoration: none;
}
.stroom-article-card__headline a:hover { color: #0369a1; }

.stroom-article-card__author {
  font-size: 0.8125rem;
  color: #4b5563;
}

.stroom-article-card__excerpt {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.stroom-footer {
  background: #0d1117;
  border-top: 1px solid #21262d;
  padding: 3rem 2rem 2rem;
}

.stroom-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.stroom-footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid #21262d;
  margin-bottom: 1.5rem;
}

.stroom-footer__address-block address {
  font-style: normal;
  font-size: 0.875rem;
  color: #8b949e;
  line-height: 1.8;
}

.stroom-footer__address-block .stroom-footer__firm-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #f0f6fc;
  margin-bottom: 0.5rem;
}

.stroom-footer__contact { font-size: 0.875rem; }

.stroom-footer__contact a {
  display: block;
  color: #8b949e;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.stroom-footer__contact a:hover { color: #22d3ee; }

.stroom-footer__social a {
  color: #8b949e;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.stroom-footer__social a:hover { color: #22d3ee; }

.stroom-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 2rem;
}

.stroom-footer__copy {
  font-size: 0.75rem;
  color: #8b949e;
}

.stroom-footer__legal-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.stroom-footer__legal-links a {
  font-size: 0.75rem;
  color: #8b949e;
  transition: color 0.2s;
}
.stroom-footer__legal-links a:hover { color: #22d3ee; }

.stroom-footer__disclaimer {
  font-size: 0.6875rem;
  color: #8b949e;
  line-height: 1.6;
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #21262d;
}

/* ===== THESIS PAGE ===== */
.stroom-page--light { background: #f8fafc; }

.stroom-text-hero {
  background: #f8fafc;
  padding: 8rem 2rem 5rem;
}

.stroom-text-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.stroom-text-hero__headline {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #0d1117;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.stroom-text-hero__subtext {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Problem landscape */
.stroom-editorial {
  background: #ffffff;
  padding: 5rem 2rem;
}

.stroom-editorial__inner {
  max-width: 720px;
  margin: 0 auto;
}

.stroom-editorial h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #0d1117;
  margin-bottom: 1.25rem;
}

.stroom-editorial p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.stroom-editorial p:last-child { margin-bottom: 0; }

.stroom-pull-quote {
  border-left: 3px solid #0369a1;
  padding: 1rem 1.5rem;
  margin: 2.5rem 0;
  font-size: 1.125rem;
  font-style: italic;
  color: #0369a1;
  line-height: 1.65;
}

/* Investment approach (split) */
.stroom-approach {
  background: #f8fafc;
  padding: 5rem 2rem;
}

.stroom-approach__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.stroom-approach__prose h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #0d1117;
  margin-bottom: 1.25rem;
}

.stroom-approach__prose p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

.stroom-stats-panel {
  background: #0d1117;
  border: 1px solid #21262d;
  padding: 2rem;
  border-radius: 2px;
}

.stroom-stat {
  padding: 1.25rem 0;
  border-bottom: 1px solid #21262d;
}
.stroom-stat:last-child { border-bottom: none; }

.stroom-stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #22d3ee;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stroom-stat__label {
  font-size: 0.8125rem;
  color: #8b949e;
  letter-spacing: 0.04em;
}

/* Founder criteria */
.stroom-criteria {
  background: #ffffff;
  padding: 5rem 2rem;
}

.stroom-criteria__inner {
  max-width: 720px;
  margin: 0 auto;
}

.stroom-criteria__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #0d1117;
  margin-bottom: 2.5rem;
}

.stroom-criteria-list {
  list-style: none;
  counter-reset: criteria;
}

.stroom-criteria-item {
  counter-increment: criteria;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  align-items: start;
}
.stroom-criteria-item:last-child { border-bottom: none; }

.stroom-criteria-item::before {
  content: counter(criteria, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0369a1;
  padding-top: 0.3rem;
  line-height: 1.5;
}

/* stroom-criteria-item__content: wrapper div inside list items */

.stroom-criteria-item__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 0.35rem;
}

.stroom-criteria-item__body {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Contact / pitch block */
.stroom-contact-block {
  background: #0d1117;
  padding: 6rem 2rem;
}

.stroom-contact-block__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.stroom-contact-block__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #f0f6fc;
  margin-bottom: 1rem;
}

.stroom-contact-block__cta {
  font-size: 1.125rem;
  color: rgba(240, 246, 252, 0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.stroom-contact-block__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.stroom-contact-block__details a {
  font-size: 1rem;
  color: #22d3ee;
  transition: opacity 0.2s;
}
.stroom-contact-block__details a:hover { opacity: 0.8; }

.stroom-contact-block__addr {
  font-size: 0.9375rem;
  color: #8b949e;
  font-style: normal;
}

/* ===== PORTFOLIO PAGE ===== */
.stroom-port-hero {
  background: #0d1117;
  padding: 8rem 2rem 5rem;
}

.stroom-port-hero__inner {
  max-width: 840px;
  margin: 0 auto;
}

.stroom-port-hero__headline {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #f0f6fc;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.stroom-port-hero__subtext {
  font-size: 1.0625rem;
  color: #8b949e;
  max-width: 620px;
  line-height: 1.7;
}

.stroom-port-grid-section {
  background: #0d1117;
  padding: 4rem 2rem 6rem;
}

.stroom-port-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #21262d;
  border: 1px solid #21262d;
}

.stroom-port-card {
  background: #161b22;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.stroom-port-card:hover { background: #1c2430; }

.stroom-port-card__logo-area {
  margin-bottom: 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
}

.stroom-port-card__lettermark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #22d3ee;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.stroom-port-card__logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.stroom-port-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 0.35rem;
}

.stroom-port-card__sector {
  font-size: 0.8125rem;
  color: #8b949e;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.stroom-port-card__desc {
  font-size: 0.8125rem;
  color: #8b949e;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.stroom-port-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stroom-port-card__stage {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.stroom-port-card__year {
  font-size: 0.75rem;
  color: #8b949e;
}

.stroom-port-card__link {
  font-size: 0.8125rem;
  color: #22d3ee;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}
.stroom-port-card:hover .stroom-port-card__link { gap: 0.5rem; }

/* ===== TEAM PAGE ===== */
.stroom-bio-section {
  background: #ffffff;
  padding: 4rem 2rem 6rem;
}

.stroom-bio-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.stroom-bio-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.stroom-bio-row:first-child { padding-top: 0; }
.stroom-bio-row:last-child { border-bottom: none; }

.stroom-bio-row__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.stroom-bio-row__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1117;
}

.stroom-bio-row__title {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0369a1;
}

.stroom-bio-row__funds {
  font-size: 0.8125rem;
  color: #4b5563;
}

.stroom-bio-row__prose {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

.stroom-culture-section {
  background: #f8fafc;
  padding: 5rem 2rem;
}

.stroom-culture-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

.stroom-culture-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #0d1117;
  margin-bottom: 1.25rem;
}

.stroom-culture-section p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ===== INSIGHTS PAGE ===== */
.stroom-insights-hero {
  background: #f8fafc;
  padding: 8rem 2rem 4rem;
}

.stroom-insights-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.stroom-insights-hero__headline {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  color: #0d1117;
  margin-bottom: 1rem;
}

.stroom-insights-hero__subtext {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.75;
}

.stroom-feed-section {
  background: #ffffff;
  padding: 3rem 2rem 6rem;
}

.stroom-feed-section__inner {
  max-width: 760px;
  margin: 0 auto;
}

.stroom-feed-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
  transition: background 0.15s;
}
.stroom-feed-item:last-child { border-bottom: none; }
.stroom-feed-item:hover { background: transparent; }

.stroom-feed-item__date-col {
  font-size: 0.8125rem;
  color: #4b5563;
  padding-top: 0.25rem;
  flex-shrink: 0;
}

.stroom-feed-item__cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
  margin-bottom: 0.4rem;
}

.stroom-feed-item__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.stroom-feed-item:hover .stroom-feed-item__headline { color: #0369a1; }

.stroom-feed-item__author {
  font-size: 0.8125rem;
  color: #4b5563;
}

/* ===== INDIVIDUAL ARTICLE PAGE ===== */
.stroom-article-layout {
  background: #ffffff;
  padding-top: var(--nav-h);
}

.stroom-article-breadcrumb {
  background: #f8fafc;
  padding: 0.875rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.8125rem;
  color: #4b5563;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.stroom-article-breadcrumb a {
  color: #0369a1;
  text-decoration: none;
}
.stroom-article-breadcrumb a:hover { text-decoration: underline; }
.stroom-article-breadcrumb .sep { color: #9ca3af; }

.stroom-article-head {
  padding: 4rem 2rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.stroom-article-head__cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
  margin-bottom: 0.75rem;
}

.stroom-article-head__headline {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  color: #0d1117;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.stroom-article-head__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.stroom-article-head__author { font-weight: 500; color: #0d1117; }

.stroom-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

.stroom-article-body h2 {
  font-size: 1.5rem;
  color: #0d1117;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.stroom-article-body h3 {
  font-size: 1.1875rem;
  color: #0d1117;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.stroom-article-body p { margin-bottom: 1.25rem; }
.stroom-article-body ul, .stroom-article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}
.stroom-article-body li { margin-bottom: 0.5rem; }
.stroom-article-body blockquote {
  border-left: 3px solid #0369a1;
  padding: 0.75rem 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: #0369a1;
}
.stroom-article-body code {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  padding: 0.15em 0.4em;
  font-size: 0.9em;
  color: #0d1117;
}
.stroom-article-body pre {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.stroom-article-body pre code {
  background: transparent;
  border: none;
  padding: 0;
}
.stroom-article-body img {
  max-width: 100%;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.stroom-article-related {
  background: #f8fafc;
  padding: 4rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.stroom-article-related__inner {
  max-width: 720px;
  margin: 0 auto;
}

.stroom-article-related__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.stroom-article-related__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stroom-article-related__list a {
  font-size: 0.9375rem;
  color: #0369a1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.stroom-article-related__list a:hover { text-decoration: underline; }

/* ===== LEGAL PAGES ===== */
.stroom-legal-layout {
  background: #ffffff;
  padding-top: var(--nav-h);
}

.stroom-legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-article { }

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-header h1 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: #0d1117;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.25rem;
}

.legal-article section {
  margin-bottom: 2.5rem;
}

.legal-article h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 0.875rem;
  font-family: 'Space Grotesk', sans-serif;
}

.legal-article p {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-article ul, .legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-article li {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.8;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.legal-table th {
  background: #f3f4f6;
  color: #0d1117;
  font-weight: 600;
  padding: 0.6rem 0.875rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.legal-table td {
  padding: 0.5rem 0.875rem;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  vertical-align: top;
}

.legal-article a { color: #0369a1; }
.legal-article a:hover { text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #161b22;
  border-top: 1px solid #21262d;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: #8b949e;
  line-height: 1.6;
  min-width: 200px;
}

.cookie-banner__text a {
  color: #22d3ee;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  color: #f0f6fc;
}

.cookie-banner__btn--primary {
  background: #22d3ee;
  border-color: #22d3ee;
  color: #0d1117;
}
.cookie-banner__btn--primary:hover { background: #06b6d4; border-color: #06b6d4; color: #0d1117; }

.cookie-banner__btn--secondary {
  background: transparent;
  border-color: #21262d;
  color: #8b949e;
}
.cookie-banner__btn--secondary:hover { border-color: #8b949e; color: #f0f6fc; }

/* ===== FADE-IN ANIMATION ===== */
/* Default: fully visible (accessible, no-JS safe) */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* JS enhancement: when page loads, JS adds .js-fade-ready to body,
   then elements start hidden and animate in */
.js-fade-ready .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-ready .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== VISUALLY HIDDEN ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Bio row bio column (right side) */
.stroom-bio-row__bio { }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stroom-pillars__grid { grid-template-columns: 1fr; gap: 1px; }
  .stroom-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .stroom-port-grid { grid-template-columns: repeat(2, 1fr); }
  .stroom-approach__inner { grid-template-columns: 1fr; }
  .stroom-approach__inner .stroom-stats-panel { max-width: 480px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .stroom-nav__links { display: none; }
  .stroom-nav__hamburger { display: flex; }

  .stroom-hero__headline { font-size: 2.5rem; }

  .stroom-logo-grid { grid-template-columns: repeat(2, 1fr); }

  .stroom-team-snap__row { grid-template-columns: 1fr; }
  .stroom-article-cards { grid-template-columns: 1fr; }

  .stroom-port-grid { grid-template-columns: 1fr; }

  .stroom-bio-row { grid-template-columns: 1fr; gap: 1.5rem; }

  .stroom-feed-item { grid-template-columns: 1fr; gap: 0.5rem; }

  .stroom-footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
  .stroom-footer__bottom { flex-direction: column; gap: 0.75rem; }
  .stroom-latest-insights__header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .stroom-approach__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stroom-container { padding: 0 1.25rem; }
  .stroom-hero__content { padding: 0 1.25rem; }
  .stroom-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* ===== SUB-PAGE HERO VISUAL WEIGHT ===== */
/* Geometric ornament for light-top sub-page heroes */
.stroom-text-hero__ornament {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stroom-text-hero__ornament span {
  display: block;
  height: 3px;
  border-radius: 1px;
}
.stroom-text-hero__ornament span:nth-child(1) { width: 32px; background: #0369a1; }
.stroom-text-hero__ornament span:nth-child(2) { width: 16px; background: rgba(3, 105, 161, 0.4); }
.stroom-text-hero__ornament span:nth-child(3) { width: 8px; background: rgba(3, 105, 161, 0.2); }

/* Data fragment stat band for portfolio hero on dark */
.stroom-port-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stroom-port-hero__stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stroom-port-hero__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #22d3ee;
}

.stroom-port-hero__stat-lbl {
  font-size: 0.75rem;
  color: #8b949e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
