/* ═══════════════════════════════════════════════════════
   Brask Group — front page, For Founders, For Partners
   The bold layout: a black hero with drifting geometry,
   centered section headings, and lifted cards on flat
   white. Self-contained on purpose — the document pages
   (rounds, legal, 404) still run on the editorial system
   in site.css, so this file owns its own reset and tokens
   and never fights that one.
   ═══════════════════════════════════════════════════════ */

:root {
  --paper:      #FFFFFF;
  --ink:        #0B0B0C;
  --ink-soft:   #46464C;
  --ink-mute:   #6B6B72;
  --rule:       #E6E6E2;
  --rule-strong: #D8D8D3;
  --accent:      #C4390A;
  --accent-bright: #FF5A1F;

  /* Areas of impact. The bright pair is the icon colour the
     old site used; the deep pair is the same hue pulled down
     far enough to clear AA as text on white. Icons take the
     bright one, labels take the deep one. */
  --health-bright:   #FF6B6B;
  --agency-bright:   #00C4B4;
  --society-bright:  #4A90E2;
  --horizons-bright: #7E57C2;
  --health:   #B9382B;
  --agency:   #0E7A6E;
  --society:  #2166B8;
  --horizons: #5F41A0;

  --sans: 'Schibsted Grotesk', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1180px;
  --card: 0 10px 30px rgba(11, 11, 12, .06);
  --card-hi: 0 22px 52px rgba(11, 11, 12, .12);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--paper); }

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
@media (max-width: 700px) { .container { padding: 0 22px; } }

/* ── Section scaffolding ──────────────────────────────── */

.section {
  padding: 104px 0;
  position: relative;
}
@media (max-width: 860px) { .section { padding: 68px 0; } }

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--ink-mute);
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.section-heading .eyebrow { color: var(--accent); }

/* A faint crosshatch, the way the old site marked its
   alternating sections. Barely there by design — it is the
   only thing separating one white section from the next. */
.section-pattern { overflow: hidden; }
.section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, var(--ink) 1px, transparent 1px),
    linear-gradient(-45deg, var(--ink) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .028;
  pointer-events: none;
}

/* ── Scroll progress ──────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent-bright);
  z-index: 1200;
  transition: width .1s linear;
}

/* ── Navbar ───────────────────────────────────────────────
   Transparent over a dark hero, then a white bar with a
   hairline once the hero has scrolled past. The logo is a
   single transparent PNG filtered to pure white or pure
   black, so it stays legible on either ground.
   ──────────────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.navbar.scrolled,
.navbar.menu-open {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: var(--rule);
  padding: 14px 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 700px) { .nav-container { padding: 0 22px; } }

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-image {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s var(--ease), opacity .2s ease;
}
.navbar.scrolled .logo-image,
.navbar.menu-open .logo-image { filter: brightness(0); }
.logo:hover .logo-image { opacity: .78; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-links > a,
.nav-dropdown-trigger {
  position: relative;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  padding: 3px 0;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-links > a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent-bright);
  transition: width .28s var(--ease);
}
.nav-links > a:hover,
.nav-dropdown-trigger:hover { color: #fff; }
.nav-links > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after { width: 100%; }

.navbar.scrolled .nav-links > a,
.navbar.scrolled .nav-dropdown-trigger { color: var(--ink-soft); }
.navbar.scrolled .nav-links > a:hover,
.navbar.scrolled .nav-dropdown-trigger:hover { color: var(--ink); }

/* Get Involved ─────────────────────────────────────────── */

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-dropdown-trigger .chev {
  width: 9px; height: 9px;
  transition: transform .25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-trigger .chev,
.nav-dropdown-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 274px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: var(--card-hi);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s var(--ease), visibility .22s;
}
/* A hover bridge, so the pointer can cross the gap. */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 2px 12px;
  padding: 13px 14px;
  border-radius: 9px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: background .18s ease;
}
.dropdown-item:hover { background: #F6F6F4; }
.dropdown-item svg {
  grid-row: span 2;
  width: 20px; height: 20px;
  margin-top: 3px;
  justify-self: center;
  color: var(--accent);
}
.dropdown-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.dropdown-sub {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-mute);
}
.dropdown-item[aria-current="page"] .dropdown-title { color: var(--accent); }

/* The one filled button in the bar. Selector carries the
   parent so it outranks the generic `.nav-links > a` rule
   above — otherwise the pill loses its padding and collapses
   under its own label. */
.nav-links > a.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  transition: background .22s ease, transform .22s var(--ease), box-shadow .22s var(--ease);
}
.nav-links > a.nav-cta::after { display: none; }
.nav-links > a.nav-cta:hover {
  background: var(--accent-bright);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 90, 31, .32);
}
.navbar.scrolled .nav-links > a.nav-cta { color: #fff; }

.mobile-menu {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease, background .3s var(--ease);
}
.navbar.scrolled .mobile-menu span,
.navbar.menu-open .mobile-menu span { background: var(--ink); }
.mobile-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Drawer. Get Involved stops being a dropdown here and just
   lists its two pages inline — no second tap to find them. */
@media (max-width: 980px) {
  .mobile-menu { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--card);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > a,
  .navbar.scrolled .nav-links > a {
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
  }
  .nav-links > a::after { display: none; }

  .nav-dropdown { padding: 14px 0 4px; border-bottom: 1px solid var(--rule); }
  .nav-dropdown::after { display: none; }
  .nav-dropdown-trigger { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    background: none;
  }
  .dropdown-item { padding: 10px 0; }
  .dropdown-item:hover { background: none; }
  .dropdown-item svg { justify-self: start; }

  .nav-links > a.nav-cta {
    margin-top: 18px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    padding: 15px 22px;
    border-bottom: 0;
  }
}

/* ── Hero ─────────────────────────────────────────────── */

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
  padding: 140px 0 120px;
  text-align: center;
}

/* The inner pages take the same hero, sized to a header
   rather than a full screen. */
#hero.page-hero {
  min-height: 0;
  padding: 190px 0 110px;
}
@media (max-width: 860px) { #hero.page-hero { padding: 140px 0 80px; } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 700px) { .hero-content { padding: 0 22px; } }

.hero-content h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 28px;
}
.hero-content h1 .accent { color: var(--accent-bright); }
.page-hero .hero-content h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  max-width: 680px;
  margin: 0 auto;
  text-wrap: pretty;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s var(--ease), border-color .25s ease, color .25s ease;
}
.cta-primary {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}
.cta-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 90, 31, .3);
}
.cta-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
}
.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

/* On white ground the same two buttons invert. */
.cta-buttons--light .cta-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cta-buttons--light .cta-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(196, 57, 10, .26);
}
.cta-buttons--light .cta-secondary {
  color: var(--ink);
  border-color: var(--rule-strong);
}
.cta-buttons--light .cta-secondary:hover {
  background: #F6F6F4;
  border-color: var(--ink);
}

/* Fact strip — the one part of this page that is pure fact. */
.fact-strip {
  margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 560px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}
.fact-strip span { padding: 2px 18px; border-left: 1px solid rgba(255, 255, 255, .16); }
.fact-strip span:first-child { border-left: none; }
/* Stacked rather than wrapped, so no line ever opens on a
   separator with nothing to its left. */
@media (max-width: 560px) {
  .fact-strip { flex-direction: column; gap: 7px; }
  .fact-strip span { padding: 0; border-left: none; }
}

/* Drifting geometry behind the headline. */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 3px;
  animation: float 22s infinite linear;
}
.element-1 { width: 120px; height: 120px; top: 14%; left: 9%;  animation-delay: -2s; }
.element-2 { width: 78px;  height: 78px;  top: 68%; right: 13%; animation-delay: -5s; }
.element-3 { width: 210px; height: 5px;   top: 33%; right: 17%; animation-delay: -7s; border-color: rgba(255,90,31,.5); background: rgba(255,90,31,.16); }
.element-4 { width: 5px;   height: 200px; bottom: 16%; left: 22%; animation-delay: -11s; }
.element-5 { width: 96px;  height: 96px;  top: 46%; left: 13%;  animation-delay: -13s; border-radius: 50%; }
.element-6 { width: 150px; height: 150px; bottom: 26%; right: 8%; animation-delay: -17s; }

@keyframes float {
  0%   { transform: translate(0, 0) rotate(0deg)   scale(1);   opacity: .22; }
  25%  { transform: translate(20px, 20px) rotate(90deg) scale(1.08); opacity: .34; }
  50%  { transform: translate(0, 40px) rotate(180deg) scale(1);   opacity: .22; }
  75%  { transform: translate(-20px, 20px) rotate(270deg) scale(.92); opacity: .34; }
  100% { transform: translate(0, 0) rotate(360deg) scale(1);   opacity: .22; }
}

@media (max-width: 700px) {
  .element-1, .element-6 { width: 84px; height: 84px; }
  .element-3 { width: 130px; }
  .element-4 { height: 130px; }
  .cta-primary, .cta-secondary { min-width: 0; width: 100%; }
}

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s ease;
}
.scroll-indicator:hover { color: rgba(255, 255, 255, .85); }
.scroll-indicator .mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 6px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .8);
  animation: scroll-hint 2s infinite;
}
@keyframes scroll-hint {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  70%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}
@media (max-height: 700px), (max-width: 700px) { .scroll-indicator { display: none; } }

/* ── Vision / two-column prose ────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

.about-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 26px;
}
.lead {
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  text-wrap: pretty;
}
.about-body p + p { margin-top: 1.05em; }

.founder-quote {
  margin-top: 34px;
  padding-left: 26px;
  border-left: 3px solid var(--accent);
}
.founder-quote blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
}
.founder-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Areas of impact ──────────────────────────────────────
   Broad values, not a product index: centered cards, one
   coloured mark each, and deliberately nothing underneath
   pointing at a venture.
   ──────────────────────────────────────────────────────── */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.focus-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1040px) { .focus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .focus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.focus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--paper);
  border-radius: 15px;
  padding: 44px 30px 40px;
  box-shadow: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hi);
}

.focus-card[data-area="health"]   { --tone: var(--health-bright); }
.focus-card[data-area="agency"]   { --tone: var(--agency-bright); }
.focus-card[data-area="society"]  { --tone: var(--society-bright); }
.focus-card[data-area="horizons"] { --tone: var(--horizons-bright); }

.focus-icon {
  width: 48px; height: 48px;
  margin-bottom: 22px;
  color: var(--tone, var(--ink));
}
.focus-icon svg { width: 100%; height: 100%; display: block; }

.focus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.focus-card p {
  font-size: .99rem;
  line-height: 1.65;
  color: var(--ink-mute);
  text-wrap: pretty;
}

/* The founders page reuses the card with a detail list. */
.focus-details {
  list-style: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── Ventures ─────────────────────────────────────────── */

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 940px) { .ventures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .ventures-grid { grid-template-columns: 1fr; } }

.venture-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hi);
}

.venture-card[data-area="health"]   { --tone: var(--health); }
.venture-card[data-area="agency"]   { --tone: var(--agency); }
.venture-card[data-area="society"]  { --tone: var(--society); }
.venture-card[data-area="horizons"] { --tone: var(--horizons); }

.venture-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.venture-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.venture-card:hover .venture-image img { transform: scale(1.03); }

/* Product shots sit on ink and bleed off the bottom edge,
   the way a device shot wants to be framed. */
.venture-image--shots {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 34px 28px 0;
  background: var(--ink);
  border-bottom: none;
}
.venture-image--shots img {
  width: 40%;
  max-width: 190px;
  height: auto;
  object-fit: contain;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-bottom: none;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .5);
}
.venture-image--shots img:nth-child(2) { margin-bottom: -22px; }
.venture-card:hover .venture-image--shots img { transform: none; }

.venture-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 30px 32px;
}

.venture-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.venture-head .app-icon {
  width: 48px; height: 48px;
  border-radius: 22.5%;
  border: 1px solid var(--rule);
  flex: none;
}

.venture-category {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tone, var(--ink-mute));
  margin-bottom: 14px;
}

.venture-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.venture-head .venture-title { margin-bottom: 0; }

.venture-description {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--ink-mute);
}
.venture-description + .venture-description { margin-top: .9em; }

.venture-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.venture-card > .venture-body > .venture-foot { margin-top: auto; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-mute);
}
.tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tone, var(--ink-mute));
  flex: none;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .3s var(--ease);
}
.link:hover, .link:focus-visible { background-size: 100% 1px; }
.link .arw { display: inline-block; transition: transform .3s var(--ease); }
.link:hover .arw { transform: translateX(4px); }

/* The lead venture takes the full row and splits inside it. */
.venture-card--lead { grid-column: 1 / -1; }
.venture-card--lead .venture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.venture-card--lead .venture-image { aspect-ratio: auto; height: 100%; min-height: 340px; }
.venture-card--lead .venture-body { padding: 46px 46px 44px; justify-content: center; }
.venture-card--lead .venture-title { font-size: 2.05rem; }
.venture-card--lead .venture-description { font-size: 1.03rem; }
.venture-card--lead .venture-head .app-icon { width: 58px; height: 58px; }

@media (max-width: 860px) {
  .venture-card--lead .venture-inner { grid-template-columns: 1fr; }
  .venture-card--lead .venture-image { min-height: 260px; }
  .venture-card--lead .venture-body { padding: 30px 30px 32px; }
  .venture-card--lead .venture-title { font-size: 1.7rem; }
}

/* ── Insights ─────────────────────────────────────────────
   Hand-written today, CMS-fed later: the markup is a plain
   list of articles so a template can render straight into it.
   ──────────────────────────────────────────────────────── */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 940px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .insights-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hi);
}

.insight-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #FAFAF9;
}
.insight-image img { width: 100%; height: 100%; object-fit: cover; }

/* Where an article has no image yet. */
.placeholder-wrapper {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px dashed var(--rule-strong);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A9A9AE;
}
.placeholder-wrapper svg { width: 20px; height: 20px; opacity: .5; }

.insight-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 28px 28px;
}
.insight-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.insight-category {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #FDF0EA;
  padding: 5px 11px;
  border-radius: 999px;
}
.insight-date {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.insight-card h3 {
  font-size: 1.22rem;
  line-height: 1.3;
  margin-bottom: 12px;
  text-wrap: pretty;
}
.insight-card p {
  font-size: .96rem;
  line-height: 1.68;
  color: var(--ink-mute);
}
.insight-card .read-more { margin-top: auto; padding-top: 22px; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
.read-more .arw { transition: transform .3s var(--ease); }
.read-more:hover .arw { transform: translateX(4px); }

/* ── Two-up notes (founder + funding) ─────────────────── */

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 30px;
}
@media (max-width: 860px) { .notes-grid { grid-template-columns: 1fr; } }

.note-card {
  background: var(--paper);
  border-radius: 15px;
  padding: 38px 34px 34px;
  box-shadow: var(--card);
}
.note-card h3 { font-size: 1.24rem; margin-bottom: 16px; }
.note-card p { font-size: .98rem; line-height: 1.72; color: var(--ink-mute); }
.note-card p + p { margin-top: 1em; }
.note-card .link { margin-top: 22px; }
.note-card a:not(.link) {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transition: color .18s ease, text-decoration-color .18s ease;
}
.note-card a:not(.link):hover { color: var(--accent); text-decoration-color: var(--accent); }

/* Headshot at the size a byline wants, not a hero. */
.note-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.note-head h3 { margin-bottom: 0; }
.note-portrait {
  width: 62px; height: 62px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
  border: 1px solid var(--rule);
}

/* ── Founder call-out ─────────────────────────────────── */

.founder-callout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 54px 56px;
  border-radius: 20px;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--card);
}
@media (max-width: 860px) {
  .founder-callout { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; text-align: center; }
  .founder-callout .cta-buttons { justify-content: center; margin-top: 0; }
}
.founder-callout h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
  text-wrap: balance;
}
.founder-callout p { color: var(--ink-mute); max-width: 54ch; }
.founder-callout .cta-buttons { margin-top: 0; flex-wrap: nowrap; }
@media (max-width: 620px) { .founder-callout .cta-buttons { flex-wrap: wrap; } }

/* ── Numbered process ─────────────────────────────────── */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  counter-increment: step;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 10px; }
.steps p { font-size: .95rem; line-height: 1.65; color: var(--ink-mute); }

/* ── Closing call to action ───────────────────────────── */

.cta-section {
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) { .cta-section { padding: 76px 0; } }

.mission-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  margin-bottom: 20px;
  text-wrap: balance;
}
.mission-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  max-width: 620px;
  margin: 0 auto 44px;
  text-wrap: pretty;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  background-image: linear-gradient(var(--accent-bright), var(--accent-bright));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 2px;
  transition: background-size .3s var(--ease), color .2s ease;
}
.contact-email:hover { color: var(--accent-bright); background-size: 100% 3px; }

.mission-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 44px;
}
.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color .2s ease, transform .25s var(--ease);
}
.mission-link svg { width: 15px; height: 15px; opacity: .7; }
.mission-link:hover { color: var(--accent-bright); transform: translateY(-2px); }
.mission-link:hover svg { opacity: 1; }

/* ── Footer ───────────────────────────────────────────── */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  padding: 76px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 860px) { .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-content { grid-template-columns: 1fr; gap: 32px; } }

.footer-section h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 18px;
}
.footer-section a {
  display: block;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: .95rem;
  margin-bottom: 11px;
  transition: color .2s ease;
}
.footer-section a:hover { color: var(--accent-bright); }

.footer-section.brand .logo-image { filter: brightness(0) invert(1); width: 132px; }
.footer-section.brand .tagline {
  margin: 20px 0 0;
  font-size: .98rem;
  font-style: italic;
  color: rgba(255, 255, 255, .6);
  max-width: 34ch;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .45);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: rgba(255, 255, 255, .8); }
.footer-legal { display: flex; gap: 20px; }

/* ── Reveal on scroll ─────────────────────────────────────
   Nothing is hidden until JS has claimed it, so the page is
   fully readable with scripts off or broken.
   ──────────────────────────────────────────────────────── */

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-content > * { animation: rise .85s var(--ease) both; }
.hero-content > :nth-child(2) { animation-delay: 90ms; }
.hero-content > :nth-child(3) { animation-delay: 180ms; }
.hero-content > :nth-child(4) { animation-delay: 270ms; }

.js .reveal { opacity: 0; transform: translateY(18px); }
.js .is-in .reveal {
  opacity: 1;
  transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js .is-in .reveal:nth-child(2) { transition-delay: 70ms; }
.js .is-in .reveal:nth-child(3) { transition-delay: 140ms; }
.js .is-in .reveal:nth-child(4) { transition-delay: 210ms; }
.js .is-in .reveal:nth-child(5) { transition-delay: 280ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content > * { animation: none; }
  .floating-element { animation: none; }
  .scroll-indicator .mouse::before { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .venture-card:hover,
  .focus-card:hover,
  .insight-card:hover,
  .cta-primary:hover,
  .cta-secondary:hover,
  .nav-cta:hover,
  .mission-link:hover { transform: none; }
  * { scroll-behavior: auto; }
}

/* ── Accessibility ────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 2000;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  border: 1px solid var(--rule-strong);
}
.skip:focus { left: 32px; }

.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;
}
