@import url("/chat.css");
@import url("/eva-story.css");
@import url("/product-story.css");

@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-81401990.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-024F, U+2000-206F, U+20AC, U+2190-21FF;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-f00fa027.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0370-03FF;
}
:root {
  --paper: #f8f8f4;
  --ink: #252c2d;
  /* Small secondary text: >= 5.35:1 on every pastel project surface. */
  --muted: #53605f;
  --cyan: #50c1df;
  --eva-accent: #c00080;
  --eva-surface: #f5e7f0;
  --line: #d9dfdc;
  --radius: 5px;
  --header-height: 112px;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #14718e;
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
::selection {
  background: var(--cyan);
  color: var(--ink);
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  line-height: 1.75;
}
button {
  font: inherit;
}
.wrap {
  max-width: 1440px;
  width: calc(100% - 112px);
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  line-height: 1.6;
}
/* Full-width frosted surface; the navigation keeps its original alignment.
   Without JS or backdrop-filter, the tinted fallback remains readable. */
.header-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
}
.header-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgb(248 248 244 / 96%);
  box-shadow:
    0 8px 28px rgb(25 45 47 / 6%),
    inset 0 -1px 0 rgb(255 255 255 / 55%);
  opacity: 1;
  transition: opacity 300ms ease;
}
.header-shell.is-at-top:before {
  opacity: 0;
}
@supports (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .header-shell:before {
    background:
      linear-gradient(180deg, rgb(255 255 255 / 24%), rgb(255 255 255 / 4%)),
      rgb(248 248 244 / 66%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
  }
}
@media (prefers-reduced-transparency: reduce) {
  .header-shell:before {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
@media (forced-colors: active) {
  .header-shell:before {
    background: Canvas;
    border-bottom: 1px solid CanvasText;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.header-shell:not(.is-at-top) .site-header {
  border-bottom-color: transparent;
}
.site-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: border-color 300ms ease;
}
.company-logo {
  width: 158px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 0.875rem;
  font-weight: 550;
  margin-left: auto;
  margin-right: 74px;
}
.site-header nav a,
.hello-link,
.text-link {
  min-height: 44px;
  position: relative;
}
.site-header > nav a {
  display: flex;
  align-items: center;
}
.site-header nav a:after,
.text-link:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.site-header nav a:hover:after,
.text-link:hover:after {
  transform: scaleX(1);
}
.hello-link {
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hello-link > span {
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.hello-link:hover > span {
  background: var(--cyan);
  transform: rotate(45deg);
}
.skip-link {
  position: absolute;
  top: -90px;
  left: 20px;
  z-index: 30;
  background: var(--ink);
  color: white;
  padding: 14px;
}
.skip-link:focus {
  top: 10px;
}
.hero {
  min-height: 735px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 25px;
  padding-block: 72px 66px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #5f6a6b;
}
.tiny-cross {
  font-size: 24px;
  font-weight: 400;
  line-height: 12px;
  color: #2495b6;
}
.hero h1 {
  font-size: clamp(64px, 7.3vw, 112px);
  font-weight: 500;
  letter-spacing: -0.065em;
  word-spacing: 0.06em;
  line-height: 0.98;
}
.cyan-word {
  color: #2399bb;
  position: relative;
  display: inline-block;
}
.cyan-word:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: -4px;
  bottom: 1px;
  height: 8px;
  background: var(--cyan);
  opacity: 0.2;
  transform: rotate(-2deg);
}
.hero-description {
  max-width: 400px;
  font-size: 16px;
  color: var(--muted);
  margin-top: 32px;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 50px;
  padding: 15px 21px;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 650;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-dark {
  background: var(--ink);
  color: var(--paper);
}
.button-dark:hover {
  background: #14718e;
  transform: translateY(-2px);
}
.button > span {
  font-size: 19px;
  line-height: 1;
}
.text-link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.constellation {
  position: relative;
  width: 100%;
  aspect-ratio: 600/640;
  max-width: 620px;
  isolation: isolate;
}
.constellation:before {
  content: "";
  position: absolute;
  inset: 17% 12% 23% 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, #eaf0e780, transparent 70%);
  z-index: -1;
}
.connections {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: visible;
  pointer-events: none;
}
.hub-core {
  position: absolute;
  top: 46.875%;
  left: 51.6667%;
  width: 34%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.hub-core img {
  width: 58%;
  max-width: 120px;
}
.hub-core > span {
  font-size: 0.875rem;
  max-width: 88%;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}
.orbit-node {
  position: absolute;
  width: 24%;
  min-width: 92px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  outline-offset: 5px;
  transition: color 0.25s ease;
}
.orbit-node:hover,
.orbit-node:focus-visible {
  color: var(--dispatch-color);
}
.node-symbol {
  display: grid;
  place-items: center;
  width: 100%;
  height: 66px;
}
/* Drag translation is separate from the node's fixed radial position. */
.tether-drag {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tether-drag > .orbit-node,
.tether-drag > .hub-core {
  pointer-events: auto;
}
.has-tethers .orbit-node,
.has-tethers .hub-core {
  cursor: grab;
  touch-action: pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}
.has-tethers .orbit-node img,
.has-tethers .hub-core img {
  -webkit-user-drag: none;
}
.tether-drag.is-held {
  z-index: 2;
  will-change: transform;
}
.tether-drag.is-held .orbit-node,
.tether-drag.is-held .hub-core {
  cursor: grabbing;
  color: var(--dispatch-color);
}
.hub-core:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.orbit-proaudit {
  top: 13.4375%;
  left: 30.6667%;
}
.orbit-entri {
  top: 24.375%;
  left: 76.5%;
}
.orbit-donkeyhost {
  top: 45.3125%;
  left: 12%;
}
.orbit-donkeydocs {
  top: 62.8125%;
  left: 86%;
}
.orbit-chatbridge {
  top: 77.34375%;
  left: 26%;
}
.orbit-eva {
  top: 84.375%;
  left: 63.5%;
}
.orbit-eva:is(:hover, :focus-visible) {
  outline-color: var(--eva-accent);
}
.node-name {
  font-size: 0.9375rem;
  font-weight: 550;
  line-height: 1.3;
  white-space: nowrap;
}
.project-mark {
  position: relative;
  z-index: 1;
}
.orbit-node .project-mark {
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.docs-mark.node-mark {
  width: 39px;
}
.chatbridge-lockup,
.eva-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07152c;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}
.chatbridge-lockup {
  flex-direction: column;
  gap: 14px;
  font-size: clamp(30px, 3vw, 38px);
}
.chatbridge-lockup > img {
  width: 116px;
  height: auto;
}
.chatbridge-lockup > span > span {
  color: #007f98;
}
.eva-lockup {
  gap: 14px;
  font-size: 64px;
  color: #341329;
}
.eva-lockup > img {
  width: 80px;
  height: auto;
}
.eva-lockup > span > span {
  margin-left: 7px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--eva-accent);
}
.chatbridge-mark.node-mark {
  width: 53px;
  height: auto;
}
.eva-mark.node-mark {
  width: 36px;
  height: auto;
}
.audit-mark.node-mark {
  width: 63px;
}
.entri-mark.node-mark {
  width: 103px;
}
.host-mark.node-mark {
  width: 85px;
  max-height: none;
  transform: rotate(-8deg);
}
.docs-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.065em;
  position: relative;
  z-index: 1;
}
.docs-lockup > span > span {
  font-weight: 400;
}
.docs-lockup small {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.docs-lockup.node-mark {
  font-size: 18px;
  gap: 7px;
}
.docs-lockup.node-mark img {
  width: 28px;
}
.docs-lockup.node-mark small {
  font-size: 0.875rem;
}
.constellation-note {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: #26a6c6;
  border-radius: 50%;
}
.family-index {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}
.index-caption {
  grid-row: span 2;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.family-index > a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 600;
}
.index-number {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}
.family-index > a > span:last-child {
  margin-left: auto;
  color: var(--muted);
  font-size: 17px;
  transition: transform 0.25s;
}
.family-index > a:hover > span:last-child {
  transform: translate(2px, -2px);
  color: #187d98;
}
.family-section {
  padding-block: 115px 110px;
  scroll-margin-top: 32px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 44px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
  color: #586862;
}
.section-heading h2,
.approach-section h2,
.contact-section h2 {
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.section-heading > p {
  max-width: 295px;
  color: var(--muted);
  font-size: 1rem;
  padding-bottom: 4px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project {
  padding: 28px 34px 25px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.project-proaudit {
  background: #e8eff3;
}
.project-entri {
  background: #e8efe4;
}
.project-donkeyhost {
  background: #efeada;
}
.project-donkeydocs {
  background: #e8e8f0;
}
.project-chatbridge {
  background: #e4eeed;
}
.project-eva {
  background: var(--eva-surface);
}
.project-eva .project-name > span {
  color: var(--eva-accent);
  border-color: #c0008040;
}
.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.project-topline > span:last-child {
  font-variant-numeric: tabular-nums;
  opacity: 1;
}
.project-art {
  height: 225px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.project-art .ring-two {
  width: 245px;
  height: 245px;
  border-style: dashed;
  opacity: 0.7;
}
.project-art .audit-mark {
  width: 128px;
  transition: transform 0.6s;
}
.project-art .entri-mark {
  width: 230px;
  transition: transform 0.6s;
}
.project-art .host-mark {
  width: 240px;
  height: 240px;
  object-fit: contain;
  transform: rotate(-10deg);
  transition: transform 0.6s;
}
.project:hover .audit-mark,
.project:hover .entri-mark {
  transform: translateY(-4px);
}
.project:hover .host-mark {
  transform: translate(8px, -7px) rotate(-5deg);
}
.project-name {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.project-name > span {
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #a9b7ba77;
  padding: 3px 7px;
  border-radius: 30px;
}
.project h3 {
  font-size: clamp(25px, 2.35vw, 35px);
  line-height: 1.2;
  font-weight: 550;
  letter-spacing: -0.045em;
}
.project-copy > p {
  max-width: 435px;
  font-size: 1rem;
  color: #5d6969;
  margin-top: 16px;
  min-height: 0;
}
.project-copy {
  flex: 1;
}
.project-bottom {
  border-top: 1px solid #77888b38;
  margin-top: 29px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.project-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.875rem;
  font-weight: 650;
}
.round-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #96a3a770;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  transition:
    background 0.25s,
    transform 0.25s;
}
.project-link:hover .round-arrow {
  background: var(--ink);
  color: white;
  transform: rotate(45deg);
}
.project-bottom > span {
  font-size: 0.75rem;
  color: var(--muted);
}
.approach-section {
  /* Near-black surface with cyan accents sampled from the Proadco logo. */
  --approach-surface: #010409;
  --approach-muted: #c8c9cb;
  --approach-accent: #58c6ea;
  background: var(--approach-surface);
  color: var(--paper);
  padding: 104px 0 98px;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.approach-section .eyebrow {
  font-size: 0.875rem;
  color: var(--approach-muted);
  margin-bottom: 34px;
}
.approach-section h2 {
  font-size: clamp(36px, 3.7vw, 56px);
  line-height: 1.2;
}
.motto-attribution {
  margin-top: 22px;
  color: var(--approach-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.015em;
}
.approach-signature {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--approach-muted);
}
.approach-copy {
  padding-top: 48px;
}
.approach-copy .lead {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #e8e8e9;
}
.approach-copy > p + p {
  color: var(--approach-muted);
  margin-top: 21px;
  font-size: 1rem;
}
.services {
  margin-top: 37px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.services > div {
  border-top: 1px solid #77787a;
  padding-top: 20px;
}
.service-number {
  font-size: 0.875rem;
  color: var(--approach-accent);
}
.services h3 {
  font-size: 1rem;
  font-weight: 550;
  margin-top: 11px;
  line-height: 1.45;
  max-width: 160px;
}
.services p {
  font-size: 1rem;
  color: var(--approach-muted);
  margin-top: 11px;
  line-height: 1.8;
}
.contact-section {
  padding-block: 110px;
}
.contact-section > .eyebrow {
  color: #586862;
  margin-bottom: 30px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12%;
}
.contact-section h2 {
  font-size: clamp(35px, 3.8vw, 57px);
}
.contact-grid > div > p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  margin-top: 23px;
}
.contact-grid .button {
  margin-top: 30px;
}
.email-note {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-left: 15px;
}
.contact-details {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.contact-kicker {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.contact-email {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.045em;
  border-bottom: 1px solid #a9b9b5;
  padding-bottom: 8px;
}
.contact-details > a + a {
  font-size: 14px;
  color: #5f6e6b;
  margin-top: 20px;
}
.contact-details > p {
  font-size: 1rem;
  margin-top: 8px !important;
}
.contact-flourish {
  font-size: 112px;
  font-weight: 450;
  letter-spacing: -0.09em;
  line-height: 1;
  color: #e0e5df;
  margin-top: 20px;
  align-self: flex-end;
}
.contact-flourish > span {
  color: var(--cyan);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 45px;
  align-items: center;
}
.site-footer .company-logo {
  width: 125px;
}
.site-footer > p {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: right;
}
.site-footer > div {
  grid-column: 1/-1;
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--muted);
}
.site-footer > div > span {
  margin-right: auto;
}
.legal-page,
.not-found {
  padding-block: 100px;
  max-width: 860px;
}
.legal-page h1,
.not-found h1 {
  font-size: clamp(45px, 6vw, 75px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.1;
  margin: 24px 0 32px;
}
.legal-page .lead {
  font-size: 20px;
}
.legal-page h2 {
  font-size: 23px;
  font-weight: 550;
  margin: 36px 0 12px;
  letter-spacing: -0.03em;
}
.legal-page p {
  color: var(--muted);
  font-size: 1rem;
}
.legal-page p a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-review {
  margin-block: 38px 25px;
}
.not-found p {
  margin-bottom: 30px;
}
.not-found .text-link {
  margin-left: 28px;
}
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 1600px) {
  .hero {
    min-height: 810px;
  }
  .constellation {
    margin-left: auto;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .site-header nav {
    margin-right: 25px;
    gap: 25px;
  }
  .hero {
    min-height: 650px;
    gap: 10px;
  }
  .hero h1 {
    font-size: 83px;
  }
  .hero .eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 340px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 0.875rem;
  }
  .node-name {
    font-size: 0.875rem;
  }
  .docs-lockup.node-mark {
    font-size: 14px;
    gap: 5px;
  }
  .docs-lockup.node-mark img {
    width: 23px;
  }
  .entri-mark.node-mark {
    width: 88px;
  }
  .host-mark.node-mark {
    width: 76px;
  }
  .hub-core > span {
    font-size: 0.875rem;
  }
  .family-index {
    gap: 22px;
  }
  .family-index > a {
    font-size: 0.875rem;
    gap: 8px;
  }
  .project {
    padding: 23px 25px;
  }
  .project-art {
    height: 190px;
  }
  .project-art .host-mark {
    height: 205px;
    width: 205px;
  }
  .project h3 {
    font-size: 27px;
  }
  .project-copy > p {
    min-height: 0;
  }
  .contact-grid {
    gap: 7%;
  }
  .contact-email {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 88px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    gap: 15px;
  }
  .company-logo {
    width: 136px;
  }
  .site-header nav {
    gap: 17px;
    margin: 0;
    font-size: 0.875rem;
  }
  .hello-link {
    font-size: 0.875rem;
    gap: 8px;
  }
  .hello-link > span {
    width: 27px;
    height: 27px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 45px 25px;
    gap: 15px;
  }
  .hero h1 {
    font-size: clamp(65px, 13vw, 94px);
  }
  .hero h1 br:nth-of-type(2) {
    display: none;
  }
  .hero h1 .cyan-word {
    margin-left: 0.12em;
  }
  .hero .eyebrow {
    font-size: 0.875rem;
    margin-bottom: 27px;
  }
  .hero-description {
    max-width: 410px;
    font-size: 1rem;
    margin-top: 26px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 22px;
  }
  .constellation {
    max-width: 500px;
    margin: 14px auto 0;
  }
  .hub-core > span {
    font-size: 0.875rem;
  }
  .docs-lockup.node-mark {
    font-size: 16px;
  }
  .family-index {
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    padding-block: 20px;
  }
  .index-caption {
    grid-column: 1/-1;
    display: none;
  }
  .family-index > a {
    font-size: 0.875rem;
  }
  .family-section {
    padding-block: 70px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading .eyebrow {
    font-size: 0.875rem;
    margin-bottom: 17px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading > p {
    max-width: 350px;
    font-size: 1rem;
    margin-top: 21px;
  }
  .project-grid {
    gap: 17px;
  }
  .project {
    padding: 20px;
  }
  .project-art {
    height: 175px;
  }
  .project-art .audit-mark {
    width: 85px;
  }
  .project-art .entri-mark {
    width: 160px;
  }
  .project-art .host-mark {
    width: 190px;
    height: 190px;
  }
  .project-art .ring-two {
    width: 175px;
    height: 175px;
  }
  .project-art .docs-lockup {
    font-size: 20px;
    gap: 7px;
  }
  .project-art .docs-lockup img {
    width: 30px;
  }
  .project-art .docs-lockup small {
    font-size: 0.875rem;
  }
  .project-topline {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
  .project h3 {
    font-size: 24px;
  }
  .project h3 br {
    display: none;
  }
  .project-copy > p {
    font-size: 1rem;
    min-height: 0;
  }
  .project-name {
    font-size: 0.875rem;
    gap: 5px;
  }
  .project-name > span {
    font-size: 0.875rem;
    padding: 2px 5px;
  }
  .project-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding-top: 15px;
  }
  .project-link {
    justify-content: space-between;
    width: 100%;
    font-size: 0.875rem;
  }
  .approach-section {
    padding-block: 70px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .approach-section h2 {
    font-size: 42px;
  }
  .approach-section h2 br:nth-of-type(1) {
    display: none;
  }
  .approach-section .eyebrow {
    margin-bottom: 24px;
  }
  .approach-signature {
    display: none;
  }
  .approach-copy {
    padding-top: 6px;
  }
  .approach-copy .lead {
    font-size: 19px;
    max-width: 540px;
  }
  .approach-copy > p + p {
    font-size: 1rem;
  }
  .services {
    gap: 30px;
    margin-top: 28px;
  }
  .services h3 {
    max-width: 200px;
    font-size: 1rem;
  }
  .services p {
    font-size: 1rem;
    max-width: 250px;
  }
  .contact-section {
    padding-block: 68px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-section h2 {
    font-size: 40px;
  }
  .contact-grid > div > p {
    font-size: 1rem;
  }
  .contact-details {
    border-top: 1px solid var(--line);
    padding-top: 26px;
    min-height: 185px;
  }
  .contact-flourish {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 105px;
    z-index: -1;
  }
  .site-footer {
    padding-block: 28px;
    gap: 20px;
  }
  .site-footer > p {
    font-size: 0.875rem;
    max-width: 160px;
    justify-self: end;
  }
  .site-footer > div {
    font-size: 0.875rem;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .site-header nav {
    display: none;
  }
  .site-header .company-logo {
    width: 145px;
  }
  .hero h1 {
    font-size: clamp(56px, 17.8vw, 71px);
  }
  .hero h1 br:nth-of-type(2) {
    display: block;
  }
  .hero h1 .cyan-word {
    margin-left: 0;
  }
  .hero .eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.055em;
    gap: 8px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 0.875rem;
    gap: 6px;
  }
  .hero-actions .button {
    font-size: 0.875rem;
    gap: 20px;
    padding: 14px 16px;
  }
  .constellation {
    margin-top: 23px;
  }
  .hub-core {
    gap: 5px;
  }
  .hub-core img {
    width: 49%;
  }
  .hub-core > span {
    font-size: 0.875rem;
  }
  .orbit-node {
    gap: 5px;
  }
  .node-symbol {
    height: 45px;
  }
  .audit-mark.node-mark {
    width: 47px;
  }
  .entri-mark.node-mark {
    width: 72px;
  }
  .host-mark.node-mark {
    width: 65px;
  }
  .docs-mark.node-mark {
    width: 30px;
  }
  .chatbridge-mark.node-mark {
    width: 40px;
  }
  .eva-mark.node-mark {
    width: 29px;
  }
  .docs-lockup.node-mark {
    font-size: 0.875rem;
    gap: 4px;
  }
  .docs-lockup.node-mark img {
    width: 19px;
  }
  .docs-lockup.node-mark small {
    font-size: 0.875rem;
  }
  .constellation-note {
    top: calc(100% + 12px);
    bottom: auto;
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .hero {
    padding-bottom: 16px;
  }
  .family-index {
    gap: 18px 28px;
  }
  .family-section {
    padding-block: 60px;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project {
    padding: 24px 26px;
  }
  .project-topline {
    font-size: 0.875rem;
  }
  .project-art {
    height: 210px;
  }
  .project-art .audit-mark {
    width: 115px;
  }
  .project-art .entri-mark {
    width: 210px;
  }
  .project-art .host-mark {
    height: 220px;
    width: 220px;
  }
  .project-art .ring-two {
    width: 225px;
    height: 225px;
  }
  .project-art .docs-lockup {
    font-size: 28px;
  }
  .project-art .docs-lockup img {
    width: 43px;
  }
  .project-name {
    font-size: 0.875rem;
    gap: 9px;
  }
  .project-name > span {
    font-size: 0.875rem;
  }
  .project h3 {
    font-size: 29px;
  }
  .project-copy > p {
    font-size: 1rem;
    min-height: 0;
    margin-top: 16px;
  }
  .project-bottom {
    flex-direction: row;
    align-items: center;
  }
  .project-link {
    width: auto;
    font-size: 0.875rem;
    gap: 10px;
  }
  .project-bottom > span {
    font-size: 0.75rem;
  }
  .contact-section h2 {
    font-size: 36px;
  }
  .contact-email {
    font-size: 22px;
  }
  .contact-flourish {
    font-size: 86px;
  }
  .site-footer > div {
    flex-wrap: wrap;
  }
  .site-footer > div > span {
    width: 100%;
    margin: 0;
  }
  .legal-page,
  .not-found {
    padding-block: 65px;
  }
  .not-found .text-link {
    margin: 25px 0 0;
    display: flex;
    max-width: 150px;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header nav.language-switch {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 0.875rem;
}
.language-switch a {
  min-width: 35px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 20px;
}
.language-switch a[aria-current] {
  background: var(--ink);
  color: white;
}
.site-header .language-switch a:after {
  display: none;
}
.site-header > nav {
  margin-right: 20px;
}
.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7%;
  align-items: start;
}
.contact-intro h2 {
  font-size: clamp(36px, 3.4vw, 51px);
}
.contact-intro .contact-details {
  margin-top: 38px;
  overflow: visible;
}
.contact-intro .contact-flourish {
  display: block;
  margin-top: 35px;
}
.contact-form-panel {
  background: white;
  padding: 36px;
  border: 1px solid #dce4df;
  border-radius: 8px;
  box-shadow: 0 18px 55px #26313306;
}
.form-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}
.form-spark {
  color: #268fab;
  font-size: 32px;
  line-height: 1;
}
.form-heading h3 {
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
.form-heading p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}
.form-row:has(select) {
  grid-template-columns: 1fr;
  gap: 0;
}
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-bottom: 19px;
  position: relative;
}
.field label {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 650;
  margin-bottom: 9px;
}
.field label span {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  min-width: 0;
  min-height: 47px;
  border: 1px solid #d5ded7;
  background: #f8faf7;
  border-radius: 4px;
  padding: 12px;
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  min-height: 134px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid #2887a1;
  outline-offset: 2px;
  background: white;
}
.field [aria-invalid="true"],
.privacy-check input[aria-invalid="true"] {
  border-color: #b44234;
  outline-color: #b44234;
}
.field textarea::placeholder {
  font-size: 1rem;
  color: var(--muted);
}
.field-error {
  font-size: 0.875rem;
  color: #a63428;
  line-height: 1.5;
  display: block;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.message-counter {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  margin-top: 7px;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: #218aa7;
  margin: 2px 0;
  cursor: pointer;
}
.privacy-check label {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #5b6863;
  cursor: pointer;
}
.privacy-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.form-submit {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-grid .form-submit .button {
  margin: 0;
  border: 0;
  cursor: pointer;
  min-height: 52px;
}
.form-secure {
  font-size: 0.875rem;
  color: var(--muted);
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
#form-status {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 15px;
}
#form-status:empty {
  display: none;
}
#form-status.success {
  color: #247348;
}
#form-status.failure {
  color: #a63428;
}
.honey-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.cookie-settings {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer .cookie-settings {
  font-size: 0.875rem;
}
#cookie-dialog {
  max-width: 550px;
  width: calc(100% - 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px #112a2a33;
}
#cookie-dialog::backdrop {
  background: #21343255;
  backdrop-filter: blur(4px);
}
.cookie-dialog-inner {
  padding: 34px;
}
.cookie-dialog-inner h2 {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 550;
  margin: 17px 0;
}
.cookie-dialog-inner > p {
  font-size: 1rem;
  color: #5e6c68;
}
.cookie-dialog-inner .cookie-note {
  font-size: 0.875rem;
  margin-top: 16px;
}
.cookie-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.cookie-actions .button {
  background: var(--ink);
  color: white;
  border: 0;
  cursor: pointer;
  flex: 1;
  justify-content: center;
}
.cookie-actions .text-link {
  flex-basis: 100%;
  justify-content: center;
  border: 0;
  background: none;
  cursor: pointer;
}
html[lang="el"] .hero h1 {
  font-size: clamp(58px, 6.4vw, 96px);
  letter-spacing: -0.06em;
}
html[lang="el"] .hero .eyebrow {
  letter-spacing: 0.035em;
}
html[lang="el"] .contact-intro h2 {
  font-size: clamp(35px, 3.1vw, 46px);
}
html[lang="el"] .project h3 {
  font-size: clamp(25px, 2.2vw, 33px);
}
html[lang="el"] .project-copy > p {
  min-height: 0;
}
@media (max-width: 1100px) {
  .header-actions {
    gap: 17px;
  }
  .site-header > nav {
    gap: 22px;
    margin-right: 0;
  }
  .contact-form-panel {
    padding: 26px;
  }
  .contact-grid {
    gap: 5%;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 760px) {
  .header-actions {
    gap: 14px;
  }
  .site-header > nav {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-intro .contact-details {
    margin-top: 25px;
    min-height: 0;
    border: 0;
    padding-top: 0;
  }
  .contact-intro .contact-flourish {
    display: none;
  }
  .form-heading h3 {
    font-size: 22px;
  }
  html[lang="el"] .hero h1 {
    font-size: clamp(58px, 11.8vw, 85px);
  }
  html[lang="el"] .contact-intro h2 {
    font-size: 38px;
  }
  .contact-form-panel {
    padding: 28px;
  }
}
@media (max-width: 480px) {
  .site-header .company-logo {
    width: 128px;
  }
  .hello-link {
    font-size: 0.875rem;
    gap: 6px;
  }
  .hello-link > span {
    display: none;
  }
  .header-actions {
    gap: 12px;
  }
  .language-switch a {
    min-width: 30px;
    min-height: 32px;
  }
  .contact-form-panel {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-heading {
    gap: 12px;
  }
  .form-heading h3 {
    font-size: 20px;
  }
  .form-heading p {
    font-size: 1rem;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .privacy-check label {
    font-size: 0.875rem;
  }
  .cookie-dialog-inner {
    padding: 24px;
  }
  .cookie-dialog-inner h2 {
    font-size: 25px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-actions .text-link {
    flex-basis: auto;
  }
  .site-footer > div {
    gap: 20px;
  }
  html[lang="el"] .hero h1 {
    font-size: clamp(49px, 14.7vw, 67px);
  }
  html[lang="el"] .hero-actions {
    gap: 8px;
  }
  html[lang="el"] .hero-actions .text-link {
    font-size: 0.875rem;
  }
  html[lang="el"] .project h3 {
    font-size: 28px;
  }
  html[lang="el"] .project-copy > p {
    min-height: 0;
  }
  html[lang="el"] .contact-intro h2 {
    font-size: 33px;
  }
  html[lang="el"] .project-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 360px) {
  .contact-form-panel {
    margin-inline: -10px;
    padding-inline: 12px;
  }
}
/* Graph motion is owned by the spring embedder; page layout remains still. */
.hero,
.family-section,
.history-section,
.approach-section,
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
/* Focus outlines may breathe into the existing mobile gutter. */
.hero {
  overflow: visible;
}
.connection-proaudit,
.orbit-proaudit {
  --dispatch-color: #3982b5;
}
.connection-entri,
.orbit-entri {
  --dispatch-color: #2e926a;
}
.connection-donkeyhost,
.orbit-donkeyhost {
  --dispatch-color: #a67f35;
}
.connection-donkeydocs,
.orbit-donkeydocs {
  --dispatch-color: #7776ad;
}
.connection-chatbridge,
.orbit-chatbridge {
  --dispatch-color: #487f82;
}
.connection-eva,
.orbit-eva {
  --dispatch-color: var(--eva-accent);
}
.connections .connection-rail {
  stroke: #a6cbd5;
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition:
    stroke 0.3s ease,
    stroke-width 0.3s ease;
}
.constellation:has(.orbit-proaudit:is(:hover, :focus-visible))
  .connection-proaudit
  .connection-rail,
.constellation:has(.orbit-entri:is(:hover, :focus-visible))
  .connection-entri
  .connection-rail,
.constellation:has(.orbit-donkeyhost:is(:hover, :focus-visible))
  .connection-donkeyhost
  .connection-rail,
.constellation:has(.orbit-donkeydocs:is(:hover, :focus-visible))
  .connection-donkeydocs
  .connection-rail,
.constellation:has(.orbit-chatbridge:is(:hover, :focus-visible))
  .connection-chatbridge
  .connection-rail,
.constellation:has(.orbit-eva:is(:hover, :focus-visible))
  .connection-eva
  .connection-rail {
  stroke: var(--dispatch-color);
  stroke-width: 1.8;
}
/* Product-specific accents. No copy movement and no repeated orbital motif. */
.project-art .mark-float {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.project-proaudit {
  --project-accent: #3488ad;
}
.project-entri {
  --project-accent: #3d966b;
}
.project-donkeyhost {
  --project-accent: #a98532;
}
.project-donkeydocs {
  --project-accent: #7275a7;
}
.project-chatbridge {
  --project-accent: #487f82;
}
.project-eva {
  --project-accent: var(--eva-accent);
}
.project-accent {
  position: absolute;
  width: 330px;
  max-width: 100%;
  height: 100%;
  pointer-events: none;
  stroke: var(--project-accent);
  stroke-width: 1;
  overflow: visible;
}
.ledger-guides {
  opacity: 0.18;
}
.ledger-rule {
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  animation: ledger-rule 9s ease-in-out infinite paused;
}
.rule-two {
  animation-delay: -4.5s;
}
.entry-rail {
  opacity: 0.15;
}
.entry-flow {
  stroke-dasharray: 10 22;
  stroke-width: 2;
  opacity: 0.5;
  animation: entry-flow 10s linear infinite paused;
}
.flow-two {
  animation-direction: reverse;
  animation-delay: -3s;
}
.project-donkeyhost .mark-float {
  animation: host-glide 9s ease-in-out infinite paused;
}
.document-frame {
  transform-origin: 150px 125px;
  opacity: 0.25;
}
.frame-back {
  animation: frame-align 10s ease-in-out infinite paused;
}
.frame-front {
  opacity: 0.12;
}
.team-rail,
.office-rule {
  opacity: 0.2;
}
.team-exchange {
  stroke-width: 2;
  stroke-dasharray: 12 88;
  animation: team-exchange 9s ease-in-out infinite paused;
}
.exchange-return {
  animation-delay: -4.5s;
}
.office-cursor {
  stroke-width: 2;
  animation: office-breathe 6s ease-in-out infinite paused;
}
@keyframes team-exchange {
  0%,
  15% {
    stroke-dashoffset: 12;
    opacity: 0;
  }
  25% {
    opacity: 0.6;
  }
  65% {
    stroke-dashoffset: -100;
    opacity: 0.6;
  }
  80%,
  100% {
    stroke-dashoffset: -100;
    opacity: 0;
  }
}
@keyframes office-breathe {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.65;
  }
}
html[data-motion="running"]
  .project.motion-visible
  :is(
    .ledger-rule,
    .entry-flow,
    .mark-float,
    .frame-back,
    .team-exchange,
    .office-cursor
  ) {
  animation-play-state: running;
}
@keyframes ledger-rule {
  0%,
  8% {
    stroke-dashoffset: 100;
    opacity: 0.2;
  }
  28%,
  58% {
    stroke-dashoffset: 0;
    opacity: 0.65;
  }
  80%,
  100% {
    stroke-dashoffset: -100;
    opacity: 0.2;
  }
}
@keyframes entry-flow {
  to {
    stroke-dashoffset: -96;
  }
}
@keyframes host-glide {
  0%,
  100% {
    transform: translate(-3px, 3px) rotate(-1deg);
  }
  50% {
    transform: translate(5px, -7px) rotate(1deg);
  }
}
@keyframes frame-align {
  0%,
  100% {
    transform: translate(-7px, 7px) rotate(-4deg);
  }
  38%,
  60% {
    transform: translate(7px, -7px) rotate(3deg);
  }
}
/* History has a single entrance gesture. Approach and contact remain calm. */
.history-chapters {
  position: relative;
}
.history-chapters:before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #337e87;
  transform-origin: left;
  opacity: 0.75;
}
.history-chapters.motion-seen:before {
  animation: history-line 2.8s cubic-bezier(0.22, 1, 0.36, 1) both paused;
}
html[data-motion="running"] .history-chapters.motion-visible:before {
  animation-play-state: running;
}
@keyframes history-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.contact-form-panel .form-spark {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-form-panel:focus-within .form-spark {
  transform: rotate(45deg);
}
.button > span,
.text-link > span {
  transition: transform 0.25s;
}
.button:is(:hover, :focus-visible) > span,
.text-link:is(:hover, :focus-visible) > span {
  transform: translate(2px, -2px);
}
.hero-actions .button:is(:hover, :focus-visible) > span {
  transform: translateY(3px);
}
.project:focus-within {
  box-shadow: 0 10px 28px #253c3b12;
}
.project-link:focus-visible .round-arrow {
  background: var(--ink);
  color: white;
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .project:hover {
    box-shadow: 0 18px 40px #253c3b14;
  }
  html[data-motion="running"] .project:hover {
    translate: 0 -4px;
  }
  .project {
    transition:
      translate 0.35s ease,
      box-shadow 0.35s ease;
  }
}
.motion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.875rem;
  padding: 0;
  cursor: pointer;
}
.motion-toggle[hidden] {
  display: none;
}
.motion-toggle:disabled {
  cursor: default;
}
.motion-toggle:hover:not(:disabled) {
  color: #14718e;
}
.motion-glyph {
  font-size: 0.875rem;
}
.constellation > .motion-toggle {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .constellation > .motion-toggle {
    bottom: -78px;
  }
  .hero.wrap {
    padding-bottom: 100px;
  }
}
.site-footer > div {
  align-items: center;
  flex-wrap: wrap;
}
.history-section {
  padding-block: 105px 75px;
  background: #eef2ed;
}
.history-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 80px;
}
.history-heading .eyebrow {
  color: var(--muted);
  margin-bottom: 25px;
}
.history-heading h2 {
  font-size: clamp(37px, 4vw, 61px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.14;
}
.history-intro {
  max-width: 580px;
  margin-top: 27px;
  color: #61706b;
  font-size: 1rem;
}
.history-seal {
  width: 240px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.history-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  stroke: #b6c8bf;
  stroke-width: 0.8;
}
.history-seal .seal-detail {
  stroke: #228da4;
  stroke-dasharray: 42 586;
  stroke-width: 1.8;
}
.history-seal strong {
  font-size: 94px;
  letter-spacing: -0.075em;
  font-weight: 450;
  line-height: 1.1;
  padding-right: 6px;
}
.history-seal > span {
  max-width: 145px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #61706b;
}
.history-chapters {
  list-style: none;
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.history-chapters li {
  position: relative;
  padding: 31px 38px 0 0;
  border-top: 1px solid #bbcec4;
}
.chapter-period {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #47675e;
}
.chapter-dot {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #277e8c;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #eef2ed;
}
.history-chapters li:last-child .chapter-dot {
  background: #50c1df;
}
.chapter-index {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
}
.history-chapters h3 {
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin-top: 23px;
}
.history-chapters p {
  font-size: 1rem;
  color: #61706b;
  margin-top: 17px;
  max-width: 360px;
}
.history-closing {
  border-top: 1px solid #cfdbd1;
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.history-closing p {
  font-size: 0.875rem;
  color: #61706b;
}
@media (max-width: 900px) {
  .history-heading {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 180px;
  }
  .history-seal {
    width: 180px;
    height: 180px;
  }
  .history-seal strong {
    font-size: 70px;
  }
  .history-seal > span {
    max-width: 115px;
    font-size: 0.875rem;
  }
  .history-chapters li {
    padding-right: 25px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding-bottom: 60px;
  }
}
@media (max-width: 620px) {
  .history-section {
    padding-block: 65px 42px;
  }
  .history-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .history-heading h2 {
    font-size: 37px;
  }
  .history-heading h2 br {
    display: none;
  }
  .history-intro {
    font-size: 1rem;
    margin-top: 22px;
  }
  .history-seal {
    width: 155px;
    height: 155px;
  }
  .history-seal strong {
    font-size: 58px;
  }
  .history-seal > span {
    max-width: 105px;
  }
  .history-chapters {
    grid-template-columns: 1fr;
    margin-top: 36px;
    padding-left: 5px;
  }
  .history-chapters:before {
    left: 5px;
    width: 1px;
    height: 100%;
    transform-origin: top;
  }
  @keyframes history-line {
    from {
      transform: scaleY(0);
    }
    to {
      transform: scaleY(1);
    }
  }
  .history-chapters li {
    border-top: 0;
    border-left: 1px solid #bbcec4;
    padding: 0 0 36px 28px;
  }
  .history-chapters li:last-child {
    padding-bottom: 8px;
  }
  .chapter-dot {
    left: -5px;
    top: 4px;
  }
  .chapter-index {
    margin-left: 15px;
  }
  .history-chapters h3 {
    margin-top: 14px;
    font-size: 25px;
  }
  .history-chapters p {
    margin-top: 12px;
  }
  .history-closing {
    margin-top: 30px;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
