:root {
  --bg: #050607;
  --bg-soft: #0a0c0f;
  --panel: #0d1014;
  --panel-hover: #11161c;
  --line: #20262e;
  --line-strong: #303945;
  --text: #f5f7f9;
  --muted: #a4acb6;
  --faint: #75808b;
  --blue: #4ca8ff;
  --blue-deep: #146dcc;
  --green: #64d7a2;
  --yellow: #e7c86e;
  --purple: #b7a1ff;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 8%, rgba(32, 112, 207, .12), transparent 28rem),
    radial-gradient(circle at 8% 56%, rgba(36, 158, 117, .055), transparent 30rem),
    var(--bg);
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.wrap { width: min(calc(100% - 64px), 1220px); margin-inline: auto; }
.narrow { width: min(calc(100% - 64px), 900px); margin-inline: auto; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-160%);
  padding: 10px 14px; border-radius: 8px; background: #fff; color: #000; text-decoration: none;
}
.skip-link:focus { transform: none; }

/* Navigation */
.nav-scroll-sentinel {
  position: absolute; top: 24px; left: 0; width: 1px; height: 1px; pointer-events: none;
}
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 50; transition: background .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled, .site-nav.solid {
  border-color: rgba(255,255,255,.08); background: rgba(5,6,7,.9); backdrop-filter: blur(18px);
}
.nav-inner { min-height: 78px; display: flex; align-items: center; gap: 30px; }
.logo {
  flex: none; color: #fff; font-size: 20px; font-weight: 800; letter-spacing: .085em;
  text-decoration: none;
}
.logo-mark { color: var(--blue); }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 8px; list-style: none; }
.desktop-nav a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 13px; border-radius: 10px;
  color: #aeb6c0; font-size: 14px; text-decoration: none; transition: color .2s, background .2s;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.055); }
.desktop-nav .nav-mail {
  gap: 8px; min-height: 36px; padding: 0 13px; border: 1px solid rgba(117,162,255,.28);
  border-radius: 999px; color: #e9f0ff; background: linear-gradient(135deg, rgba(50,94,191,.18), rgba(122,78,196,.12));
}
.desktop-nav .nav-mail::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #75a2ff;
  box-shadow: 0 0 0 4px rgba(117,162,255,.12), 0 0 18px rgba(117,162,255,.55);
}
.desktop-nav .nav-mail:hover {
  border-color: rgba(117,162,255,.55); background: linear-gradient(135deg, rgba(50,94,191,.3), rgba(122,78,196,.2));
}
.desktop-nav .nav-divider { width: 1px; height: 24px; margin: 0 4px; background: var(--line); }
.nav-cta {
  flex: none; display: inline-flex; align-items: center; justify-content: center; min-height: 42px;
  padding: 0 18px; border-radius: 11px; background: #fff; color: #060708; font-size: 14px;
  font-weight: 700; text-decoration: none; transition: transform .2s, background .2s;
}
.nav-cta:hover { transform: translateY(-1px); background: #e7edf3; }
.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line);
  border-radius: 11px; background: var(--panel); color: #fff; cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor;
  transition: transform .2s, opacity .2s;
}
.site-nav.menu-open .menu-toggle span { opacity: 0; }
.site-nav.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.site-nav.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

/* Type and actions */
.eyebrow {
  color: var(--blue); font: 500 11px/1.5 var(--mono); letter-spacing: .2em; text-transform: uppercase;
}
.display {
  margin-top: 22px; color: #fff; font-size: clamp(44px, 6vw, 78px); font-weight: 400;
  letter-spacing: -.055em; line-height: 1.01;
}
.display strong { font-weight: 650; }
.lede { margin-top: 26px; max-width: 62ch; color: #b5bdc7; font-size: clamp(17px, 1.8vw, 20px); font-weight: 350; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px;
  padding: 0 23px; border: 1px solid var(--line-strong); border-radius: 12px; color: #f1f4f7;
  font-size: 14px; font-weight: 650; text-decoration: none; transition: transform .22s, border-color .22s, background .22s;
}
.button:hover { transform: translateY(-2px); border-color: var(--blue); }
.button.primary { border-color: #fff; background: #fff; color: #050607; }
.button.primary:hover { border-color: #e4ebf2; background: #e4ebf2; }
.button.text { min-height: 0; padding: 0; border: 0; border-radius: 0; color: var(--blue); }
.text-link { color: var(--blue); font-size: 14px; font-weight: 650; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Home hero */
.home-hero { position: relative; min-height: 820px; min-height: 100svh; padding: 150px 0 98px; display: flex; align-items: center; overflow: hidden; }
.home-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .2; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 48% 55% at 74% 47%, #000, transparent 75%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr); gap: 48px; align-items: center; }
.home-hero .display { max-width: 18ch; font-size: clamp(42px, 4.7vw, 68px); }
.home-hero .display strong { display: block; margin-top: .12em; }
.home-hero .lede { max-width: 57ch; }
.system-map { position: relative; min-height: 500px; }
.map-orbit { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(76,168,255,.18); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 390px; height: 390px; animation: orbit-spin 28s linear infinite; }
.orbit-two { width: 270px; height: 270px; border-style: dashed; animation: orbit-spin 22s linear infinite reverse; }
.map-core {
  position: absolute; left: 50%; top: 50%; width: 130px; height: 130px; transform: translate(-50%, -50%);
  display: grid; place-items: center; border: 1px solid rgba(76,168,255,.45); border-radius: 34px;
  background: radial-gradient(circle at 35% 30%, rgba(76,168,255,.3), transparent 62%), #0b1118;
  box-shadow: 0 0 80px rgba(20,109,204,.2); color: #fff; font: 500 12px/1.4 var(--mono); letter-spacing: .12em;
}
.map-node {
  position: absolute; z-index: 2; width: 130px; min-height: 64px; padding: 13px 15px; border: 1px solid var(--line-strong);
  border-radius: 13px; background: rgba(12,15,19,.92); color: #dce2e8; font-size: 12px; backdrop-filter: blur(10px);
  animation: node-float 5s ease-in-out infinite;
}
.map-node small { display: block; margin-bottom: 3px; color: var(--faint); font: 400 9px/1.4 var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.node-a { left: 2%; top: 13%; }
.node-b { right: 0; top: 17%; animation-delay: -.7s; }
.node-c { right: 3%; bottom: 12%; animation-delay: -1.9s; }
.node-d { left: 0; bottom: 16%; animation-delay: -2.8s; }
.node-e { left: 43%; top: 2%; animation-delay: -3.6s; }
.node-dot { width: 7px; height: 7px; margin-right: 7px; display: inline-block; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes node-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.proof-bar { border-block: 1px solid var(--line); background: rgba(10,12,15,.78); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 118px; padding: 24px 25px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: #fff; font-size: 14px; }
.proof-item span { margin-top: 4px; color: var(--faint); font: 400 11px/1.5 var(--mono); }

/* Sections and cards */
.section { padding: clamp(80px, 9vw, 124px) 0; }
.section.tinted { border-block: 1px solid var(--line); background: rgba(10,12,15,.72); }
.section-head { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); gap: 72px; align-items: end; margin-bottom: 48px; }
.section-head h2 { margin-top: 14px; max-width: 16ch; color: #fff; font-size: clamp(32px, 4.3vw, 53px); font-weight: 400; letter-spacing: -.045em; line-height: 1.06; }
.section-head p { max-width: 60ch; color: var(--muted); font-size: 16px; }
.section-intro { max-width: 70ch; margin-bottom: 46px; color: var(--muted); font-size: 16px; }
.section-head.spaced { margin-top: 72px; }
.display.medium { max-width: 18ch; font-size: clamp(34px, 5vw, 58px); }
.story-copy.spaced { margin-top: 34px; }
.company-idea .story-copy { max-width: 900px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative; overflow: hidden; min-height: 265px; padding: 29px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--panel); transition: transform .25s, border-color .25s, background .25s;
}
.card::after { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: radial-gradient(circle at 100% 0, rgba(76,168,255,.13), transparent 45%); transition: opacity .25s; }
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--panel-hover); }
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card-number { display: block; margin-bottom: 35px; color: var(--blue); font: 500 10px/1.4 var(--mono); letter-spacing: .13em; }
.card h3 { color: #fff; font-size: 21px; line-height: 1.2; }
.card p { margin-top: 12px; color: var(--muted); font-size: 14px; }
.card ul { display: grid; gap: 8px; margin-top: 18px; list-style: none; }
.card li { position: relative; padding-left: 16px; color: #aeb6bf; font-size: 13px; }
.card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.card-link { display: inline-flex; margin-top: 24px; color: var(--blue); font-size: 13px; font-weight: 650; text-decoration: none; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { padding: 5px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: #919aa5; font: 400 10px/1.4 var(--mono); }
.status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); font: 500 9px/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status.proven { color: var(--green); border-color: rgba(100,215,162,.28); }
.status.measured { color: var(--blue); border-color: rgba(76,168,255,.3); }
.status.partial { color: var(--yellow); border-color: rgba(231,200,110,.3); }
.status.research { color: var(--purple); border-color: rgba(183,161,255,.3); }
.status.retired { color: #9299a2; }
.card > .status, .work-item .status, .license-panel > .status { margin-bottom: 16px; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.problem { padding-top: 23px; border-top: 1px solid var(--line-strong); }
.problem .index { color: var(--blue); font: 500 10px/1.4 var(--mono); }
.problem h3 { margin-top: 22px; color: #fff; font-size: 22px; }
.problem p { margin-top: 10px; color: var(--muted); font-size: 14px; }

.process-flow { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-step { position: relative; min-height: 245px; padding: 27px 24px; border-right: 1px solid var(--line); background: var(--panel); }
.process-step:last-child { border-right: 0; }
.process-step::after { content: "→"; position: absolute; top: 22px; right: -10px; z-index: 3; color: var(--blue); font-family: var(--mono); }
.process-step:last-child::after { display: none; }
.process-step span { color: var(--blue); font: 500 10px/1.4 var(--mono); }
.process-step h3 { margin-top: 54px; color: #fff; font-size: 18px; }
.process-step p { margin-top: 9px; color: var(--muted); font-size: 13px; }
.process-step small { display: block; margin-top: 21px; color: var(--faint); font: 400 9px/1.5 var(--mono); letter-spacing: .06em; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-panel { min-height: 440px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); display: flex; flex-direction: column; }
.feature-panel.products { background: radial-gradient(circle at 100% 0, rgba(76,168,255,.15), transparent 50%), var(--panel); }
.feature-panel.labs { background: radial-gradient(circle at 0 100%, rgba(183,161,255,.10), transparent 50%), var(--panel); }
.feature-panel h3 { margin-top: 76px; color: #fff; font-size: clamp(26px, 3vw, 38px); font-weight: 450; letter-spacing: -.035em; }
.feature-panel p { margin-top: 14px; max-width: 47ch; color: var(--muted); font-size: 15px; }
.feature-panel .button { align-self: flex-start; margin-top: auto; }

.story-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.story-band h2 { color: #fff; font-size: clamp(33px, 4vw, 50px); font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
.story-copy p { color: var(--muted); font-size: 16px; }
.story-copy p + p { margin-top: 18px; }
.story-copy .text-link { display: inline-flex; margin-top: 28px; }

/* Research in public */
.reddit-feature {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 88%, rgba(255,69,0,.085), transparent 28rem),
    radial-gradient(circle at 90% 5%, rgba(76,168,255,.1), transparent 30rem),
    #080a0d;
}
.reddit-feature::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.reddit-feature::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px; pointer-events: none;
  background: linear-gradient(90deg, #ff4500 0%, #ff4500 18%, var(--blue) 70%, transparent 100%);
  opacity: .85;
}
.reddit-feature .wrap { position: relative; z-index: 1; }
.reddit-eyebrow { display: flex; align-items: center; gap: 10px; }
.reddit-eyebrow span {
  display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: #ff4500; color: #fff; font: 700 10px/1 var(--mono); letter-spacing: 0;
  box-shadow: 0 0 0 5px rgba(255,69,0,.08);
}
.reddit-headline-accent {
  color: #fff; text-decoration: underline; text-decoration-color: rgba(255,69,0,.78);
  text-decoration-thickness: .08em; text-underline-offset: .13em;
}
.reddit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.reddit-story {
  position: relative; min-width: 0; overflow: hidden; padding: 14px; border: 1px solid var(--line);
  border-radius: var(--radius); background: radial-gradient(circle at 0 0, rgba(255,69,0,.055), transparent 38%), rgba(13,16,20,.9);
  box-shadow: 0 22px 60px rgba(0,0,0,.18); transition: border-color .25s, transform .25s, box-shadow .25s;
}
.reddit-story::before {
  content: ""; position: absolute; inset: 0 14px auto; height: 1px;
  background: linear-gradient(90deg, rgba(255,69,0,.82), rgba(76,168,255,.42), transparent);
}
.reddit-story:hover {
  transform: translateY(-3px); border-color: rgba(255,69,0,.3);
  box-shadow: 0 26px 70px rgba(0,0,0,.28), 0 0 0 1px rgba(76,168,255,.04);
}
.reddit-story-meta {
  display: flex; justify-content: space-between; gap: 14px; min-height: 35px; padding: 1px 3px 12px;
  color: var(--faint); font: 500 9px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase;
}
.reddit-story-meta span:first-child { color: #ff7647; }
.reddit-story-meta span:last-child { color: #8497aa; }
.reddit-embed-shell {
  min-height: 316px; overflow: hidden; border: 1px solid rgba(255,69,0,.22); border-radius: 13px;
  background: #1a1a1b; color-scheme: dark; box-shadow: inset 0 0 0 1px rgba(76,168,255,.055);
}
.reddit-card {
  display: flex; min-height: 314px; padding: 25px; flex-direction: column; color: #d7dadc;
  font-size: 14px; text-decoration: none;
}
.reddit-card-community { display: flex; align-items: center; gap: 12px; }
.reddit-card-icon {
  display: grid; width: 38px; height: 38px; flex: none; place-items: center; border-radius: 50%;
  background: #fff; color: #111315; font: 800 12px/1 var(--mono);
}
.reddit-card-community strong { display: block; color: #f6f7f8; font-size: 13px; }
.reddit-card-community small { display: block; margin-top: 2px; color: #8497aa; font: 500 9px/1.4 var(--mono); }
.reddit-card h3 {
  margin-top: 34px; color: #f6f7f8; font-size: 18px; line-height: 1.38; letter-spacing: -.01em;
}
.reddit-card-action {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08); color: #ff6a36; font: 700 11px/1.4 var(--mono);
  letter-spacing: .05em; text-transform: uppercase;
}
.reddit-card:hover .reddit-card-action { color: var(--blue); }
.reddit-feature-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line);
}
.reddit-feature-footer p { color: var(--muted); font-size: 13px; }
.reddit-feature-footer .text-link { flex: none; color: #ff6a36; }
.reddit-feature-footer .text-link:hover { color: var(--blue); }

.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; padding: clamp(34px, 5vw, 58px); border: 1px solid var(--line-strong); border-radius: 22px; background: radial-gradient(circle at 100% 0, rgba(76,168,255,.16), transparent 50%), var(--panel); }
.cta-band h2 { max-width: 18ch; color: #fff; font-size: clamp(31px, 4vw, 49px); font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
.cta-band p { margin-top: 13px; max-width: 60ch; color: var(--muted); }

/* Page heroes and page-specific layouts */
.page-hero { position: relative; overflow: hidden; padding: 176px 0 96px; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; inset: -30%; pointer-events: none; background: radial-gradient(circle at 76% 47%, rgba(29,111,205,.18), transparent 29rem); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: end; }
.page-hero .display { max-width: 16ch; font-size: clamp(42px, 5.2vw, 72px); }
.page-hero-aside { padding-left: 28px; border-left: 1px solid var(--line-strong); }
.page-hero-aside p { color: #b5bdc7; font-size: 17px; }
.page-hero-aside .actions { margin-top: 27px; }
.service-stack { display: grid; gap: 16px; }
.service-row { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.service-row .service-id { color: var(--blue); font: 500 10px/1.5 var(--mono); letter-spacing: .13em; }
.service-row h2 { margin-top: 26px; color: #fff; font-size: clamp(26px, 3.2vw, 39px); font-weight: 450; letter-spacing: -.035em; line-height: 1.1; }
.service-row p { color: var(--muted); font-size: 15px; }
.service-row ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 23px; list-style: none; }
.service-row li { position: relative; padding-left: 16px; color: #bcc3cb; font-size: 13px; }
.service-row li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.engagement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.engagement { padding: 27px; border-left: 2px solid var(--blue-deep); background: var(--panel); }
.engagement h3 { color: #fff; font-size: 18px; }
.engagement p { margin-top: 8px; color: var(--muted); font-size: 13px; }

.work-list { display: grid; gap: 14px; }
.work-item { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.work-item h2 { margin-top: 19px; color: #fff; font-size: clamp(26px, 3vw, 38px); font-weight: 450; letter-spacing: -.035em; }
.work-item p { color: var(--muted); }
.work-item .evidence { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); color: #c5cbd2; font-size: 13px; }
.note { padding: 22px 24px; border: 1px solid rgba(231,200,110,.2); border-radius: 14px; background: rgba(231,200,110,.045); color: #c7c0a9; font-size: 13px; }
.note.spaced { margin-top: 18px; }

.product-hero-card { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 22px; background: var(--panel); }
.product-copy { padding: clamp(34px, 5vw, 62px); }
.product-copy h2 { margin-top: 22px; color: #fff; font-size: clamp(33px, 4.5vw, 57px); font-weight: 430; letter-spacing: -.045em; line-height: 1.05; }
.product-copy p { margin-top: 18px; max-width: 57ch; color: var(--muted); }
.product-facts { padding: clamp(34px, 5vw, 62px); border-left: 1px solid var(--line); background: radial-gradient(circle at 100% 0, rgba(76,168,255,.13), transparent 55%), #0a0d11; }
.fact { padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact:first-child { padding-top: 0; }
.fact:last-child { border-bottom: 0; }
.fact strong { display: block; color: #fff; font-size: 16px; }
.fact span { color: var(--muted); font: 400 12px/1.6 var(--mono); }
.license-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.license-panel { min-height: 320px; padding: 35px; background: var(--panel); }
.license-panel + .license-panel { border-left: 1px solid var(--line); }
.license-panel h3 { color: #fff; font-size: 22px; }
.license-panel p { margin-top: 13px; color: var(--muted); font-size: 14px; }

.results-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.result-row { display: grid; grid-template-columns: 1fr .8fr 1.2fr; gap: 24px; padding: 24px 27px; border-bottom: 1px solid var(--line); background: var(--panel); align-items: center; }
.result-row:last-child { border-bottom: 0; }
.result-row strong { color: #fff; font-size: 14px; }
.result-row span { color: var(--muted); font-size: 12px; }
.result-row .metric { color: var(--blue); font-family: var(--mono); }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 120px; top: 8px; bottom: 8px; width: 1px; background: var(--line-strong); }
.timeline-row { display: grid; grid-template-columns: 120px 1fr; gap: 38px; padding: 0 0 48px; }
.timeline-row:last-child { padding-bottom: 0; }
.timeline-row time { color: var(--blue); font: 500 11px/1.5 var(--mono); }
.timeline-content { position: relative; padding-left: 30px; }
.timeline-content::before { content: ""; position: absolute; left: -42px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px var(--bg); }
.timeline-content h3 { color: #fff; font-size: 21px; }
.timeline-content p { margin-top: 8px; max-width: 67ch; color: var(--muted); font-size: 14px; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.contact-main, .contact-side { padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.contact-main h2 { color: #fff; font-size: clamp(28px, 3.5vw, 43px); font-weight: 430; letter-spacing: -.04em; line-height: 1.08; }
.contact-main p, .contact-side p { margin-top: 14px; color: var(--muted); }
.brief-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 28px; list-style: none; }
.brief-list li { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; color: #b8c0c9; font-size: 13px; }
.contact-side h3 { color: #fff; font-size: 19px; }
.contact-side h3:not(:first-child) { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-side address { margin-top: 12px; color: #b8c0c9; font-size: 13px; font-style: normal; }

/* Footer */
.site-footer { padding: 64px 0 28px; border-top: 1px solid var(--line); background: #07080a; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr 1.3fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; max-width: 32ch; color: var(--muted); font-size: 13px; }
.footer-col h2 { margin-bottom: 16px; color: var(--faint); font: 500 9px/1.5 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 8px; list-style: none; }
.footer-col a, .footer-col address { color: #b5bdc6; font-size: 12px; font-style: normal; text-decoration: none; }
.footer-col a:hover { color: var(--blue); }
.footer-col address { line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--faint); font: 400 10px/1.5 var(--mono); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 2px; }
  .desktop-nav a { padding-inline: 9px; font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr; }
  .home-hero { padding-bottom: 60px; }
  .home-hero .display { max-width: 15ch; }
  .system-map { min-height: 390px; width: min(100%, 560px); margin-inline: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .reddit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reddit-story:last-child { grid-column: 1 / -1; width: calc(50% - 7px); }
  .process-flow { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .process-step:nth-child(3)::after { display: none; }
  .process-step:nth-child(4)::after { display: block; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .wrap, .narrow { width: min(calc(100% - 40px), 1220px); }
  .site-nav { background: rgba(5,6,7,.92); backdrop-filter: blur(18px); border-color: rgba(255,255,255,.08); }
  .nav-inner { min-height: 70px; }
  .desktop-nav, .site-nav .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav.menu-open .desktop-nav {
    position: absolute; display: grid; inset: 70px 0 auto; padding: 18px 20px 24px; border-bottom: 1px solid var(--line);
    background: rgba(5,6,7,.98);
  }
  .site-nav.menu-open .desktop-nav a { min-height: 46px; padding: 0 14px; font-size: 15px; }
  .site-nav.menu-open .desktop-nav .nav-divider { width: 100%; height: 1px; margin: 7px 0; }
  .site-nav.menu-open .desktop-nav .mobile-contact { color: #050607; background: #fff; font-weight: 700; }
  .home-hero { min-height: auto; padding: 136px 0 80px; }
  .home-hero::before { mask-image: radial-gradient(ellipse 90% 40% at 50% 79%, #000, transparent 75%); }
  .hero-grid, .page-hero-grid, .section-head, .story-band, .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .system-map { min-height: 360px; transform: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { align-items: start; }
  .section-head h2 { max-width: 18ch; }
  .problem-grid, .engagement-grid { grid-template-columns: 1fr; gap: 24px; }
  .split-feature, .product-hero-card, .service-row, .work-item { grid-template-columns: 1fr; }
  .feature-panel { min-height: 360px; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .process-step, .process-step:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-step:nth-child(even) { border-right: 0; }
  .process-step:nth-child(4) { border-bottom: 0; }
  .process-step:last-child { border-bottom: 0; }
  .process-step::after, .process-step:nth-child(3)::after { display: block; }
  .process-step:nth-child(even)::after, .process-step:last-child::after { display: none; }
  .page-hero { padding: 144px 0 78px; }
  .page-hero-aside { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid var(--line-strong); }
  .service-row, .work-item { gap: 32px; padding: 32px; }
  .product-facts { border-left: 0; border-top: 1px solid var(--line); }
  .result-row { grid-template-columns: 1fr; gap: 8px; }
  .reddit-feature-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .cta-band { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .display { font-size: 41px; }
  .lede { font-size: 16px; }
  .actions, .actions .button { width: 100%; }
  .system-map { min-height: 330px; transform: scale(.86); margin: -16px 0; }
  .orbit-one { width: 320px; height: 320px; }
  .orbit-two { width: 220px; height: 220px; }
  .map-core { width: 106px; height: 106px; }
  .map-node { width: 110px; padding: 11px; font-size: 10px; }
  .proof-grid, .card-grid, .card-grid.two, .principles { grid-template-columns: 1fr; }
  .reddit-grid { grid-template-columns: 1fr; }
  .reddit-story:last-child { grid-column: auto; width: auto; }
  .reddit-story { padding: 10px; }
  .proof-item { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .card { min-height: auto; padding: 25px; }
  .process-flow { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(3), .process-step:nth-child(even) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:nth-child(4) { border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step::after { display: none !important; }
  .process-step h3 { margin-top: 28px; }
  .service-row, .work-item, .product-copy, .product-facts, .license-panel { padding: 26px 23px; }
  .service-row ul, .brief-list { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: 1fr; }
  .license-panel + .license-panel { border-left: 0; border-top: 1px solid var(--line); }
  .timeline::before { left: 76px; }
  .timeline-row { grid-template-columns: 76px 1fr; gap: 22px; }
  .timeline-content { padding-left: 19px; }
  .timeline-content::before { left: -26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .system-map { transform: none !important; }
}

/* Technology dropdown */
.nav-dropdown { position: relative; }
.nav-drop-toggle {
  display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 0 13px;
  border: 0; border-radius: 10px; background: none; color: #aeb6c0; font-family: var(--sans);
  font-size: 14px; cursor: pointer; transition: color .2s, background .2s;
}
.nav-drop-toggle:hover, .nav-dropdown.open .nav-drop-toggle { color: #fff; background: rgba(255,255,255,.055); }
.drop-caret { font-size: 9px; transition: transform .2s; }
.nav-dropdown.open .drop-caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 60; display: none; min-width: 196px;
  padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,10,13,.97);
  backdrop-filter: blur(18px); list-style: none; box-shadow: 0 18px 44px rgba(0,0,0,.5);
}
.nav-dropdown.open .nav-drop-menu { display: grid; gap: 2px; }
.nav-drop-menu a { width: 100%; }

@media (max-width: 820px) {
  .site-nav.menu-open .nav-drop-toggle { display: none; }
  .site-nav.menu-open .nav-drop-menu {
    position: static; display: grid; gap: 2px; min-width: 0; padding: 0;
    border: 0; background: none; box-shadow: none; backdrop-filter: none;
  }
}

/* Enquiry form */
.enquiry-form { margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; color: #b8c0c9; font-size: 13px; font-weight: 500; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  min-height: 46px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--bg-soft); color: var(--text); font-family: var(--sans); font-size: 14px;
}
.form-grid select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--faint) 50%), linear-gradient(135deg, var(--faint) 50%, transparent 50%); background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
.form-grid select option { background: var(--panel); color: var(--text); }
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-grid input:focus-visible, .form-grid select:focus-visible, .form-grid textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.consent input { margin-top: 3px; accent-color: var(--blue); }
.form-status { margin-top: 14px; font-size: 13px; }
.form-status.ok { color: var(--green); }
.form-status.error { color: var(--yellow); }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* Field Notes preview */
.journal-preview {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(20,19,16,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,19,16,.045) 1px, transparent 1px),
    #eee9dd;
  background-size: 32px 32px;
}
.journal-preview-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  border: 1px solid #171612;
  background: #f8f4ea;
  color: #171612;
  box-shadow: 13px 13px 0 #2457e6;
}
.journal-preview-copy { padding: clamp(36px, 6vw, 76px); }
.journal-preview-kicker {
  display: flex; align-items: center; gap: 10px; color: #ef442d;
  font: 750 10px/1.5 var(--mono); letter-spacing: .14em; text-transform: uppercase;
}
.journal-preview-kicker::before { width: 26px; height: 3px; background: currentColor; content: ""; }
.journal-preview-copy h2 {
  max-width: 8ch; margin-top: 40px; font-size: clamp(42px, 5.8vw, 76px); font-weight: 800;
  letter-spacing: -.065em; line-height: .9;
}
.journal-preview-copy > p:not(.journal-preview-kicker) {
  max-width: 42ch; margin-top: 26px; color: #4d4941; font: 18px/1.5 Georgia, serif;
}
.journal-preview-link {
  display: inline-flex; align-items: center; gap: 28px; margin-top: 42px; padding-bottom: 6px;
  border-bottom: 2px solid #171612; font-size: 13px; font-weight: 800; text-decoration: none;
}
.journal-preview-link span { color: #ef442d; font-size: 20px; }
.journal-preview-stack { display: grid; border-left: 1px solid #171612; }
.journal-preview-stack a {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 22px; align-items: center;
  min-height: 130px; padding: 24px 30px; border-bottom: 1px solid #171612; text-decoration: none;
  transition: background .18s, color .18s;
}
.journal-preview-stack a:last-child { border-bottom: 0; }
.journal-preview-stack a:hover { background: #171612; color: #fffdf7; }
.journal-preview-stack span { color: #ef442d; font: 700 9px/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.journal-preview-stack strong { max-width: 20ch; font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -.04em; line-height: 1; }
.journal-preview-stack i { color: #777168; font: 650 9px/1.5 var(--mono); font-style: normal; text-transform: uppercase; }
@media (max-width: 900px) {
  .journal-preview-card { grid-template-columns: 1fr; }
  .journal-preview-stack { border-top: 1px solid #171612; border-left: 0; }
}
@media (max-width: 560px) {
  .journal-preview-card { box-shadow: 7px 7px 0 #2457e6; }
  .journal-preview-stack a { grid-template-columns: 1fr auto; gap: 12px; min-height: 116px; padding: 22px; }
  .journal-preview-stack span { grid-column: 1 / -1; }
}

/* Ownership and technical leadership */
.ownership-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 16px;
}
.owner-card {
  padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
}
.owner-card h3 { margin-top: 5px; color: #fff; font-size: 22px; }
.owner-card p:not(.founder-role) { margin-top: 10px; color: var(--muted); font-size: 14px; }
.founder-card {
  padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
}
.technical-lead-card { background: linear-gradient(135deg, rgba(76,168,255,.055), transparent 42%), var(--panel); }
.founder-bio h3 { color: #fff; font-size: 26px; }
.founder-role { margin-top: 7px; color: var(--faint); font: 500 10px/1.5 var(--mono); letter-spacing: .16em; }
.founder-bio > p:not(.founder-role) { margin-top: 15px; max-width: 62ch; color: var(--muted); font-size: 15px; }
.founder-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; }
@media (max-width: 820px) {
  .ownership-grid { grid-template-columns: 1fr; }
}

/* Case studies */
.case-meta { margin-top: 12px; color: var(--faint); font: 500 10px/1.6 var(--mono); letter-spacing: .13em; }
.case-study p strong { color: #dfe4e9; }
.case-study p + p { margin-top: 14px; }
.case-study .tag-row { margin-top: 20px; }

/* System light theme: pure CSS keeps the critical path free of theme JavaScript. */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f1e9;
    --bg-soft: #fffdf8;
    --panel: #fbf8f1;
    --panel-hover: #fffdf8;
    --line: #d8d1c5;
    --line-strong: #b9b0a2;
    --text: #191b1e;
    --muted: #555c64;
    --faint: #737a82;
    --blue: #1768b7;
    --blue-deep: #0f579d;
    --green: #18754e;
    --yellow: #80610b;
    --purple: #6950b0;
  }

  html { color-scheme: light; }
  body::before {
    background:
      radial-gradient(circle at 78% 8%, rgba(23, 104, 183, .1), transparent 28rem),
      radial-gradient(circle at 8% 56%, rgba(24, 117, 78, .055), transparent 30rem),
      var(--bg);
  }

  .site-nav.scrolled,
  .site-nav.solid,
  .site-nav {
    border-color: rgba(25, 27, 30, .09);
    background: rgba(244, 241, 233, .9);
  }
  .logo,
  .display,
  .section-head h2,
  .card h3,
  .problem h3,
  .process-step h3,
  .feature-panel h3,
  .story-band h2,
  .cta-band h2,
  .service-row h2,
  .engagement h3,
  .work-item h2,
  .product-copy h2,
  .fact strong,
  .license-panel h3,
  .result-row strong,
  .timeline-content h3,
  .contact-main h2,
  .contact-side h3,
  .owner-card h3,
  .founder-bio h3 { color: var(--text); }

  .desktop-nav a,
  .nav-drop-toggle { color: var(--muted); }
  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"],
  .nav-drop-toggle:hover,
  .nav-dropdown.open .nav-drop-toggle {
    color: var(--text);
    background: rgba(25, 27, 30, .065);
  }
  .desktop-nav .nav-mail {
    border-color: rgba(23, 104, 183, .28);
    color: #174f86;
    background: linear-gradient(135deg, rgba(23, 104, 183, .08), rgba(105, 80, 176, .07));
  }
  .desktop-nav .nav-mail:hover {
    border-color: rgba(23, 104, 183, .48);
    background: linear-gradient(135deg, rgba(23, 104, 183, .13), rgba(105, 80, 176, .1));
  }
  .nav-cta,
  .button.primary {
    border-color: var(--text);
    background: var(--text);
    color: #fffdf8;
  }
  .nav-cta:hover,
  .button.primary:hover { border-color: #34383d; background: #34383d; }
  .menu-toggle { color: var(--text); }
  .button { color: var(--text); }
  .lede,
  .page-hero-aside p,
  .service-row li,
  .work-item .evidence,
  .brief-list li,
  .contact-side address,
  .form-grid label,
  .footer-col a,
  .footer-col address { color: var(--muted); }

  .home-hero::before {
    opacity: .34;
    background-image:
      linear-gradient(rgba(25, 27, 30, .08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(25, 27, 30, .08) 1px, transparent 1px);
  }
  .map-core {
    background: radial-gradient(circle at 35% 30%, rgba(23, 104, 183, .2), transparent 62%), #f8fbff;
    color: var(--text);
    box-shadow: 0 0 70px rgba(23, 104, 183, .13);
  }
  .map-node { background: rgba(255, 253, 248, .92); color: var(--text); }
  .proof-bar { background: rgba(255, 253, 248, .72); }
  .proof-item strong { color: var(--text); }
  .section.tinted { background: rgba(232, 227, 216, .5); }
  .card li,
  .tag,
  .status.retired { color: var(--muted); }
  .product-facts {
    background: radial-gradient(circle at 100% 0, rgba(23, 104, 183, .1), transparent 55%), #f7f3ea;
  }
  .note {
    border-color: rgba(128, 97, 11, .22);
    background: rgba(128, 97, 11, .055);
    color: #68551c;
  }
  .nav-drop-menu {
    background: rgba(255, 253, 248, .98);
    box-shadow: 0 18px 44px rgba(48, 42, 33, .14);
  }
  .site-nav.menu-open .desktop-nav { background: rgba(244, 241, 233, .98); }
  .site-nav.menu-open .desktop-nav .mobile-contact { color: #fffdf8; background: var(--text); }
  .site-footer { background: #e9e4da; }
  .case-study p strong { color: var(--text); }

  /* Research cards inherit the same system light preference without third-party theme code. */
  .reddit-feature {
    background:
      radial-gradient(circle at 8% 88%, rgba(255,69,0,.065), transparent 28rem),
      radial-gradient(circle at 90% 5%, rgba(23,104,183,.075), transparent 30rem),
      #ece8df;
    color-scheme: light;
  }
  .reddit-feature::before {
    background-image:
      linear-gradient(rgba(25,27,30,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(25,27,30,.04) 1px, transparent 1px);
  }
  .reddit-feature .section-head h2,
  .reddit-headline-accent { color: var(--text); }
  .reddit-story {
    background: radial-gradient(circle at 0 0, rgba(255,69,0,.045), transparent 38%), rgba(255,253,248,.88);
    box-shadow: 0 22px 60px rgba(48,42,33,.1);
  }
  .reddit-story:hover { box-shadow: 0 26px 70px rgba(48,42,33,.14), 0 0 0 1px rgba(23,104,183,.04); }
  .reddit-story-meta span:first-child { color: #ba3b11; }
  .reddit-story-meta span:last-child { color: var(--faint); }
  .reddit-embed-shell {
    border-color: rgba(186,59,17,.2); background: #fffdf8; color-scheme: light;
    box-shadow: inset 0 0 0 1px rgba(23,104,183,.04);
  }
  .reddit-card { color: var(--muted); }
  .reddit-card-icon { background: var(--text); color: #fffdf8; }
  .reddit-card-community strong,
  .reddit-card h3 { color: var(--text); }
  .reddit-card-community small { color: var(--faint); }
  .reddit-card-action { border-top-color: var(--line); color: #ba3b11; }
}

@media (prefers-color-scheme: dark) {
  .journal-preview {
    background:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
      #080a0d;
  }
  .journal-preview-card {
    border-color: #303945;
    background: #0d1014;
    color: #f5f7f9;
  }
  .journal-preview-copy > p:not(.journal-preview-kicker) { color: #a4acb6; }
  .journal-preview-link { border-bottom-color: #f5f7f9; }
  .journal-preview-stack { border-color: #303945; }
  .journal-preview-stack a { border-bottom-color: #303945; }
  .journal-preview-stack a:hover { background: #f5f7f9; color: #0d1014; }
  .journal-preview-stack i { color: #9299a2; }
  .journal-preview-stack a:hover i { color: #555c64; }
}
