/* ============================================================
   Derrick Schmenk — Personal brand site
   Design language: dark / engineered. Charcoal void base,
   logo-red as the single accent, hexagon + data-pixel motif.
   Type: Archivo (display) · IBM Plex Sans (body) · IBM Plex Mono (data)
   ============================================================ */

:root {
  /* Surfaces */
  --void:        #0a0c10;
  --void-2:      #0c0f14;
  --carbon:      #13171d;
  --carbon-2:    #181d25;
  --steel:       #262d38;
  --steel-2:     #38424f;

  /* Accent (from the logo) */
  --ember:       #dc1416;
  --ember-2:     #c7050e;
  --ember-deep:  #900101;
  --ember-glow:  rgba(220, 20, 22, 0.45);

  /* Cool ambient (echoes the hero video; never a UI accent) */
  --signal:      #6fd6e6;

  /* Text */
  --ice:         #eef2f7;
  --mist:        #9aa6b4;
  --mist-dim:    #66717e;

  /* Type */
  --f-display: "Archivo", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --nav-h: 68px;
  --r: 4px; /* tight, engineered corner radius */

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Flat-sided hexagon — the logo's core motif, reused as a mask */
  --hex-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='25,4 75,4 100,50 75,96 25,96 0,50'/%3E%3C/svg%3E");
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--void);
  color: var(--ice);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ice);
}

::selection { background: var(--ember); color: #fff; }

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

.skip-link {
  position: absolute; left: 0; top: -100%;
  background: var(--ember); color: #fff;
  padding: 0.6rem 1rem; font-family: var(--f-mono); font-size: 0.8rem;
  z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Shared structural bits ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 7vw, 5rem); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 12px;
  background: var(--ember);
  -webkit-mask: var(--hex-mask) center / contain no-repeat;
          mask: var(--hex-mask) center / contain no-repeat;
  flex: none;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  max-width: 18ch;
}
.section-lede {
  color: var(--mist);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 56ch;
  margin-top: 1.25rem;
}

/* Hairline label used across cards */
.label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.4rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 0 0 0 var(--ember-glow);
}
.btn--primary:hover {
  background: var(--ember-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px var(--ember-glow);
}
.btn--ghost {
  border-color: var(--steel-2);
  color: var(--ice);
  background: rgba(255,255,255,0.015);
}
.btn--ghost:hover { border-color: var(--ember); color: #fff; transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--steel);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 30px; width: auto; }
.brand-name {
  font-family: var(--f-display); font-weight: 800; font-size: 1rem;
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--ember); }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--mist); padding: 0.5rem 0.8rem; border-radius: var(--r);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ice); }
.nav-links .btn { padding: 0.6rem 1.1rem; }
.nav-links .nav-link { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ice); transition: 0.3s; }

@media (min-width: 880px) {
  .nav-links .nav-link { display: inline-block; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(10,12,16,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--steel);
  display: grid; gap: 0.25rem; padding: 1rem var(--pad) 1.6rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: 0.28s var(--ease);
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--f-mono); font-size: 0.95rem; color: var(--mist);
  padding: 0.75rem 0.25rem; border-bottom: 1px solid var(--steel);
}
.mobile-menu a:last-child { border-bottom: 0; color: var(--ember); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video, .hero__bg img.poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 75% 30%, rgba(220,20,22,0.10), transparent 55%),
    linear-gradient(180deg, rgba(10,12,16,0.62) 0%, rgba(10,12,16,0.78) 55%, var(--void) 100%),
    linear-gradient(90deg, var(--void) 2%, rgba(10,12,16,0.35) 45%, transparent 75%);
}
/* faint engineering grid over the video */
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(150,170,200,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,170,200,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 80%);
          mask: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 80%);
}

.hero .container {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.25fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; width: 100%;
}

.hero__eyebrow {
  font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mist);
  border-left: 2px solid var(--ember); padding-left: 0.85rem;
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: clamp(3.1rem, 9vw, 6.6rem);
  font-weight: 900; letter-spacing: -0.035em; line-height: 0.92;
  text-transform: uppercase;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero__sub {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem); line-height: 1.18;
  letter-spacing: -0.01em; color: var(--ice);
  margin: 1.5rem 0 0; max-width: 24ch;
}
.hero__sub b { color: var(--ember); font-weight: 800; }
.hero__lede { color: var(--mist); max-width: 48ch; margin-top: 1.25rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem;
  margin-top: 2.6rem; padding-top: 1.6rem;
  border-top: 1px solid var(--steel);
}
.stat__num {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.65rem; line-height: 1; letter-spacing: -0.02em;
}
.stat__num .u { color: var(--ember); }
.stat__lbl { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mist-dim); margin-top: 0.4rem; }

/* Headshot panel */
.hero__portrait { position: relative; justify-self: end; width: 100%; max-width: 420px; }
.portrait-frame {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  background: linear-gradient(160deg, var(--ember) 0%, var(--ember-deep) 45%, var(--steel) 100%);
  padding: 2px;
}
.portrait-frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 18%;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
  display: block;
}
.portrait-tag {
  position: absolute; left: -10px; bottom: 22px;
  background: var(--carbon); border: 1px solid var(--steel);
  border-left: 3px solid var(--ember);
  padding: 0.55rem 0.85rem; font-family: var(--f-mono);
  box-shadow: 0 14px 40px -16px #000;
}
.portrait-tag .t1 { font-size: 0.78rem; color: var(--ice); letter-spacing: 0.02em; }
.portrait-tag .t2 { font-size: 0.62rem; color: var(--mist-dim); letter-spacing: 0.12em; margin-top: 2px; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 3; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--mist-dim);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(var(--ember), transparent);
  animation: scrollpulse 1.9s var(--ease) infinite;
}
@keyframes scrollpulse { 0%{transform:scaleY(0);transform-origin:top;opacity:0} 40%{opacity:1} 100%{transform:scaleY(1);transform-origin:top;opacity:0} }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__portrait { order: -1; justify-self: start; max-width: 280px; }
  .hero { padding-block: calc(var(--nav-h) + 2rem) 4rem; min-height: auto; }
  .scroll-hint { display: none; }
}

/* ============================================================
   FOUR WORLDS — the signature spectrum
   ============================================================ */
.worlds { background: linear-gradient(180deg, var(--void), var(--void-2)); }
.worlds__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }

.spectrum { position: relative; }
.spectrum__track {
  position: absolute; top: 19px; left: 0; right: 0; height: 2px;
  background: var(--steel);
}
.spectrum__track::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ember-deep), var(--ember), var(--signal));
  transform: scaleX(var(--draw, 0)); transform-origin: left;
  transition: transform 1.4s var(--ease);
}
.spectrum__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem);
  position: relative;
}
.world { position: relative; }
.world__node {
  width: 40px; height: 40px; position: relative; margin-bottom: 1.5rem;
}
.world__node::before {
  content: ""; position: absolute; inset: 0;
  background: var(--carbon); border: 2px solid var(--steel-2);
  -webkit-mask: var(--hex-mask) center / contain no-repeat;
          mask: var(--hex-mask) center / contain no-repeat;
  -webkit-mask-clip: padding-box;
}
.world__node b {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 600; color: var(--mist);
  z-index: 1;
}
.world.is-on .world__node::before { border-color: var(--ember); background: rgba(220,20,22,0.12); box-shadow: 0 0 22px -2px var(--ember-glow); }
.world.is-on .world__node b { color: var(--ember); }
.world__name {
  font-family: var(--f-display); font-weight: 800; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 0.6rem;
}
.world__desc { color: var(--mist); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 760px) {
  .spectrum__track { top: 0; bottom: 0; left: 19px; right: auto; width: 2px; height: auto; }
  .spectrum__track::after { background: linear-gradient(180deg, var(--ember-deep), var(--ember), var(--signal)); transform: scaleY(var(--draw,0)); transform-origin: top; }
  .spectrum__grid { grid-template-columns: 1fr; gap: 2.2rem; padding-left: 0; }
  .world { padding-left: 64px; }
  .world__node { position: absolute; left: 0; top: 0; margin: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 1.4fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about__body p { color: var(--mist); margin: 0 0 1.15rem; }
.about__body p strong { color: var(--ice); font-weight: 600; }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.9rem; margin-top: 2rem; }
.value {
  background: var(--carbon); border: 1px solid var(--steel); border-radius: var(--r);
  padding: 1.1rem; transition: border-color 0.25s, transform 0.25s var(--ease);
}
.value:hover { border-color: var(--ember); transform: translateY(-3px); }
.value h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.4rem; }
.value h4 span { color: var(--ember); }
.value p { font-size: 0.84rem; color: var(--mist); margin: 0; line-height: 1.55; }

.about__aside { position: relative; }
.about__photo {
  position: relative; clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  border: 1px solid var(--steel);
}
.about__photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: 50% 22%; }
.about__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,12,16,0.55));
}
.factsheet { margin-top: 1.4rem; display: grid; gap: 0; border: 1px solid var(--steel); border-radius: var(--r); overflow: hidden; }
.fact { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 0.85rem 1rem; border-bottom: 1px solid var(--steel); background: var(--carbon); }
.fact:last-child { border-bottom: 0; }
.fact dt { font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist-dim); align-self: center; }
.fact dd { margin: 0; font-size: 0.86rem; color: var(--ice); }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__aside { max-width: 360px; }
  .values { grid-template-columns: 1fr; }
}

/* ============================================================
   IMPACT — metric cards
   ============================================================ */
.impact { background: linear-gradient(180deg, var(--void-2), var(--void)); }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: clamp(2.5rem,6vw,3.5rem); }
.metric {
  position: relative; background: var(--carbon); border: 1px solid var(--steel);
  border-radius: var(--r); padding: 1.8rem 1.6rem 1.6rem;
  overflow: hidden; transition: border-color 0.3s, transform 0.3s var(--ease);
}
.metric::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--ember); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease);
}
.metric:hover { transform: translateY(-4px); border-color: var(--steel-2); }
.metric:hover::before { transform: scaleY(1); }
.metric__num {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--ice);
}
.metric__num .u { color: var(--ember); font-size: 0.55em; }
.metric__cap { color: var(--mist); font-size: 0.92rem; line-height: 1.55; margin-top: 0.9rem; }
.metric__tag { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist-dim); margin-top: 0.9rem; }

@media (max-width: 820px) { .metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .metrics { grid-template-columns: 1fr; } }

/* ============================================================
   EXPERIENCE — timeline
   ============================================================ */
.timeline { margin-top: clamp(2.5rem,6vw,3.5rem); position: relative; }
.tl {
  position: relative; display: grid; grid-template-columns: 168px 1fr; gap: clamp(1rem,3vw,2.5rem);
  padding: 1.8rem 0 2rem 0; border-top: 1px solid var(--steel);
}
.tl:last-child { border-bottom: 1px solid var(--steel); }
.tl__when { font-family: var(--f-mono); font-size: 0.78rem; color: var(--ember); letter-spacing: 0.02em; padding-top: 0.2rem; }
.tl__when .span { display: block; color: var(--mist-dim); font-size: 0.68rem; margin-top: 0.2rem; }
.tl__role { font-family: var(--f-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.tl__org { font-family: var(--f-mono); font-size: 0.78rem; color: var(--mist); margin: 0.3rem 0 0.7rem; letter-spacing: 0.02em; }
.tl__org .dot { color: var(--ember); }
.tl__desc { color: var(--mist); font-size: 0.95rem; max-width: 64ch; }
.tl:hover .tl__role { color: #fff; }

@media (max-width: 640px) {
  .tl { grid-template-columns: 1fr; gap: 0.5rem; }
  .tl__when { padding-top: 0; }
}

/* ============================================================
   EXPERTISE — capability clusters
   ============================================================ */
.caps { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: clamp(2.5rem,6vw,3.5rem); }
.cap { background: var(--carbon); border: 1px solid var(--steel); border-radius: var(--r); padding: 1.4rem 1.5rem; transition: border-color 0.25s; }
.cap:hover { border-color: var(--steel-2); }
.cap h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.cap h4::before { content:""; width:14px; height:8px; background: var(--ember); -webkit-mask: var(--hex-mask) center/contain no-repeat; mask: var(--hex-mask) center/contain no-repeat; }
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-family: var(--f-mono); font-size: 0.72rem; color: var(--mist);
  background: var(--carbon-2); border: 1px solid var(--steel);
  padding: 0.3rem 0.6rem; border-radius: 2px; letter-spacing: 0.01em;
  transition: color 0.2s, border-color 0.2s;
}
.chip:hover { color: var(--ice); border-color: var(--ember); }
@media (max-width: 720px) { .caps { grid-template-columns: 1fr; } }

/* ============================================================
   VENTURES
   ============================================================ */
.ventures { background: linear-gradient(180deg, var(--void), var(--void-2)); }
.vgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: clamp(2.5rem,6vw,3.5rem); }
.venture {
  position: relative; display: flex; flex-direction: column;
  background: var(--carbon); border: 1px solid var(--steel); border-radius: var(--r);
  padding: 1.8rem 1.6rem; min-height: 320px;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.venture:hover { transform: translateY(-5px); border-color: var(--steel-2); box-shadow: 0 24px 60px -30px #000; }
.venture__status {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.55rem; border-radius: 2px; border: 1px solid var(--steel-2); color: var(--mist);
}
.venture__status.active { color: #6ee7a8; border-color: rgba(110,231,168,0.4); }
.venture__status.active::before { content:""; display:inline-block; width:6px;height:6px;border-radius:50%;background:#6ee7a8;margin-right:6px;vertical-align:middle; box-shadow:0 0 8px #6ee7a8; }
.venture__status.dev { color: var(--signal); border-color: rgba(111,214,230,0.35); }
.venture__status.stealth { color: var(--ember); border-color: rgba(220,20,22,0.4); }

.venture__logo { height: 46px; margin-bottom: 1.4rem; display: flex; align-items: center; }
.venture__logo img { height: 100%; width: auto; }
.venture__logo .mono-mark {
  font-family: var(--f-display); font-weight: 900; font-size: 1.5rem; letter-spacing: -0.02em;
  color: var(--ice);
}
.venture__logo .mono-mark.lock { color: var(--mist-dim); }
.venture h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.venture p { color: var(--mist); font-size: 0.92rem; flex: 1; }
.venture__foot { font-family: var(--f-mono); font-size: 0.72rem; color: var(--mist-dim); margin-top: 1.3rem; display: flex; align-items: center; gap: 0.5rem; }
.venture__foot a { color: var(--ember); transition: opacity 0.2s; }
.venture__foot a:hover { opacity: 0.8; }

/* stealth redacted treatment */
.venture--stealth p .redact { background: var(--steel-2); color: transparent; border-radius: 2px; padding: 0 0.2rem; user-select: none; }
.venture--stealth .venture__logo .mono-mark { letter-spacing: 0.05em; }

@media (max-width: 900px) { .vgrid { grid-template-columns: 1fr; } .venture { min-height: 0; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; overflow: hidden; text-align: center; }
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(220,20,22,0.14), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(150,170,200,0.04) 63px 64px),
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(150,170,200,0.04) 63px 64px);
  -webkit-mask: radial-gradient(80% 100% at 50% 30%, #000, transparent 80%); mask: radial-gradient(80% 100% at 50% 30%, #000, transparent 80%);
}
.contact .container { position: relative; z-index: 1; }
.contact h2 { font-size: clamp(2.2rem, 6vw, 4rem); margin-inline: auto; max-width: 16ch; }
.contact p { color: var(--mist); max-width: 52ch; margin: 1.4rem auto 0; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--steel); padding-block: 2.5rem; }
.footer .container { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between; }
.footer .brand img { height: 26px; }
.footer__meta { font-family: var(--f-mono); font-size: 0.7rem; color: var(--mist-dim); letter-spacing: 0.04em; line-height: 1.7; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.3rem 1.1rem; }
.footer__nav a { font-family: var(--f-mono); font-size: 0.72rem; color: var(--mist); transition: color 0.2s; }
.footer__nav a:hover { color: var(--ember); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .spectrum__track::after { transition: none; }
  .scroll-hint::after { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   IN THE PRESS
   ============================================================ */
.press-sec { background: linear-gradient(180deg, var(--void-2), var(--void)); }
.pressgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: clamp(2.5rem,6vw,3.5rem); }
.press {
  position: relative; display: flex; flex-direction: column;
  background: var(--carbon); border: 1px solid var(--steel); border-radius: var(--r);
  padding: 1.6rem 1.6rem 1.5rem; transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.press:hover { transform: translateY(-4px); border-color: var(--steel-2); box-shadow: 0 24px 60px -34px #000; }
.press__meta { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; flex-wrap: wrap; }
.press__pub { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--ice); }
.press__type {
  font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ember); border: 1px solid rgba(220,20,22,0.4); border-radius: 2px; padding: 0.15rem 0.45rem;
}
.press__title { font-size: 1.18rem; line-height: 1.15; margin-bottom: 0.7rem; }
.press__desc { color: var(--mist); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.press__link {
  font-family: var(--f-mono); font-size: 0.76rem; color: var(--ember); margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.4rem; align-self: flex-start;
  transition: gap 0.2s;
}
.press__link:hover { gap: 0.7rem; }

.press__partners {
  margin-top: 1.6rem; padding: 1.3rem 1.6rem; background: var(--carbon);
  border: 1px solid var(--steel); border-left: 3px solid var(--ember); border-radius: var(--r);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.4rem; justify-content: space-between;
}
.press__partners .pp-text { color: var(--mist); font-size: 0.9rem; }
.press__partners .pp-names { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.01em; color: var(--ice); font-size: 1.05rem; }
.press__partners a { font-family: var(--f-mono); font-size: 0.74rem; color: var(--ember); white-space: nowrap; }
.press__partners a:hover { opacity: 0.82; }

@media (max-width: 760px) { .pressgrid { grid-template-columns: 1fr; } }
