body {
  background: var(--bgColor-default);
}

.home-page {
  min-width: 320px;
  overflow: clip;
  background: var(--bgColor-default);
  color: var(--fgColor-default);
}

.site-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(24px, 4.25vw, 72px);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--borderColor-default);
  background: color-mix(in srgb, var(--bgColor-default) 88%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.site-logo {
  display: inline-flex;
  justify-self: start;
}

.site-logo img {
  display: block;
  width: 112px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 42px);
  color: var(--fgColor-muted);
  font-size: 14px;
  font-weight: 520;
}

.site-header nav a,
.header-contact,
.site-footer a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--fgColor-default);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  font-size: 14px;
  font-weight: 590;
}

.header-contact span {
  color: var(--fgColor-accent);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--borderColor-default);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--borderColor-muted) 28%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--borderColor-muted) 22%, transparent) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent 4%, black 34%, black 82%, transparent);
  opacity: 0.45;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  min-height: min(800px, calc(100svh - 82px));
  padding-block: clamp(88px, 10vw, 150px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.eyebrow,
.section-index,
.hero-meta,
.product-window figcaption,
.agent-proof header,
.agent-proof footer,
.current-work > span,
.founder-portrait figcaption,
.site-footer {
  font-family: var(--font-geist-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--fgColor-accent);
  font-size: 12px;
  line-height: 1.4;
}

.eyebrow::before {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin: 0 14px 4px 0;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 1040px;
  margin: 32px 0 0;
  font-size: clamp(4.1rem, 7.75vw, 8.25rem);
  font-weight: 510;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span {
  color: var(--fgColor-accent);
  font-weight: 480;
}

.hero-summary {
  max-width: 680px;
  margin: 42px 0 0;
  color: var(--fgColor-muted);
  font-size: clamp(18px, 1.75vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--borderColor-muted);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  border-color: var(--borderColor-accent-emphasis);
  background: var(--bgColor-accent-emphasis);
  color: var(--fgColor-default);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--fgColor-accent);
  background: var(--fgColor-accent);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--borderColor-default);
  background: var(--bgColor-muted);
}

.button span {
  margin-left: 24px;
}

.hero-signal {
  position: absolute;
  z-index: 1;
  right: clamp(-210px, -10vw, -80px);
  bottom: -120px;
  width: min(52vw, 750px);
  aspect-ratio: 1;
  container-type: inline-size;
}

.signal-static-mark,
.signal-field {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 52%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.signal-static-mark {
  transition: opacity 260ms ease;
}

.signal-field {
  --field-x: 0px;
  --field-y: 0px;

  pointer-events: none;
  transform: translate3d(
    calc(-50% + var(--field-x)),
    calc(-50% + var(--field-y)),
    0
  );
  opacity: 0;
  transition: opacity 220ms ease;
  will-change: transform;
}

.signal-field svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: center;
  animation: signal-breathe 20s ease-in-out infinite;
}

.hero-signal.is-live .signal-static-mark {
  opacity: 0;
}

.hero-signal.is-live .signal-field {
  opacity: 0.9;
}

.signal-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--borderColor-muted);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-orbit-outer {
  width: 100%;
  height: 100%;
}

.signal-orbit-inner {
  width: 76%;
  height: 76%;
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  background: var(--borderColor-muted);
  content: "";
}

.signal-orbit::before {
  top: 50%;
  left: -9%;
  width: 118%;
  height: 1px;
}

.signal-orbit::after {
  top: -9%;
  left: 50%;
  width: 1px;
  height: 118%;
}

.signal-node {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--bgColor-default);
  border-radius: 50%;
  background: var(--fgColor-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--fgColor-accent) 75%, transparent);
  transform: translateY(-50%);
}

.signal-node::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 48cqw;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    color-mix(in srgb, var(--fgColor-accent) 55%, transparent)
  );
  content: "";
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  animation: signal-transmit 12s ease-out infinite;
}

.signal-node-path {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  animation: signal-node-orbit 44s linear infinite;
}

.signal-node-path-outer {
  --orbit-start: -34deg;

  inset: 0;
}

.signal-node-path-inner {
  --orbit-start: 112deg;

  inset: 12%;
  animation-duration: 31s;
  animation-direction: reverse;
}

.signal-node-path-inner .signal-node::after {
  width: 36cqw;
  animation-delay: -5.5s;
}

@keyframes signal-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  50% {
    transform: scale(1.012) rotate(0.8deg);
  }
}

@keyframes signal-node-orbit {
  from {
    transform: rotate(var(--orbit-start));
  }

  to {
    transform: rotate(calc(var(--orbit-start) + 360deg));
  }
}

@keyframes signal-transmit {
  0%,
  76%,
  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }

  81% {
    opacity: 0.72;
    transform: translateY(-50%) scaleX(1);
  }

  89% {
    opacity: 0;
    transform: translateY(-50%) scaleX(1);
  }
}

.hero-meta {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  color: var(--fgColor-muted);
  font-size: 10px;
}

.section {
  padding-block: clamp(96px, 11vw, 172px);
  border-bottom: 1px solid var(--borderColor-default);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.33fr) minmax(0, 1fr);
  gap: 48px;
}

.section-heading > div {
  max-width: 900px;
}

.section-heading h2,
.product-heading h2,
.field-intro h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5.5vw, 5.7rem);
  font-weight: 480;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > div > p {
  max-width: 750px;
  margin: 30px 0 0;
  color: var(--fgColor-muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(72px, 8vw, 112px);
  border-top: 1px solid var(--borderColor-muted);
  border-bottom: 1px solid var(--borderColor-muted);
}

.principles-grid article {
  min-height: 350px;
  padding: 28px clamp(24px, 3vw, 44px) 38px;
}

.principles-grid article + article {
  border-left: 1px solid var(--borderColor-muted);
}

.principles-grid article > span {
  color: var(--fgColor-accent);
  font-family: var(--font-geist-mono);
  font-size: 11px;
}

.principles-grid h3 {
  margin: 124px 0 18px;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 540;
  letter-spacing: -0.04em;
}

.principles-grid p {
  max-width: 370px;
  margin: 0;
  color: var(--fgColor-muted);
  font-size: 16px;
  line-height: 1.65;
}

.product {
  overflow: hidden;
  padding-bottom: clamp(148px, 15vw, 228px);
  background: var(--bgColor-muted);
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(64px, 9vw, 144px);
}

.product-name {
  margin: 36px 0 14px;
  color: var(--fgColor-muted);
  font-family: var(--font-geist-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-summary > p {
  margin: 0;
  color: var(--fgColor-muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin-top: 34px;
}

.product-links a {
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 620;
}

.product-links span {
  margin-left: 16px;
  color: var(--fgColor-accent);
}

.product-stage {
  position: relative;
  margin-top: clamp(72px, 8vw, 116px);
}

.product-window {
  width: calc(100% - clamp(80px, 8vw, 130px));
  margin: 0;
  border: 1px solid var(--borderColor-default);
  background: var(--bgColor-default);
  box-shadow: 0 28px 90px color-mix(in srgb, var(--bgColor-default) 60%, transparent);
}

.product-window figcaption {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--borderColor-default);
  color: var(--fgColor-muted);
  font-size: 9px;
}

.product-window img {
  display: block;
  width: 100%;
  height: auto;
}

.agent-proof {
  position: absolute;
  right: 0;
  bottom: clamp(-112px, -8vw, -78px);
  width: min(410px, 38%);
  padding: 24px;
  border: 1px solid var(--borderColor-default);
  background: color-mix(in srgb, var(--bgColor-default) 96%, transparent);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--bgColor-default) 72%, transparent);
  backdrop-filter: blur(16px);
}

.agent-proof header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--borderColor-muted);
  color: var(--fgColor-muted);
  font-size: 9px;
}

.agent-proof header span:last-child,
.agent-proof footer {
  color: var(--fgColor-accent);
}

.agent-question {
  margin: 28px 0 34px;
  color: var(--fgColor-default);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.agent-metric {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-bottom: 22px;
}

.agent-metric strong {
  color: var(--fgColor-accent);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 470;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.agent-metric span {
  max-width: 90px;
  color: var(--fgColor-muted);
  font-size: 12px;
  line-height: 1.25;
}

.agent-proof > p:not(.agent-question) {
  margin: 0;
  color: var(--fgColor-muted);
  font-size: 13px;
  line-height: 1.6;
}

.agent-proof ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.agent-proof li {
  padding: 6px 8px;
  border: 1px solid var(--borderColor-muted);
  color: var(--fgColor-muted);
  font-family: var(--font-geist-mono);
  font-size: 9px;
}

.agent-proof footer {
  padding-top: 18px;
  border-top: 1px solid var(--borderColor-muted);
  font-size: 9px;
}

.field-work {
  background: var(--bgColor-default);
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(72px, 11vw, 176px);
}

.field-intro h2 {
  margin-top: 36px;
  font-size: clamp(2.7rem, 4.9vw, 5.15rem);
}

.field-content {
  padding-top: 48px;
}

.field-lead {
  margin: 0;
  color: var(--fgColor-default);
  font-size: clamp(21px, 2.15vw, 31px);
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.current-work {
  margin-top: clamp(52px, 6vw, 82px);
  padding: 28px 30px 34px;
  border: 1px solid var(--borderColor-default);
  border-top: 3px solid var(--borderColor-accent-emphasis);
  background: var(--bgColor-muted);
}

.current-work > span {
  color: var(--fgColor-accent);
  font-size: 10px;
}

.current-work h3 {
  margin: 58px 0 20px;
  font-size: clamp(26px, 2.75vw, 40px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.current-work p,
.field-boundary {
  margin: 0;
  color: var(--fgColor-muted);
  font-size: 15px;
  line-height: 1.65;
}

.field-boundary {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 1px solid var(--borderColor-muted);
}

.about {
  padding-block: clamp(72px, 9vw, 140px);
  background: var(--bgColor-muted);
  color: var(--fgColor-default);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(64px, 10vw, 164px);
}

.founder-portrait {
  margin: 0;
}

.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 27%;
  filter: contrast(1.04);
}

.founder-portrait figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  color: var(--fgColor-muted);
  font-size: 10px;
}

.about .section-index {
  color: var(--fgColor-accent);
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 {
  margin-top: 34px;
}

.about-copy > p:not(.section-index) {
  max-width: 650px;
  color: var(--fgColor-muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.about-copy .about-lead {
  margin-top: 42px;
  color: var(--fgColor-default);
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.about-copy > a {
  display: inline-flex;
  gap: 30px;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 620;
}

.contact {
  padding-block: clamp(96px, 12vw, 180px);
  border-bottom: 1px solid var(--borderColor-default);
}

.contact h2 {
  max-width: 1050px;
  margin-top: 38px;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

.contact a {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(64px, 8vw, 112px);
  padding-block: 26px;
  border-top: 1px solid var(--borderColor-muted);
  border-bottom: 1px solid var(--borderColor-muted);
  color: var(--fgColor-accent);
  font-size: clamp(22px, 2.5vw, 38px);
  letter-spacing: -0.035em;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  border-color: var(--borderColor-accent-emphasis);
  color: var(--fgColor-default);
}

.site-footer {
  padding-block: 36px;
  color: var(--fgColor-muted);
  font-size: 10px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-inner > img {
  width: 92px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > div {
  display: flex;
  justify-self: end;
  gap: 28px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    font-size: clamp(4rem, 11.5vw, 7.4rem);
  }

  .hero-signal {
    right: -240px;
    bottom: -130px;
    width: 620px;
    opacity: 0.58;
  }

  .principles-grid article {
    min-height: 310px;
  }

  .principles-grid h3 {
    margin-top: 84px;
  }

  .product-heading,
  .field-layout {
    gap: 64px;
  }

  .product-window {
    width: calc(100% - 54px);
  }

  .agent-proof {
    width: min(380px, 43%);
  }

  .about-grid {
    gap: 64px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding-inline: 20px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .site-header nav {
    display: none;
  }

  .site-logo img {
    width: 96px;
  }

  .header-contact {
    font-size: 13px;
  }

  .hero-grid {
    min-height: 690px;
    padding-block: 86px 122px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(3.65rem, 17.5vw, 5.6rem);
    line-height: 0.9;
  }

  .hero-summary {
    margin-top: 34px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-signal {
    right: -190px;
    bottom: -80px;
    width: 430px;
    opacity: 0.3;
  }

  .hero-meta {
    gap: 20px;
  }

  .hero-meta span:last-child {
    text-align: right;
  }

  .section-heading,
  .product-heading,
  .field-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .product-heading {
    gap: 34px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .principles-grid article {
    min-height: 0;
    padding: 26px 0 36px;
  }

  .principles-grid article + article {
    border-top: 1px solid var(--borderColor-muted);
    border-left: 0;
  }

  .principles-grid h3 {
    margin-top: 62px;
  }

  .product {
    padding-bottom: 96px;
  }

  .product-heading {
    align-items: start;
  }

  .product-summary {
    max-width: 610px;
  }

  .product-stage {
    display: grid;
    gap: 14px;
    margin-top: 64px;
  }

  .product-window {
    width: 100%;
  }

  .product-window figcaption span:last-child {
    display: none;
  }

  .agent-proof {
    position: static;
    width: 100%;
  }

  .field-layout {
    gap: 42px;
  }

  .field-intro h2 {
    font-size: clamp(2.8rem, 13.5vw, 4.4rem);
  }

  .field-content {
    padding-top: 0;
  }

  .current-work {
    padding-inline: 22px;
  }

  .about-grid {
    gap: 58px;
  }

  .founder-portrait figcaption {
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner > p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header nav a,
  .header-contact,
  .site-footer a,
  .button,
  .contact a {
    transition: none;
  }

  .signal-field svg,
  .signal-node-path,
  .signal-node::after {
    animation: none;
  }
}
