@font-face {
  font-family: "Nunito Sans";
  src: url("fonts/nunito-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("fonts/nunito-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("fonts/nunito-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-raised: #26262c;
  --text: #ffffff;
  --muted: #c2c6ce;
  --border: #303034;
  --accent: #05f29b;
  --accent-ink: #18181b;
  --sans: "Nunito Sans", system-ui, sans-serif;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent);
  color: var(--accent-ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
a,
button {
  transition:
    color 0.18s,
    background 0.18s,
    border-color 0.18s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.site-header {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.wordmark img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}
.brand-dot {
  color: var(--accent);
}
nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
}
nav a {
  padding-block: 14px;
}
nav a:hover,
.text-link:hover,
.quiet-link:hover,
.social-links a:hover {
  color: var(--accent);
}
.languages {
  display: flex;
  gap: 8px;
}
.languages button {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}
.languages button[aria-pressed="true"] {
  background: var(--surface-raised);
  border-color: var(--border);
  color: var(--accent);
}
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: center;
  padding-block: 52px 42px;
}
.hero-copy {
  max-width: 610px;
}
.hero h1 {
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-block: 18px 20px;
}
.hero-intro {
  font-size: 19px;
  color: var(--text);
  max-width: 540px;
  line-height: 1.5;
}
.hero-note {
  font-size: 15px;
  max-width: 510px;
  margin-top: 13px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--accent);
  color: var(--accent-ink);
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}
.button:hover {
  background: #84e9bf;
}
.quiet-link {
  padding-block: 12px;
  font-size: 13px;
}
.portrait {
  position: relative;
  max-width: 290px;
  justify-self: end;
  width: 100%;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.portrait-image {
  overflow: hidden;
  border-radius: 7px;
}
.portrait img {
  width: 100%;
  aspect-ratio: 1/1.13;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.85);
}
.portrait figcaption {
  padding: 12px 6px 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}
.portrait figcaption > span:last-child {
  color: var(--muted);
  font-size: 12px;
}
.portrait-label {
  position: absolute;
  top: 20px;
  left: -22px;
  padding: 6px 10px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.intro-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-block: 1px solid var(--border);
  padding-block: 16px;
  color: var(--muted);
  font-size: 12px;
}
.intro-strip > span:last-child {
  color: var(--accent);
}
.work-section {
  padding-block: 48px 52px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: end;
  margin-bottom: 25px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 8px;
}
h2 {
  font-size: 30px;
}
.section-heading > p:last-child {
  font-size: 14px;
  max-width: 450px;
}
.flagship {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(120deg, #1e2c25, var(--surface) 70%);
}
.flagship h3 {
  font-size: 34px;
  margin-block: 17px 15px;
}
.flagship h3 br {
  display: none;
}
.flagship h3 em::before {
  content: " ";
}
.feature-lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.flagship-copy > p:not(.eyebrow) {
  max-width: 460px;
}
.flagship-copy > p:not(.eyebrow):not(.feature-lead) {
  font-size: 14px;
}
.flagship .button {
  margin-top: 22px;
}
.workflow {
  align-self: center;
  background: var(--bg);
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 9px;
}
.workflow-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}
.workflow-brand img {
  width: 24px;
  height: 24px;
}
.workflow-label {
  font-size: 12px;
  margin-top: 14px;
}
.flow-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 17px;
}
.step-num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}
.flow-step h4 {
  font-size: 15px;
  margin-bottom: 3px;
}
.flow-step p {
  font-size: 12px;
}
.workflow-foot {
  font-size: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 17px;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.project-row {
  position: relative;
  padding: 23px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    background 0.18s,
    border-color 0.18s;
}
.project-row:hover {
  background: var(--surface-raised);
  border-color: #566c5e;
}
.project-number {
  color: var(--accent);
  margin-bottom: 24px;
}
.project-number svg {
  width: 32px;
  height: 32px;
  display: block;
}
.project-row:nth-child(2) .project-number {
  color: #aeb8f3;
}
.project-row:nth-child(3) .project-number {
  color: #dfc183;
}
.project-title .eyebrow {
  font-size: 11px;
  letter-spacing: 0.055em;
}
.project-title h3 {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.project-title a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.project-title .text-link > span {
  color: var(--muted);
  font-size: 17px;
}
.project-row h4 {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 9px;
  letter-spacing: 0;
}
.project-row p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.65;
}
.more-work {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding-inline: 22px;
}
.more-work summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}
.more-work summary::-webkit-details-marker {
  display: none;
}
.more-work summary > span:last-child {
  font-size: 21px;
  transition: transform 0.18s;
}
.more-work[open] summary > span:last-child {
  transform: rotate(45deg);
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding-block: 16px 25px;
}
.more-grid h3 {
  font-size: 18px;
  margin-block: 7px 9px;
}
.more-grid p:not(.eyebrow) {
  font-size: 13px;
}
.about-section {
  padding-block: 46px;
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 55px;
}
.about-grid h2 {
  font-size: 29px;
  margin-top: 13px;
  line-height: 1.3;
}
.about-copy > p {
  font-size: 14px;
  margin-bottom: 13px;
}
.about-copy .large-copy {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--border);
}
.principle-num {
  display: block;
  color: var(--accent);
  font-size: 11px;
  margin-bottom: 8px;
}
.principles p {
  font-size: 12px;
  line-height: 1.6;
}
.principles strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 7px;
  line-height: 1.4;
}
.toolkit {
  margin-top: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px 18px;
}
.toolkit .eyebrow {
  font-size: 11px;
}
.toolkit p:last-child {
  font-size: 12px;
  margin-top: 7px;
  line-height: 1.9;
}
.contact-section {
  padding-block: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 70px;
  align-items: start;
}
.contact-section > .eyebrow {
  grid-column: 1/-1;
}
.contact-section h2 {
  font-size: 30px;
  line-height: 1.3;
  grid-row: 2/4;
}
.contact-section > p:not(.eyebrow) {
  font-size: 14px;
  grid-column: 2;
}
.email-link {
  grid-column: 2;
  display: inline-flex;
  justify-self: start;
  gap: 18px;
  align-items: center;
  min-height: 44px;
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
}
.email-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.social-links {
  grid-column: 2;
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.social-links a {
  padding-block: 12px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-block: 15px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer a {
  padding-block: 12px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
@media (max-width: 960px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 40px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .portrait {
    max-width: 250px;
  }
  .wordmark-surname {
    display: none;
  }
  .flagship {
    gap: 25px;
    padding: 24px;
  }
  .project-row {
    padding: 18px;
  }
  .project-title h3 {
    font-size: 20px;
  }
  .about-grid {
    gap: 30px;
    grid-template-columns: 1fr 1.5fr;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .principles > div {
    display: flex;
    gap: 13px;
  }
  .principle-num {
    margin: 0;
    padding-top: 2px;
  }
  .contact-section {
    gap: 14px 30px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  html {
    scroll-padding-top: 135px;
  }
  .site-header {
    min-height: 68px;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
  }
  .wordmark {
    font-size: 13px;
  }
  .wordmark img {
    width: 29px;
    height: 29px;
  }
  .languages {
    margin-left: auto;
    order: 2;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    border-top: 1px solid var(--border);
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 32px;
  }
  .hero h1 {
    font-size: 38px;
    margin-block: 15px 18px;
  }
  .hero-intro {
    font-size: 17px;
  }
  .hero-note {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.045em;
  }
  .portrait {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    width: 100%;
    max-width: none;
    align-items: center;
    padding: 9px;
    justify-self: stretch;
  }
  .portrait img {
    aspect-ratio: 1;
    object-position: center 28%;
  }
  .portrait figcaption {
    padding: 0 10px 0 0;
    font-size: 13px;
  }
  .portrait-label {
    display: none;
  }
  .actions {
    gap: 20px;
    margin-top: 20px;
  }
  .intro-strip {
    flex-direction: column;
    gap: 6px;
    padding-block: 13px;
  }
  .work-section {
    padding-block: 32px;
  }
  .section-heading {
    display: block;
    margin-bottom: 21px;
  }
  .section-heading h2 {
    margin-block: 9px 10px;
  }
  h2 {
    font-size: 27px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .flagship {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 18px;
  }
  .flagship h3 {
    font-size: 29px;
  }
  .feature-lead {
    font-size: 17px;
  }
  .workflow {
    padding: 18px;
  }
  .project-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-row {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 14px;
    padding: 18px;
  }
  .project-number {
    grid-row: 1/3;
    margin: 2px 0;
  }
  .project-title h3 {
    margin-block: 2px 7px;
  }
  .project-row > div:last-child {
    grid-column: 2;
  }
  .project-row h4 {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .project-row p:not(.eyebrow) {
    font-size: 13px;
  }
  .more-work {
    padding-inline: 16px;
  }
  .more-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-section {
    padding-block: 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .about-grid h2 {
    font-size: 27px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .contact-section {
    display: block;
    padding-block: 34px;
  }
  .contact-section h2 {
    font-size: 27px;
    margin-block: 12px 15px;
  }
  .contact-section > p:not(.eyebrow) {
    font-size: 14px;
  }
  .email-link {
    font-size: 21px;
    margin-top: 12px;
  }
  .social-links {
    margin-top: 6px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 2px 18px;
    font-size: 11px;
  }
  .site-footer > span:first-child {
    width: 100%;
  }
  .site-footer > a {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Cosmic identity: motion lives in decoration, navigation stays stationary. */
.hero {
  grid-template-columns: 1.18fr 1fr;
  gap: 30px;
  position: relative;
  padding-block: 55px 42px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 -32px;
  background:
    radial-gradient(ellipse at 80% 45%, #1b4a3426, transparent 65%),
    linear-gradient(#ffffff03 1px, transparent 1px),
    linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size:
    auto,
    44px 44px,
    44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(transparent, #000 20%, #000 75%, transparent);
  z-index: -1;
}
.hero h1 {
  font-size: clamp(34px, 3.5vw, 47px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.hero-intro {
  font-size: 17px;
}
.hero-note {
  font-size: 14px;
}
.cosmos {
  position: relative;
  min-width: 0;
  isolation: isolate;
}
.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, #c0cddd, transparent),
    radial-gradient(1px 1px at 75% 8%, #90b7aa, transparent),
    radial-gradient(2px 2px at 89% 68%, #53dca3aa, transparent),
    radial-gradient(1px 1px at 20% 84%, #abbbea, transparent),
    radial-gradient(1px 1px at 58% 31%, #ffffff99, transparent),
    radial-gradient(1px 1px at 43% 92%, #abbbea, transparent),
    radial-gradient(1px 1px at 6% 52%, #90b7aa, transparent);
}
.orbit-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 440/360;
  background: radial-gradient(ellipse at center, #2dd39917, transparent 65%);
}
.orbit-paths {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}
.orbit-paths ellipse {
  stroke: #53dca32b;
  stroke-width: 1;
}
.orbit-paths ellipse:nth-child(2) {
  stroke: #9d9bec30;
}
.orbit-paths ellipse:nth-child(3) {
  stroke: #72a3e833;
}
.orbit-paths .orbit-tracer {
  stroke: #53dca38c;
  stroke-dasharray: 3 18;
  animation: orbital-drift 36s linear infinite;
}
@keyframes orbital-drift {
  to {
    stroke-dashoffset: -300;
  }
}
.cosmos-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, #253d33, #131a17 70%);
  border: 1px solid #53dca36b;
  box-shadow:
    0 0 55px #53dca326,
    inset 0 0 25px #53dca314;
}
.cosmos-core::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid #53dca322;
  border-radius: 50%;
  animation: core-breathe 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes core-breathe {
  50% {
    transform: scale(1.16);
    opacity: 0.35;
  }
}
.cosmos-core > span {
  position: absolute;
  bottom: -27px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.cosmos-core:hover {
  box-shadow: 0 0 65px #53dca342;
}
.planet {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translate(-50%, -50%);
  min-height: 44px;
  color: var(--node-color, var(--accent));
}
.planet-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #17201d;
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  box-shadow: 0 5px 25px #0005;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.planet-name {
  font-size: 11px;
  color: #c1cec7;
  background: #121615de;
  padding: 3px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}
.planet:hover .planet-mark,
.planet:focus-visible .planet-mark {
  transform: scale(1.12);
  box-shadow: 0 0 25px color-mix(in srgb, currentColor 20%, transparent);
}
.planet:hover .planet-name {
  color: currentColor;
}
.p-insight {
  left: 80%;
  top: 31%;
}
.p-rank {
  left: 77%;
  top: 76%;
  --node-color: #d8c58b;
}
.p-labs {
  left: 35%;
  top: 14%;
  --node-color: #b4a5ef;
}
.p-base {
  left: 21%;
  top: 43%;
  --node-color: #82b6f2;
}
.p-pen {
  left: 25%;
  top: 80%;
  --node-color: #c998e6;
}
.cosmos-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  padding-inline: 15px;
}
.motion-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  min-height: 36px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 11px;
}
.motion-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.motion-toggle[aria-pressed="true"] {
  color: var(--accent);
}
/* Card illustrations are schematic, not product screenshots or measured results. */
.tone-green {
  --card-accent: #53dca3;
}
.tone-purple {
  --card-accent: #b4a5ef;
}
.tone-blue {
  --card-accent: #82b6f2;
}
.tone-gold {
  --card-accent: #ddc487;
}
.portfolio-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-filters button {
  padding: 10px 14px;
  min-height: 44px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  border-radius: 6px;
  font-size: 12px;
}
.project-filters button[aria-pressed="true"] {
  background: #24382c;
  border-color: #436751;
  color: #8ce0b6;
}
.project-filters button:hover {
  color: var(--text);
  background: var(--surface-raised);
}
.project-count {
  font-size: 12px;
  white-space: nowrap;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.project-list {
  gap: 18px;
}
.project-row {
  display: flex;
  flex-direction: column;
  isolation: isolate;
  padding: 0 22px 18px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.project-row[hidden] {
  display: none;
}
.project-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    240px circle at var(--pointer-x, 50%) var(--pointer-y, 0%),
    color-mix(in srgb, var(--card-accent) 9%, transparent),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: -1;
}
.project-row:hover::before,
.project-row:focus-within::before {
  opacity: 1;
}
.project-row:hover,
.project-row:focus-within {
  border-color: color-mix(in srgb, var(--card-accent) 50%, var(--border));
  box-shadow: 0 10px 26px #0003;
}
.project-visual {
  position: relative;
  height: 130px;
  margin: 0 -22px 20px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(
      ellipse at 50% 100%,
      color-mix(in srgb, var(--card-accent) 11%, transparent),
      transparent 80%
    ),
    #141b18;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.project-visual svg {
  width: 80%;
  height: 100px;
  color: var(--card-accent);
  stroke: currentColor;
  stroke-width: 1.5;
}
.visual-index {
  position: absolute;
  top: 10px;
  left: 13px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.75;
}
.project-title h3 {
  font-size: 21px;
  margin: 6px 0 11px;
  line-height: 1.3;
}
.project-title a {
  min-height: 0;
  display: inline-block;
  padding-block: 4px;
}
.project-title a span {
  display: inline-block;
  transition: transform 0.2s;
  color: var(--card-accent);
}
.project-title a:hover span {
  transform: translate(3px, -3px);
}
.project-title .eyebrow {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--card-accent);
}
.project-description {
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
}
.project-tech {
  font-size: 10px;
  color: var(--muted);
  padding-top: 16px;
  margin-top: 18px;
  border-top: 1px solid #ffffff0d;
  letter-spacing: 0.025em;
}
.chart-grid,
.map-streets {
  opacity: 0.14;
}
.chart-line,
.wave-line {
  stroke-width: 2.5;
  stroke-dasharray: 320;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.65s;
}
.chart-dots {
  fill: var(--card-accent);
  stroke: #17201d;
  stroke-width: 3;
}
.network-lines {
  opacity: 0.35;
  stroke-dasharray: 3 5;
}
.network-nodes {
  fill: #1c2421;
  stroke-width: 1.3;
}
.network-core {
  stroke-width: 2;
  transition: transform 0.3s;
  transform-origin: center;
}
.ring-track {
  stroke-width: 7;
  opacity: 0.12;
}
.ring-value {
  stroke-width: 5;
  stroke-dasharray: 172 240;
  transform: rotate(-80deg);
  transform-origin: center;
  transition: transform 0.65s;
}
.leaf {
  stroke-width: 2;
}
.mock-window,
.calendar {
  stroke-opacity: 0.45;
  fill: #141b18;
}
.scan-box {
  fill: color-mix(in srgb, var(--card-accent) 10%, transparent);
}
.scan-line {
  stroke-width: 2;
  transition: transform 0.55s;
}
.calendar-item {
  fill: currentColor;
  stroke: none;
  opacity: 0.45;
  transition:
    opacity 0.25s,
    transform 0.3s;
}
.writing-lines {
  stroke-opacity: 0.4;
  stroke-width: 3;
}
.pen-mark {
  fill: #17201d;
  stroke-width: 2;
  transition: transform 0.35s;
}
.constellation path {
  opacity: 0.3;
}
.constellation circle {
  fill: currentColor;
  stroke: none;
  transition: filter 0.3s;
}
.map-route {
  stroke-width: 2;
  stroke-dasharray: 4 4;
}
.map-point {
  fill: var(--card-accent);
  stroke: #17201d;
  stroke-width: 3;
}
.trophy {
  stroke-width: 2;
  transform-origin: center;
  transition: transform 0.3s;
}
.project-row:is(:hover, :focus-within) .ring-value {
  transform: rotate(0deg);
}
.project-row:is(:hover, :focus-within) .scan-line {
  transform: translateY(14px);
}
.project-row:is(:hover, :focus-within) .pen-mark {
  transform: translate(5px, -5px);
}
.project-row:is(:hover, :focus-within) .calendar-item {
  opacity: 0.95;
  transform: translateY(-2px);
}
.project-row:is(:hover, :focus-within) .network-core {
  transform: scale(1.12);
}
.project-row:is(:hover, :focus-within) .constellation circle {
  filter: drop-shadow(0 0 4px currentColor);
}
.project-row:is(:hover, :focus-within) .trophy {
  transform: rotate(-5deg);
}
.project-row:is(:hover, :focus-within) .chart-line {
  stroke-dashoffset: 35;
}
.focus-section {
  padding-block: 5px 48px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.focus-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 23px;
  background: linear-gradient(145deg, var(--surface), var(--bg));
  position: relative;
  overflow: hidden;
}
.focus-card > .eyebrow {
  color: var(--card-accent);
}
.focus-visual {
  height: 90px;
  max-width: 180px;
  margin: 8px auto 18px;
  color: var(--card-accent);
}
.focus-visual svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
}
.focus-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.focus-card p {
  font-size: 13px;
}
.about-grid .portrait {
  margin-top: 28px;
  width: 100%;
  max-width: 240px;
  justify-self: start;
}
.about-grid {
  grid-template-columns: 1fr 1.65fr;
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left;
  z-index: 20;
  pointer-events: none;
}
.flow-step {
  border-radius: 7px;
  padding: 8px;
  margin: 9px -8px 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.flow-step:hover {
  background: #53dca30b;
  transform: translateX(3px);
}
.button > span[aria-hidden] {
  display: inline-block;
  transition: transform 0.2s;
}
.button:hover > span[aria-hidden] {
  transform: translate(3px, -2px);
}
.button:hover {
  box-shadow: 0 0 24px #53dca323;
}
.project-row.is-arriving {
  animation: card-arrive 0.4s ease both;
}
@keyframes card-arrive {
  from {
    opacity: 0.25;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body[data-motion="paused"] *,
body[data-motion="paused"] *::before {
  animation-play-state: paused !important;
}
body[data-motion="paused"] {
  scroll-behavior: auto;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .project-row:hover {
    transform: translateY(-4px);
  }
}
@media (max-width: 960px) {
  .hero {
    gap: 20px;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  .planet {
    gap: 4px;
  }
  .planet-name {
    font-size: 10px;
  }
  .planet-mark {
    width: 35px;
    height: 35px;
  }
  .cosmos-core {
    width: 72px;
    height: 72px;
  }
  .cosmos-core img {
    width: 38px;
    height: 38px;
  }
  .cosmos-caption {
    flex-wrap: wrap;
    font-size: 10px;
  }
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .focus-card {
    padding: 18px;
  }
  .about-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 32px 18px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero::before {
    inset: 0 -12px;
  }
  .cosmos {
    max-width: 390px;
    width: 100%;
    justify-self: center;
  }
  .orbit-scene {
    aspect-ratio: 440/330;
  }
  .cosmos-caption {
    flex-wrap: nowrap;
    font-size: 10px;
    padding-inline: 8px;
  }
  .planet-mark {
    width: 38px;
    height: 38px;
  }
  .planet-name {
    font-size: 10px;
  }
  .planet {
    gap: 5px;
  }
  .p-insight {
    left: 77%;
  }
  .p-rank {
    left: 74%;
  }
  .p-labs {
    left: 38%;
  }
  .p-base {
    left: 21%;
  }
  .p-pen {
    left: 28%;
  }
  .project-list {
    grid-template-columns: 1fr;
  }
  .project-row {
    display: flex;
    padding: 0 20px 18px;
  }
  .project-visual {
    height: 118px;
    margin: 0 -20px 18px;
  }
  .project-title h3 {
    font-size: 21px;
  }
  .project-description {
    font-size: 14px;
  }
  .project-tech {
    font-size: 11px;
  }
  .project-filters {
    gap: 3px;
  }
  .project-filters button {
    padding: 8px 9px;
    font-size: 11px;
  }
  .portfolio-toolbar {
    gap: 8px;
    flex-wrap: wrap;
  }
  .project-count {
    font-size: 11px;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-card {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 8px 15px;
    padding: 21px;
  }
  .focus-card > .eyebrow {
    grid-column: 1;
  }
  .focus-card h3 {
    grid-column: 1;
    grid-row: 2;
    font-size: 19px;
  }
  .focus-card p {
    grid-column: 1/-1;
    font-size: 14px;
  }
  .focus-visual {
    grid-column: 2;
    grid-row: 1/3;
    width: 100%;
    height: 70px;
    margin: 0;
  }
  .focus-section {
    padding-bottom: 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid .portrait {
    max-width: none;
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 16px;
    margin-top: 22px;
  }
  .about-grid .portrait img {
    aspect-ratio: 1;
  }
  .about-grid .portrait-label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-tracer,
  .cosmos-core::before,
  .project-row.is-arriving {
    animation: none !important;
  }
  .project-row:hover,
  .flow-step:hover,
  .project-row:is(:hover, :focus-within) .ring-value,
  .project-row:is(:hover, :focus-within) .scan-line,
  .project-row:is(:hover, :focus-within) .pen-mark,
  .project-row:is(:hover, :focus-within) .calendar-item,
  .project-row:is(:hover, :focus-within) .network-core,
  .project-row:is(:hover, :focus-within) .trophy,
  .planet:hover .planet-mark {
    transform: none;
  }
  .motion-toggle {
    display: none;
  }
  html {
    scroll-behavior: auto;
  }
}
.cosmos.is-idle *,
.cosmos.is-idle *::before {
  animation-play-state: paused !important;
}

.planet-mark svg {
  width: 20px;
  height: 20px;
}
.reveal-section {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(14px);
}
.reveal-pending:focus-within,
body[data-motion="paused"] .reveal-pending {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}
/* CometWeb brand alignment — values taken from the marketing site's tokens. */
body {
  background: var(--bg);
}
.wrap {
  width: min(1200px, calc(100% - 64px));
}
.site-header {
  top: 12px;
  min-height: 64px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #101010;
  box-shadow: 0 10px 35px #0005;
  margin-top: 12px;
}
.wordmark {
  font-size: 15px;
}
.wordmark img {
  box-shadow: 0 0 18px #05f29b10;
}
.brand-dot {
  text-shadow: 0 0 10px #05f29b;
}
.languages button[aria-pressed="true"] {
  background: #202023;
  border-color: #3a3a40;
  color: var(--accent);
}
nav a {
  color: #d1d5db;
}
.hero {
  isolation: isolate;
  padding-block: 62px 52px;
  gap: 44px;
  grid-template-columns: 1.22fr 1fr;
}
.hero::before {
  inset: auto;
  width: 100vw;
  height: calc(100% + 110px);
  top: -76px;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 70% 48% at 65% 90%, #05f29b20, transparent 80%),
    url("starfield.svg") center top/1440px 780px;
  mask-image: linear-gradient(#000 0%, #000 75%, transparent);
  z-index: -1;
}
.founder-brand {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.founder-brand > span:first-child {
  color: #fff;
  text-shadow:
    0 0 5px #ffffff77,
    0 0 14px #a0f3ec66,
    0 0 35px #05f29b44;
}
.founder-brand .founder-brand-divider {
  color: #565a59;
  margin-inline: 8px;
  font-weight: 400;
}
.founder-brand a {
  font-size: 15px;
  color: #bac8c1;
  letter-spacing: 0;
}
.founder-brand a:hover {
  color: var(--accent);
}
.hero .eyebrow {
  color: #b1b8b6;
  font-size: 12px;
  letter-spacing: 0.065em;
}
.status-dot {
  background: var(--accent);
  box-shadow:
    0 0 7px #05f29b99,
    0 0 18px #05f29b55;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.hero h1 em {
  color: var(--accent);
  text-shadow: 0 0 35px #05f29b18;
  font-weight: 600;
}
.hero-intro {
  color: #e0e2e6;
  font-size: 18px;
}
.hero-note {
  color: #b7bcc5;
  font-size: 15px;
  line-height: 1.7;
}
.actions {
  gap: 12px;
}
.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 12px 23px;
  border-radius: 11px;
  background: linear-gradient(100deg, #05f29b, #04c27c);
  color: #18181b;
  font-size: 14px;
  box-shadow:
    0 7px 27px #05f29b2e,
    inset 0 1px 0 #ffffff40;
}
.button:hover {
  background: linear-gradient(100deg, #04c27c, #05f29b);
  box-shadow: 0 9px 32px #05f29b3b;
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  left: 0;
  background: linear-gradient(90deg, transparent, #ffffff66, transparent);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}
.button:hover::after {
  animation: brand-sheen 0.75s ease-out;
}
@keyframes brand-sheen {
  to {
    transform: translateX(430%) skewX(-18deg);
  }
}
.quiet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 11px 20px;
  font-size: 14px;
  border: 1px solid #39393f;
  background: linear-gradient(#222225, #19191b);
  border-radius: 11px;
  color: #fff;
  box-shadow: inset 0 1px 0 #ffffff0a;
}
.quiet-link:hover {
  background: #29292e;
  border-color: #56565f;
  color: #fff;
}
.orbit-scene {
  background: radial-gradient(ellipse at center, #05f29b26, transparent 65%);
}
.orbit-paths ellipse {
  stroke: #05f29b55;
}
.orbit-paths ellipse:nth-child(2) {
  stroke: #b8aaff48;
}
.orbit-paths ellipse:nth-child(3) {
  stroke: #78bcff50;
}
.orbit-paths .orbit-tracer {
  stroke: #05f29bc9;
}
.cosmos-core {
  background: radial-gradient(circle at 40% 30%, #143b2c, #0f1915 75%);
  border-color: #05f29b80;
  box-shadow:
    0 0 45px #05f29b45,
    0 0 90px #05f29b1f,
    inset 0 0 22px #05f29b18;
}
.cosmos-core::before {
  border-color: #05f29b45;
}
.cosmos-core img {
  filter: drop-shadow(0 0 8px #05f29b80);
}
.planet-mark {
  background: linear-gradient(145deg, #242427, #101013);
  border-color: color-mix(in srgb, currentColor 65%, transparent);
  box-shadow:
    0 5px 22px #0008,
    0 0 20px color-mix(in srgb, currentColor 14%, transparent);
}
.planet-name {
  color: #e5e7eb;
  background: #111114e6;
}
.cosmos-caption {
  color: #b7bcc5;
}
.motion-toggle {
  background: #18181bcc;
  border-color: #3b3b42;
  color: #c4c7ce;
}
.intro-strip {
  border-color: #2d2d2d;
  color: #b7bcc5;
  background: linear-gradient(90deg, transparent, #05f29b06, transparent);
}
h2 {
  font-weight: 600;
  color: #fff;
}
.section-heading > p:last-child {
  color: #bfc3cb;
  font-size: 15px;
}
.flagship {
  padding: 0 30px 30px;
  gap: 27px 40px;
  background:
    radial-gradient(ellipse at 12% 0%, #05f29b13, transparent 60%),
    linear-gradient(135deg, #1b1b1f, #101012);
  border-color: #3b3b41;
  border-radius: 14px;
  box-shadow:
    0 15px 45px #0004,
    0 0 45px #05f29b05;
  overflow: hidden;
}
.flagship-chrome {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: #202022;
  border-bottom: 1px solid #363638;
  margin: 0 -30px;
  padding: 12px 20px;
  font-size: 12px;
  color: #c3c5cd;
}
.window-dots {
  display: flex;
  gap: 7px;
}
.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f26b68;
}
.window-dots i:nth-child(2) {
  background: #e3ad4e;
}
.window-dots i:nth-child(3) {
  background: #05c887;
}
.chrome-caption {
  font-size: 11px;
  color: #acafb9;
}
.flagship h3 {
  font-weight: 600;
}
.flagship .feature-lead {
  color: #f0f1f3;
  font-size: 19px;
}
.flagship-copy > p:not(.eyebrow):not(.feature-lead) {
  color: #c3c7cf;
  font-size: 15px;
}
.workflow {
  background: linear-gradient(155deg, #1e1e21, #131315);
  border-color: #3a3a41;
  box-shadow: 0 8px 25px #0003;
}
.workflow-brand {
  color: #fff;
  font-size: 14px;
}
.workflow-brand img {
  filter: drop-shadow(0 0 6px #05f29b55);
}
.workflow-label,
.workflow-foot {
  color: #b8bdc6;
}
.step-num {
  color: var(--accent);
  background: #05f29b14;
  border-color: #05f29b35;
}
.flow-step h4 {
  color: #f3f4f6;
  font-size: 16px;
}
.flow-step p {
  font-size: 13px;
  color: #c3c6ce;
}
.project-filters button {
  color: #bdc0c7;
  font-size: 13px;
}
.project-filters button[aria-pressed="true"] {
  background: #05f29b12;
  border-color: #05f29b65;
  color: #05f29b;
  box-shadow: 0 0 16px #05f29b08;
}
.project-row {
  background: linear-gradient(145deg, #202024, #151518);
  border-color: #36363e;
  box-shadow: 0 8px 22px #0003;
}
.project-row:hover,
.project-row:focus-within {
  background: linear-gradient(145deg, #242429, #18181c);
}
.tone-green {
  --card-accent: #05f29b;
}
.tone-purple {
  --card-accent: #bda7ff;
}
.tone-blue {
  --card-accent: #7abbff;
}
.tone-gold {
  --card-accent: #efc565;
}
.project-visual {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      color-mix(in srgb, var(--card-accent) 20%, transparent),
      transparent 80%
    ),
    #121214;
  border-color: #33333b;
}
.project-visual svg {
  filter: drop-shadow(
    0 0 7px color-mix(in srgb, var(--card-accent) 30%, transparent)
  );
}
.project-title h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.project-title .eyebrow {
  font-size: 11px;
}
.project-description {
  font-size: 14px;
  color: #c4c7cf;
}
.project-tech {
  color: #aeb2bc;
  font-size: 11px;
  border-color: #33333b;
}
.network-nodes,
.mock-window,
.calendar {
  fill: #18181c;
}
.focus-card {
  background:
    radial-gradient(
      ellipse at top right,
      color-mix(in srgb, var(--card-accent) 10%, transparent),
      transparent 65%
    ),
    linear-gradient(135deg, #202024, #131316);
  border-color: #36363e;
  box-shadow: 0 8px 25px #0003;
}
.focus-card h3 {
  font-weight: 600;
}
.focus-card p {
  color: #c4c7cf;
  font-size: 14px;
}
.about-section {
  background: linear-gradient(180deg, #18181b, #111113);
  border-color: #2d2d32;
}
.about-grid h2 {
  font-weight: 600;
}
.about-copy > p {
  color: #c4c7cf;
  font-size: 15px;
}
.about-copy .large-copy {
  color: #eff0f3;
  font-size: 17px;
}
.portrait {
  background: #1f1f23;
  border-color: #3b3b42;
}
.portrait img {
  filter: none;
}
.toolkit {
  background: #111113;
  border-color: #34343b;
}
.contact-section {
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 100%, #05f29b12, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.email-link {
  text-shadow: 0 0 25px #05f29b22;
}
@media (max-width: 960px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .flagship {
    padding: 0 24px 24px;
  }
  .flagship-chrome {
    margin-inline: -24px;
  }
  .founder-brand {
    font-size: 23px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header {
    top: 8px;
    padding: 8px 12px 0;
    gap: 8px;
  }
  .hero {
    padding-block: 34px 22px;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .hero::before {
    top: -130px;
    height: calc(100% + 160px);
    background-size:
      auto,
      900px 650px;
  }
  .founder-brand {
    font-size: 23px;
    margin-bottom: 20px;
  }
  .founder-brand a {
    font-size: 13px;
  }
  .founder-brand .founder-brand-divider {
    margin-inline: 4px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-intro {
    font-size: 17px;
  }
  .hero-note {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .button,
  .quiet-link {
    font-size: 13px;
    padding-inline: 17px;
    min-height: 46px;
  }
  .actions {
    gap: 10px;
  }
  .flagship {
    padding: 0 18px 22px;
    gap: 22px;
  }
  .flagship-chrome {
    margin-inline: -18px;
    padding-inline: 15px;
    font-size: 11px;
  }
  .chrome-caption {
    display: none;
  }
  .flagship .feature-lead {
    font-size: 18px;
  }
  .flagship-copy > p:not(.eyebrow):not(.feature-lead) {
    font-size: 14px;
  }
  .project-description {
    font-size: 14px;
  }
  .project-filters button {
    font-size: 12px;
    padding-inline: 10px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .about-copy .large-copy {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button:hover::after {
    animation: none;
  }
}

/* Clip the full-bleed starfield at the page edge, including scrollbar width. */
main {
  overflow-x: clip;
}

/* Product constellation: luminous orbital deck with stationary navigation. */
.ecosystem-scene {
  aspect-ratio: 520 / 440;
  background: none;
  perspective: 900px;
}
.constellation-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.cosmic-nebula {
  position: absolute;
  inset: 10% -5% 0;
  background:
    radial-gradient(ellipse at 48% 50%, #05f29b29, transparent 49%),
    radial-gradient(ellipse at 75% 28%, #5a65ff16, transparent 45%);
  filter: blur(12px);
  pointer-events: none;
}
.ecosystem-scene .cosmos-core {
  top: 50%;
  width: 112px;
  height: 112px;
  background: radial-gradient(
    circle at 35% 24%,
    #286958,
    #08251e 50%,
    #06130f 75%
  );
  border: 1px solid #70ffd2a0;
  box-shadow:
    inset 0 2px 12px #b1ffe43b,
    inset 0 -12px 20px #0009,
    0 18px 35px #0008,
    0 0 65px #05f29b40;
}
.ecosystem-scene .cosmos-core::before {
  inset: -13px;
  border-color: #05f29b50;
  box-shadow: 0 0 25px #05f29b14;
}
.ecosystem-scene .cosmos-core::after {
  content: "";
  position: absolute;
  inset: -24px;
  border: 1px dashed #72ffcf30;
  border-radius: 50%;
  pointer-events: none;
}
.ecosystem-scene .cosmos-core img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 12px #05f29b99);
}
.ecosystem-scene .cosmos-core > span {
  bottom: -43px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #b0ffe2;
}
.ecosystem-scene .planet {
  gap: 10px;
  padding: 10px 12px 10px 9px;
  border: 1px solid color-mix(in srgb, var(--node-color, #05f29b) 32%, #24262c);
  border-radius: 14px;
  background: linear-gradient(135deg, #24282df5, #111519f5);
  box-shadow:
    0 12px 24px #0006,
    inset 0 1px 0 #ffffff0d;
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    translate 0.25s;
  min-width: 146px;
  z-index: 2;
}
.ecosystem-scene .planet-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: color-mix(in srgb, currentColor 9%, #111518);
  border: 1px solid color-mix(in srgb, currentColor 25%, transparent);
  box-shadow: inset 0 0 15px color-mix(in srgb, currentColor 6%, transparent);
}
.ecosystem-scene .planet-mark svg {
  width: 27px;
  height: 27px;
  filter: drop-shadow(
    0 0 5px color-mix(in srgb, currentColor 35%, transparent)
  );
}
.planet-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ecosystem-scene .planet-name {
  padding: 0;
  background: none;
  font-size: 13px;
  font-weight: 700;
  color: #f3f5f8;
  white-space: nowrap;
}
.planet-detail {
  font-size: 7px;
  letter-spacing: 0.1em;
  color: #a6b3c3;
  white-space: nowrap;
}
.planet-arrow {
  font-size: 13px;
  opacity: 0;
  margin-left: -5px;
  transition: opacity 0.2s;
}
.ecosystem-scene .planet:is(:hover, :focus-visible) {
  translate: 0 -5px;
  border-color: currentColor;
  box-shadow:
    0 16px 25px #0007,
    0 0 30px color-mix(in srgb, currentColor 15%, transparent);
}
.ecosystem-scene .planet:is(:hover, :focus-visible) .planet-arrow {
  opacity: 1;
}
.ecosystem-scene .p-labs {
  left: 26.5%;
  top: 20%;
}
.ecosystem-scene .p-insight {
  left: 79%;
  top: 30%;
}
.ecosystem-scene .p-base {
  left: 17%;
  top: 55%;
}
.ecosystem-scene .p-rank {
  left: 77%;
  top: 74%;
}
.ecosystem-scene .p-pen {
  left: 41.5%;
  top: 87%;
}
.signal-pulses {
  animation: constellation-signal 9s linear infinite;
}
@keyframes constellation-signal {
  to {
    stroke-dashoffset: -368;
  }
}
.ecosystem-scene:has(.planet:hover) .signal-lines {
  stroke-opacity: 0.65;
}
@media (max-width: 1100px) and (min-width: 701px) {
  .ecosystem-scene .planet {
    min-width: 122px;
    padding: 8px;
    gap: 7px;
  }
  .planet-detail {
    font-size: 6px;
  }
  .ecosystem-scene .planet-name {
    font-size: 11px;
  }
  .ecosystem-scene .planet-mark {
    width: 32px;
    height: 32px;
  }
  .ecosystem-scene .cosmos-core {
    width: 86px;
    height: 86px;
  }
}
@media (max-width: 700px) {
  .ecosystem-scene {
    aspect-ratio: 360 / 355;
    margin-top: 16px;
  }
  .ecosystem-scene .planet {
    min-width: 0;
    padding: 7px;
    gap: 6px;
    border-radius: 11px;
  }
  .ecosystem-scene .planet-mark {
    width: 33px;
    height: 33px;
    border-radius: 8px;
  }
  .ecosystem-scene .planet-mark svg {
    width: 24px;
    height: 24px;
  }
  .ecosystem-scene .planet-name {
    font-size: 11px;
  }
  .planet-detail {
    font-size: 5.5px;
    letter-spacing: 0.04em;
  }
  .planet-arrow {
    display: none;
  }
  .ecosystem-scene .cosmos-core {
    width: 82px;
    height: 82px;
  }
  .ecosystem-scene .cosmos-core img {
    width: 46px;
    height: 46px;
  }
  .ecosystem-scene .cosmos-core > span {
    font-size: 8px;
    bottom: -35px;
  }
  .ecosystem-scene .p-base {
    left: 19%;
  }
  .ecosystem-scene .p-insight {
    left: 77%;
  }
  .ecosystem-scene .p-rank {
    left: 78%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .signal-pulses {
    animation: none;
  }
  .ecosystem-scene .planet:is(:hover, :focus-visible) {
    translate: none;
  }
}

/* Flat surfaces; depth belongs to the cosmic illustration, not UI controls. */
.site-header {
  background: #101011;
  box-shadow: none;
  border-color: #ffffff12;
  border-radius: 8px;
}
.button {
  background: #05f29b;
  box-shadow: none;
  border: 1px solid transparent;
  border-radius: 6px;
}
.button:hover {
  background: #40ffb6;
  box-shadow: none;
}
.button::after {
  display: none;
}
.quiet-link,
.motion-toggle {
  background: transparent;
  box-shadow: none;
  border-color: #ffffff26;
  border-radius: 6px;
}
.quiet-link:hover,
.motion-toggle:hover {
  background: #ffffff06;
  box-shadow: none;
}
.flagship,
.project-row,
.project-row:hover,
.project-row:focus-within,
.focus-card,
.workflow,
.about-section,
.toolkit {
  background: #141416;
  box-shadow: none;
  border-color: #ffffff17;
  border-radius: 8px;
}
.flagship-chrome {
  background: transparent;
  border-color: #ffffff13;
}
.window-dots {
  visibility: hidden;
}
.project-row::before,
.project-row::after {
  display: none;
}
.project-row:hover,
.project-row:focus-within {
  border-color: #ffffff40;
}
.project-visual {
  background: #101012;
  border-color: #ffffff10;
}
.project-visual svg {
  filter: none;
}
.focus-card {
  background: transparent;
}
.project-filters button[aria-pressed="true"] {
  background: #05f29b0d;
  box-shadow: none;
}
.planet-detail,
.planet-arrow {
  display: none;
}
.ecosystem-scene .planet,
.ecosystem-scene .planet:is(:hover, :focus-visible) {
  min-width: 0;
  padding: 8px;
  gap: 8px;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.ecosystem-scene .planet-mark,
.ecosystem-scene .planet:is(:hover, :focus-visible) .planet-mark {
  width: 46px;
  height: 46px;
  background: #101212;
  border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  border-radius: 50%;
  box-shadow: none;
}
.ecosystem-scene .planet-mark svg {
  filter: none;
  width: 25px;
  height: 25px;
}
.ecosystem-scene .planet-name {
  font-size: 12px;
  font-weight: 600;
  color: #d9dfdf;
}
.ecosystem-scene .cosmos-core {
  background: #071b14;
  border-color: #05f29b45;
  box-shadow: 0 0 50px #05f29b18;
}
.ecosystem-scene .cosmos-core img {
  filter: none;
}
.ecosystem-scene .cosmos-core::after {
  display: none;
}
.ecosystem-scene .cosmos-core:hover {
  box-shadow: 0 0 60px #05f29b28;
}
.cosmic-nebula {
  opacity: 0.55;
}
.orbital-deck {
  opacity: 0.5;
}
@media (max-width: 700px) {
  .ecosystem-scene .planet-mark {
    width: 40px;
    height: 40px;
  }
  .ecosystem-scene .planet-name {
    font-size: 11px;
  }
}

.ecosystem-scene .planet-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.ecosystem-scene .p-rank .planet-mark,
.ecosystem-scene .p-labs .planet-mark {
  background: transparent;
  border-color: transparent;
}

/* Real orbital motion: the labels keep their orientation along the ellipse. */
.ecosystem-scene .planet {
  left: 0;
  top: 0;
  offset-path: ellipse(39% 34% at 50% 50%);
  offset-anchor: 50% 35%;
  offset-rotate: 0deg;
  transform: none;
  animation: planet-orbit 40s linear infinite;
}
.ecosystem-scene .p-insight {
  animation-delay: -2s;
}
.ecosystem-scene .p-rank {
  animation-delay: -10s;
}
.ecosystem-scene .p-pen {
  animation-delay: -18s;
}
.ecosystem-scene .p-base {
  animation-delay: -26s;
}
.ecosystem-scene .p-labs {
  animation-delay: -34s;
}
@keyframes planet-orbit {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}
.ecosystem-scene:focus-within .planet {
  animation-play-state: paused;
}
@media (hover: hover) {
  .ecosystem-scene:hover .planet {
    animation-play-state: paused;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ecosystem-scene .planet {
    animation-play-state: paused;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ecosystem-scene .p-insight {
    offset-distance: 5%;
  }
  .ecosystem-scene .p-rank {
    offset-distance: 25%;
  }
  .ecosystem-scene .p-pen {
    offset-distance: 45%;
  }
  .ecosystem-scene .p-base {
    offset-distance: 65%;
  }
  .ecosystem-scene .p-labs {
    offset-distance: 85%;
  }
}
/* The orbit presents expertise, with the founder at its centre. */
.ecosystem-scene .expertise-core > .expertise-monogram {
  position: static;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.07em;
  color: #f3f7f5;
}
.expertise-monogram span {
  color: #05f29b;
}
.ecosystem-scene .planet-name {
  white-space: normal;
  text-align: center;
  max-width: 110px;
  line-height: 1.25;
}
.ecosystem-scene .planet-copy {
  width: 110px;
  align-items: center;
}
.ecosystem-scene .p-rank .planet-mark,
.ecosystem-scene .p-labs .planet-mark {
  background: #101212;
  border-color: color-mix(in srgb, currentColor 35%, transparent);
}
@media (max-width: 700px) {
  .ecosystem-scene .planet-copy {
    width: 82px;
  }
  .ecosystem-scene .planet-name {
    max-width: 82px;
    font-size: 10px;
  }
  .ecosystem-scene .expertise-core > .expertise-monogram {
    font-size: 27px;
  }
  .ecosystem-scene .planet {
    offset-path: ellipse(39% 34% at 50% 50%);
  }
}

/* Expertise graph: fixed nodes, staggered signals, no orbiting labels. */
.expertise-graph {
  position: relative;
  width: 100%;
  height: 440px;
  background-image: radial-gradient(#ffffff12 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 95%,
    transparent
  );
}
.graph-edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.graph-branch {
  color: var(--branch-color);
}
.graph-track {
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.22;
  transition: opacity 0.25s;
}
.graph-packet {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 3 97;
  animation: graph-flow 8s linear infinite;
  animation-delay: var(--branch-delay);
}
.graph-branch circle {
  fill: currentColor;
}
@keyframes graph-flow {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.graph-root {
  position: absolute;
  left: 12.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 8px;
}
.graph-root strong {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid #05f29b70;
  background: #0d1512;
  border-radius: 18px;
  font-size: 24px;
  letter-spacing: -1.5px;
  font-weight: 700;
}
.graph-root strong span {
  color: #05f29b;
}
.graph-root small {
  position: absolute;
  top: 72px;
  width: 90px;
  text-align: center;
  color: #aab8b1;
  font-size: 11px;
}
.graph-node {
  position: absolute;
  left: 43%;
  right: 2%;
  top: var(--node-y);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  color: var(--node-color);
  border-radius: 6px;
}
.graph-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 40px;
  flex-shrink: 0;
  background: #101111;
}
.graph-icon svg {
  width: 27px;
  height: 27px;
}
.graph-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #101111;
  padding: 4px 0;
}
.graph-copy strong {
  color: #eef3f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.2s;
}
.graph-copy small {
  color: #9ba9a2;
  font-size: 11px;
  line-height: 1.4;
}
.graph-node:hover .graph-copy strong,
.graph-node:focus-visible .graph-copy strong {
  color: var(--node-color);
}
.expertise-graph:has(.node-ai:is(:hover, :focus-visible))
  .branch-ai
  .graph-track,
.expertise-graph:has(.node-quality:is(:hover, :focus-visible))
  .branch-quality
  .graph-track,
.expertise-graph:has(.node-web:is(:hover, :focus-visible))
  .branch-web
  .graph-track,
.expertise-graph:has(.node-seo:is(:hover, :focus-visible))
  .branch-seo
  .graph-track,
.expertise-graph:has(.node-research:is(:hover, :focus-visible))
  .branch-research
  .graph-track {
  opacity: 0.9;
}
@media (max-width: 1100px) {
  .graph-node {
    gap: 7px;
  }
  .graph-copy strong {
    font-size: 13px;
  }
  .graph-copy small {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  .expertise-graph {
    height: 400px;
    margin-block: 20px;
  }
  .graph-node {
    left: 38%;
    right: 0;
  }
  .graph-root {
    left: 13%;
  }
  .graph-root strong {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    font-size: 21px;
  }
  .graph-root small {
    top: 60px;
  }
  .graph-icon {
    width: 28px;
  }
  .graph-icon svg {
    width: 23px;
    height: 23px;
  }
  .graph-copy strong {
    font-size: 13px;
  }
  .graph-copy small {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .graph-packet {
    animation: none;
    stroke-dasharray: none;
    opacity: 0.15;
  }
}
.graph-icon,
.graph-copy {
  background: transparent;
}

/* Restored editorial sections: flat surfaces, compact rows and clear hierarchy. */
.restored-section {
  padding-block: 62px;
  border-top: 1px solid #ffffff12;
  scroll-margin-top: 100px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.story-copy > p {
  font-size: 15px;
  color: #bfc7c3;
  line-height: 1.8;
  margin-block: 18px;
}
.story-copy .text-link {
  color: #05f29b;
}
.story-stages {
  margin: 0;
  padding: 0;
  list-style: none;
}
.story-stages li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #ffffff14;
}
.story-stages li:first-child {
  padding-top: 0;
}
.stage-index {
  font-size: 12px;
  color: #05f29b;
  font-variant-numeric: tabular-nums;
}
.restored-section h3,
.background-grid h3 {
  font-size: 19px;
  font-weight: 600;
  color: #f0f4f2;
  margin: 0 0 10px;
}
.story-stages p,
.mission-item p,
.stack-group p,
.background-grid article > p:last-child {
  font-size: 14px;
  color: #b0bbb5;
  line-height: 1.75;
  margin: 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mission-item {
  padding: 25px 0;
  border-top: 1px solid #ffffff20;
}
.mission-item h3 {
  margin-top: 18px;
}
.mission-item small {
  display: block;
  color: #7fb69d;
  margin-top: 22px;
  font-size: 11px;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 56px;
}
.stack-group {
  padding-top: 20px;
  border-top: 1px solid #ffffff20;
}
.stack-group h3 {
  margin-top: 12px;
}
.stack-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
}
.stack-tools span {
  font-size: 14px;
  font-weight: 600;
  color: #e4ece7;
}
.background-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid #ffffff14;
  margin-top: 28px;
}
.background-grid h3 {
  font-size: 16px;
  line-height: 1.5;
}
.focus-details {
  margin: 20px 0 0;
  padding-left: 17px;
  color: #aebcb4;
  font-size: 12px;
  line-height: 1.8;
}
.focus-details li {
  margin-top: 7px;
}
.focus-details li::marker {
  color: #05f29b;
}
@media (max-width: 700px) {
  .restored-section {
    padding-block: 40px;
    scroll-margin-top: 130px;
  }
  .story-layout,
  .mission-grid,
  .stack-grid,
  .background-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .mission-item {
    padding-bottom: 0;
  }
  .story-copy > p {
    font-size: 14px;
  }
  .restored-section h3 {
    font-size: 18px;
  }
}
.section-index { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-block: 18px; border-bottom: 1px solid #ffffff12; }
.section-index a { font-size: 12px; color: #adb9b2; padding-block: 8px; }
.section-index a:hover { color: #05f29b; }
@media (max-width: 700px) { .section-index { gap: 4px 20px; } .section-index a { min-height: 44px; display: flex; align-items: center; } }
