:root {
  --bg: #f2f0ea;
  --section-alt: #e9e5dc;
  --surface: #faf9f5;
  --surface-soft: #eeece6;
  --text: #101513;
  --muted: #7b817d;
  --muted-strong: #5f6762;
  --line: #d5d2c9;
  --line-strong: #b9b7af;
  --accent: #3457d5;
  --accent-soft: rgba(52,87,213,.1);
  --accent-ink: #ffffff;
  --secondary: #a9d3b8;
  --secondary-soft: rgba(169,211,184,.12);
  --secondary-fade: rgba(169,211,184,.35);
  --secondary-glow: rgba(169,211,184,.18);
  --success: #3f8f65;
  --success-soft: rgba(63,143,101,.1);
  --sand-strong: #936e3d;
  --sand-soft: rgba(147,110,61,.1);
  --violet: #7862b4;
  --violet-soft: rgba(120,98,180,.1);
  --ink-panel: #0b1110;
  --ink-panel-text: #f7f6f1;
  --dark-line: rgba(255,255,255,.13);
  --hero-bg: #0b1110;
  --hero-panel: rgba(18,27,25,.83);
  --hero-text: #f7f6f1;
  --hero-muted: rgba(247,246,241,.61);
  --hero-muted-dim: rgba(247,246,241,.37);
  --hero-line: rgba(255,255,255,.14);
  --hero-line-strong: rgba(255,255,255,.26);
  --signal-bg: rgba(14,22,20,.72);
  --core-bg: #13201d;
  --ticker-bg: rgba(8,13,12,.82);
  --grid-line: rgba(255,255,255,.14);
  --grid-opacity: .13;
  --canvas-rgb: 169,211,184;
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --font-serif: Georgia, "Times New Roman", serif;
  --container: 1240px;
  --radius-large: 17px;
  --shadow-large: 0 35px 90px rgba(18,25,22,.13);
  --ease: cubic-bezier(.22,.8,.24,1);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

:root[data-theme="dark"] {
  --bg: #0b100f;
  --section-alt: #111715;
  --surface: #151c1a;
  --surface-soft: #111816;
  --text: #f2f1ec;
  --muted: #727b76;
  --muted-strong: #a0a8a3;
  --line: #27302d;
  --line-strong: #39433f;
  --accent: #6f8cff;
  --accent-soft: rgba(111,140,255,.12);
  --accent-ink: #08100d;
  --secondary: #a9d3b8;
  --success: #78bf95;
  --success-soft: rgba(120,191,149,.1);
  --sand-strong: #d0aa74;
  --sand-soft: rgba(208,170,116,.1);
  --violet: #b5a2ef;
  --violet-soft: rgba(181,162,239,.1);
  --shadow-large: 0 35px 95px rgba(0,0,0,.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 260ms ease, color 260ms ease;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

::selection {
  background: var(--accent);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.ambient-pointer {
  width: 420px;
  height: 420px;
  position: fixed;
  left: var(--pointer-x);
  top: var(--pointer-y);
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: .34;
}

.section {
  padding: 125px 0;
  position: relative;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 85px;
  align-items: end;
}

.section-intro h2 {
  margin-top: 18px;
  font-size: clamp(44px, 5.2vw, 73px);
  line-height: .99;
  letter-spacing: -.06em;
  font-weight: 610;
}

.section-intro h2 em {
  color: var(--accent);
  font-family: var(--font-serif);
  font-weight: 400;
}

.section-intro > p {
  max-width: 510px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.78;
}

.section-intro--light h2,
.section-intro--light > p {
  color: white;
}

.section-intro--light > p {
  color: rgba(255,255,255,.5);
}

.section-index {
  color: var(--accent);
  font: 760 8px/1 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-index--light {
  color: var(--secondary);
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 190ms var(--ease), background 190ms ease, color 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--secondary);
  color: #0b1110;
}

.button--primary:hover {
  box-shadow: 0 12px 30px rgba(169,211,184,.17);
}

.button--secondary {
  border-color: var(--hero-line);
  background: rgba(255,255,255,.03);
  color: white;
}

.button--secondary:hover {
  border-color: var(--secondary);
  background: rgba(169,211,184,.07);
}

.button--light {
  background: var(--secondary);
  color: #0b1110;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro > p {
    max-width: 690px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .section-intro h2 {
    font-size: 43px;
  }

  .ambient-pointer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.navbar--scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom-color: var(--line);
  backdrop-filter: blur(20px);
}

.navbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: none;
}

.navbar__monogram {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font: 800 11px/1 var(--font-mono);
  letter-spacing: -0.04em;
}

.navbar__brand-copy {
  display: flex;
  flex-direction: column;
}

.navbar__brand-copy strong {
  font-size: 12px;
  letter-spacing: -0.01em;
}

.navbar__brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.navbar__links a {
  position: relative;
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transition: right 220ms ease;
}

.navbar__links a:hover {
  color: var(--text);
}

.navbar__links a:hover::after {
  right: 0;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--muted-strong);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.theme-toggle__track {
  width: 25px;
  height: 14px;
  padding: 2px;
  border-radius: 99px;
  background: var(--line-strong);
  display: flex;
}

.theme-toggle__dot {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 220ms ease;
}

.theme-toggle__dot--right {
  transform: translateX(11px);
}

.navbar__company {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  font-size: 9px;
  font-weight: 750;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.navbar__company:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.navbar__company span {
  margin-left: 5px;
}

.navbar__burger {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
}

.navbar__burger span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  transition: transform 220ms ease;
}

.navbar__burger span:first-child {
  transform: translateY(-3px);
}

.navbar__burger span:last-child {
  transform: translateY(3px);
}

.navbar__burger--open span:first-child {
  transform: rotate(45deg);
}

.navbar__burger--open span:last-child {
  transform: rotate(-45deg);
}

.navbar__mobile {
  display: none;
}

@media (max-width: 960px) {
  .navbar__links,
  .navbar__company {
    display: none;
  }

  .navbar__actions {
    margin-left: auto;
  }

  .navbar__burger {
    display: grid;
  }

  .navbar__mobile {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: max-height 320ms var(--ease), padding 320ms var(--ease), opacity 200ms ease;
  }

  .navbar__mobile--open {
    max-height: 620px;
    padding-top: 22px;
    padding-bottom: 28px;
    border-bottom-color: var(--line);
    opacity: 1;
  }

  .navbar__mobile-index {
    margin-bottom: 12px;
    color: var(--muted);
    font: 700 8px/1 var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .navbar__mobile > a:not(.navbar__mobile-company) {
    min-height: 58px;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 20px;
    font-weight: 650;
    text-decoration: none;
  }

  .navbar__mobile > a span {
    color: var(--accent);
    font: 700 8px/1 var(--font-mono);
  }

  .navbar__mobile > a i {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
  }

  .navbar__mobile-company {
    margin-top: 18px;
    min-height: 46px;
    padding: 12px 15px;
    border-radius: 8px;
    background: var(--text);
    color: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  .navbar__inner {
    min-height: 68px;
  }

  .navbar__brand-copy {
    display: none;
  }

  .theme-toggle > span:last-child {
    display: none;
  }
}
.hero {
  min-height: 920px;
  padding-top: 78px;
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--hero-text);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: var(--grid-opacity);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--one {
  width: 600px;
  height: 600px;
  right: -250px;
  top: -240px;
  background: radial-gradient(circle, var(--accent-glow), transparent 67%);
}

.hero__orb--two {
  width: 420px;
  height: 420px;
  left: 28%;
  bottom: -310px;
  background: radial-gradient(circle, var(--secondary-glow), transparent 70%);
}

.hero__layout {
  min-height: 780px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  align-items: center;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 105px;
}

.hero__copy {
  max-width: 700px;
}

.hero__availability {
  width: fit-content;
  margin-bottom: 34px;
  padding: 7px 10px;
  border: 1px solid var(--hero-line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hero-muted);
  font: 700 8px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px var(--secondary-soft);
}

.hero__role {
  margin-bottom: 16px;
  color: var(--secondary);
  font: 760 10px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(58px, 7.2vw, 105px);
  line-height: 0.91;
  letter-spacing: -0.07em;
  font-weight: 620;
}

.hero h1 span {
  display: block;
  color: var(--secondary);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero__tagline {
  max-width: 600px;
  margin-top: 30px;
  color: var(--hero-muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 36px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--hero-line);
  border-bottom: 1px solid var(--hero-line);
}

.hero__proof > div {
  min-height: 82px;
  padding: 17px 16px 17px 0;
  border-right: 1px solid var(--hero-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__proof > div:not(:first-child) {
  padding-left: 16px;
}

.hero__proof > div:last-child {
  border-right: 0;
}

.hero__proof strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.hero__proof span {
  margin-top: 4px;
  color: var(--hero-muted-dim);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__visual {
  min-height: 610px;
  position: relative;
  border: 1px solid var(--hero-line);
  border-radius: 18px;
  background: var(--hero-panel);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  isolation: isolate;
}

.neural-field {
  position: absolute;
  inset: 45px 0 47px;
  width: 100%;
  height: calc(100% - 92px);
  opacity: 0.9;
}

.hero__visual-header,
.hero__visual-footer {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  min-height: 46px;
  padding: 0 16px;
  border-color: var(--hero-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--hero-muted-dim);
  font: 700 8px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.hero__visual-header {
  top: 0;
  border-bottom: 1px solid;
}

.hero__visual-footer {
  bottom: 0;
  border-top: 1px solid;
}

.hero__visual-footer a {
  color: var(--secondary);
  text-decoration: none;
}

.hero__visual-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
}

.hero__visual-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hero__core {
  width: 210px;
  height: 210px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}

.hero__core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--hero-line-strong);
}

.hero__core-ring--outer {
  inset: 0;
  border-style: dashed;
  animation: coreSpin 32s linear infinite;
}

.hero__core-ring--inner {
  inset: 28px;
  border-color: var(--secondary-fade);
  animation: coreSpinReverse 18s linear infinite;
}

@keyframes coreSpin {
  to { transform: rotate(360deg); }
}

@keyframes coreSpinReverse {
  to { transform: rotate(-360deg); }
}

.hero__core-mark {
  width: 112px;
  height: 112px;
  position: relative;
  border: 1px solid var(--secondary-fade);
  border-radius: 28px;
  background: var(--core-bg);
  display: grid;
  place-items: center;
  box-shadow: 0 0 70px var(--secondary-glow);
  transform: rotate(45deg);
}

.hero__core-mark::before,
.hero__core-mark::after {
  content: "";
  position: absolute;
  background: var(--secondary-fade);
}

.hero__core-mark::before {
  left: -32px;
  right: -32px;
  top: 50%;
  height: 1px;
}

.hero__core-mark::after {
  top: -32px;
  bottom: -32px;
  left: 50%;
  width: 1px;
}

.hero__core-mark span,
.hero__core-mark small {
  position: absolute;
  transform: rotate(-45deg);
}

.hero__core-mark span {
  font: 780 27px/1 var(--font-mono);
  letter-spacing: -0.08em;
}

.hero__core-mark small {
  bottom: 15px;
  color: var(--hero-muted-dim);
  font: 700 5px/1 var(--font-mono);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero__signal {
  width: 145px;
  min-height: 82px;
  position: absolute;
  z-index: 3;
  padding: 12px;
  border: 1px solid var(--hero-line);
  border-radius: 10px;
  background: var(--signal-bg);
  backdrop-filter: blur(10px);
}

.hero__signal--top { left: 27px; top: 82px; }
.hero__signal--right { right: 26px; top: 126px; }
.hero__signal--bottom { left: 45px; bottom: 80px; }

.hero__signal span {
  color: var(--secondary);
  font: 700 7px/1 var(--font-mono);
}

.hero__signal strong,
.hero__signal small {
  display: block;
}

.hero__signal strong {
  margin-top: 13px;
  font-size: 11px;
}

.hero__signal small {
  margin-top: 3px;
  color: var(--hero-muted-dim);
  font-size: 8px;
}

.hero__ticker {
  height: 46px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--hero-line);
  background: var(--ticker-bg);
  display: flex;
  align-items: center;
}

.hero__ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  animation: tickerMove 30s linear infinite;
}

.hero__ticker span {
  color: var(--hero-muted-dim);
  font: 700 8px/1 var(--font-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary);
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 105px;
  }

  .hero__copy {
    max-width: 820px;
  }

  .hero__visual {
    width: min(100%, 780px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero__layout {
    padding-top: 75px;
    padding-bottom: 90px;
    gap: 48px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero__tagline {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof strong {
    font-size: 16px;
  }

  .hero__proof span {
    font-size: 6px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero__core {
    width: 170px;
    height: 170px;
  }

  .hero__core-mark {
    width: 90px;
    height: 90px;
  }

  .hero__signal {
    width: 118px;
    min-height: 72px;
  }

  .hero__signal--top { left: 13px; top: 70px; }
  .hero__signal--right { right: 13px; top: 112px; }
  .hero__signal--bottom { left: 22px; bottom: 67px; }
}
.about {
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 16px;
  margin-top: 65px;
}

.about__portrait,
.about__story {
  min-height: 530px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.about__portrait {
  position: relative;
  background: var(--ink-panel);
  color: var(--ink-panel-text);
  display: grid;
  place-items: center;
}

.about__portrait-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.about__portrait::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255,255,255,.025),
    0 0 0 76px rgba(255,255,255,.018);
}

.about__monogram {
  position: relative;
  z-index: 2;
  font: 760 clamp(80px, 11vw, 145px)/1 var(--font-mono);
  letter-spacing: -0.14em;
  transform: translateX(-0.08em);
  color: var(--secondary);
}

.about__portrait-label {
  position: absolute;
  left: 25px;
  bottom: 24px;
  z-index: 3;
}

.about__portrait-label span,
.about__portrait-label small {
  display: block;
}

.about__portrait-label span {
  font-size: 12px;
  font-weight: 750;
}

.about__portrait-label small,
.about__coordinate {
  margin-top: 3px;
  color: rgba(255,255,255,.4);
  font: 700 7px/1 var(--font-mono);
  letter-spacing: .08em;
}

.about__coordinate {
  position: absolute;
  right: 25px;
  top: 26px;
  z-index: 3;
}

.about__story {
  padding: clamp(32px, 5vw, 65px);
  background: var(--surface);
}

.about__story-label {
  color: var(--accent);
  font: 750 8px/1 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about__story h3 {
  max-width: 670px;
  margin-top: 26px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 600;
}

.about__story > p {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.78;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.about__facts > div {
  min-height: 84px;
  padding: 18px 16px 10px 0;
  border-right: 1px solid var(--line);
}

.about__facts > div:not(:first-child) {
  padding-left: 16px;
}

.about__facts > div:last-child {
  border-right: 0;
}

.about__facts span,
.about__facts strong {
  display: block;
}

.about__facts span {
  color: var(--muted);
  font: 700 7px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about__facts strong {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.45;
}

.about__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.about__principles article {
  min-height: 245px;
  padding: 29px;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.about__principles article:last-child {
  border-right: 0;
}

.about__principles span {
  color: var(--accent);
  font: 760 8px/1 var(--font-mono);
}

.about__principles h3 {
  margin-top: 80px;
  font-size: 17px;
  letter-spacing: -.025em;
}

.about__principles p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__portrait {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .about__story {
    min-height: auto;
  }

  .about__facts,
  .about__principles {
    grid-template-columns: 1fr;
  }

  .about__facts > div,
  .about__facts > div:not(:first-child) {
    min-height: 70px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about__principles article {
    min-height: 205px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about__principles h3 {
    margin-top: 52px;
  }
}
.projects {
  background: var(--section-alt);
}

.projects__selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
  overflow: hidden;
}

.projects__selector button {
  min-height: 125px;
  padding: 19px;
  position: relative;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  transition: background 200ms ease, color 200ms ease;
}

.projects__selector button:last-child {
  border-right: 0;
}

.projects__selector button:hover,
.projects__selector button.is-active {
  background: var(--text);
  color: var(--bg);
}

.projects__selector button > span {
  color: var(--accent);
  font: 750 8px/1 var(--font-mono);
}

.projects__selector strong {
  margin-top: auto;
  font-size: 12px;
}

.projects__selector small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.projects__selector button.is-active small,
.projects__selector button:hover small {
  color: color-mix(in srgb, var(--bg) 58%, transparent);
}

.projects__selector button > i {
  position: absolute;
  right: 16px;
  top: 15px;
  color: var(--muted);
  font-style: normal;
  font-size: 10px;
}

.projects__featured {
  min-height: 690px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--surface);
}

.projects__featured-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.projects__featured-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.project-status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 13px;
  color: var(--muted);
  font: 700 8px/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-status {
  padding: 6px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.project-status--live { color: var(--success); background: var(--success-soft); }
.project-status--founder { color: var(--accent); background: var(--accent-soft); }
.project-status--build { color: var(--sand-strong); background: var(--sand-soft); }
.project-status--research { color: var(--violet); background: var(--violet-soft); }

.projects__code {
  color: var(--muted);
  font: 700 8px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.projects__featured-main {
  margin-top: auto;
}

.projects__featured-number {
  color: var(--accent);
  font: 750 9px/1 var(--font-mono);
}

.projects__featured h3 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 620;
}

.projects__featured-main > p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.75;
}

.projects__outcome {
  margin-top: 28px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.projects__outcome span,
.projects__outcome strong {
  display: block;
}

.projects__outcome span {
  color: var(--muted);
  font: 700 7px/1 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects__outcome strong {
  margin-top: 9px;
  font-size: 10px;
  line-height: 1.55;
}

.projects__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.projects__tags span,
.projects__all article > div:nth-of-type(2) span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted-strong);
  font: 700 7px/1 var(--font-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.projects__featured-actions {
  min-height: 72px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.project-github-link {
  color: var(--muted-strong);
  font-size: 9px;
  font-weight: 750;
  text-decoration: none;
}

.projects__private {
  color: var(--muted);
  font-size: 9px;
}

.project-visual {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.project-visual--medstock {
  display: grid;
  place-items: center;
  padding: 50px;
  background:
    radial-gradient(circle at 80% 18%, rgba(70, 103, 231, 0.28), transparent 36%),
    #101a19;
}

.project-visual--medstock::before,
.project-visual--nextgen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 37px 37px;
}

.medstock-ui {
  width: min(100%, 650px);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: #edf0eb;
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.medstock-ui__top {
  height: 45px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #d9ddd7;
  background: #fff;
  color: #707975;
  font-size: 8px;
}

.medstock-ui__top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d4ce;
}

.medstock-ui__top span { margin-left: 9px; font-weight: 700; }
.medstock-ui__body { height: 380px; display: grid; grid-template-columns: 92px 1fr; }
.medstock-ui__side { padding: 20px 12px; background: #121a19; display: flex; flex-direction: column; gap: 10px; }
.medstock-ui__side b { height: 7px; border-radius: 4px; background: rgba(255,255,255,.13); }
.medstock-ui__side b:first-child { background: rgba(185,221,200,.5); }
.medstock-ui__content { padding: 25px; }
.medstock-ui__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.medstock-ui__metrics i { height: 74px; border: 1px solid #daddd8; border-radius: 7px; background: white; }
.medstock-ui__chart { height: 190px; margin-top: 13px; padding: 22px; border: 1px solid #daddd8; border-radius: 7px; background: white; }
.medstock-ui__chart svg { width: 100%; height: 100%; }
.medstock-ui__chart path { fill: none; stroke: #3457d5; stroke-width: 2.2; }

.project-visual--nextgen {
  display: grid;
  place-items: center;
  background: #10201b;
}

.nextgen-orbit {
  width: 280px;
  height: 280px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(185,221,200,.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 45px rgba(185,221,200,.035), 0 0 0 90px rgba(185,221,200,.02);
}

.nextgen-orbit span {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--secondary);
  color: #0b1110;
  font: 800 28px/1 var(--font-mono);
  transform: rotate(45deg);
}

.nextgen-orbit i {
  width: 9px;
  height: 9px;
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
}

.nextgen-orbit i:nth-child(2) { left: 4px; top: 50%; }
.nextgen-orbit i:nth-child(3) { right: 30px; top: 25px; }
.nextgen-orbit i:nth-child(4) { right: 45px; bottom: 16px; }
.nextgen-label { position: absolute; bottom: 30px; color: rgba(255,255,255,.42); font: 700 8px/1 var(--font-mono); letter-spacing: .1em; }

.project-visual--clinic {
  padding: 60px;
  display: flex;
  gap: 11px;
  align-items: center;
  background: #dce7df;
}

.clinic-column {
  flex: 1;
  min-height: 280px;
  padding: 16px;
  border: 1px solid #bbcec1;
  border-radius: 10px;
  background: rgba(255,255,255,.65);
}

.clinic-column:nth-child(2) { transform: translateY(24px); }
.clinic-column span { color: #568069; font: 750 7px/1 var(--font-mono); letter-spacing: .07em; }
.clinic-column i { display: block; height: 46px; margin-top: 12px; border-radius: 6px; background: white; box-shadow: 0 6px 16px rgba(39,72,54,.07); }

.project-visual--documents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  place-items: center;
  padding: 70px;
  background: #e5e7ef;
}

.document-page,
.extraction-panel {
  width: 100%;
  height: 280px;
  padding: 25px;
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 20px 40px rgba(25,31,45,.13);
}

.document-page i { display: block; height: 8px; margin-bottom: 13px; border-radius: 4px; background: #d2d6df; }
.document-page i:nth-child(2) { width: 61%; }
.document-page i:nth-child(3) { width: 80%; }
.document-page i:nth-child(4) { width: 46%; }
.document-page b { display: block; width: 65%; height: 70px; margin-top: 38px; border: 1px dashed #8796b7; background: #f1f4f9; }
.extraction-panel { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 14px; background: #17201f; color: white; }
.extraction-panel span { color: rgba(255,255,255,.38); font: 700 7px/1 var(--font-mono); }
.extraction-panel strong { font-size: 9px; text-align: right; }
.document-scan { position: absolute; left: 8%; right: 8%; top: 20%; z-index: 3; height: 2px; background: #536ee1; box-shadow: 0 0 15px #536ee1; animation: documentScan 2.8s ease-in-out infinite; }
@keyframes documentScan { 0%,100% { top: 20%; } 50% { top: 78%; } }

.projects__all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}

.projects__all article {
  min-height: 340px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
}

.projects__all article:last-child { border-right: 0; }
.projects__all-head { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font: 700 7px/1.3 var(--font-mono); text-transform: uppercase; }
.projects__all-head > span { color: var(--accent); }
.projects__all h3 { margin-top: 48px; font-size: 18px; letter-spacing: -.03em; }
.projects__all p { margin-top: 10px; color: var(--muted); font-size: 10px; line-height: 1.65; }
.projects__all article > div:nth-of-type(2) { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 20px; }
.projects__all button { margin-top: auto; padding: 18px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--text); display: flex; justify-content: space-between; font-size: 9px; font-weight: 750; }
.projects__all button i { color: var(--accent); font-style: normal; }

@media (max-width: 1040px) {
  .projects__selector { grid-template-columns: repeat(2,1fr); }
  .projects__selector button:nth-child(2) { border-right: 0; }
  .projects__selector button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .projects__featured { grid-template-columns: 1fr; }
  .project-visual { min-height: 580px; }
  .projects__all { grid-template-columns: repeat(2,1fr); }
  .projects__all article:nth-child(2) { border-right: 0; }
  .projects__all article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .projects__selector { grid-template-columns: 1fr; }
  .projects__selector button { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); }
  .projects__selector button:nth-child(2) { border-right: 0; }
  .projects__featured-copy { padding: 25px; }
  .project-visual { min-height: 420px; }
  .project-visual--medstock { padding: 20px; }
  .medstock-ui__body { height: 300px; }
  .project-visual--clinic { padding: 22px; }
  .project-visual--documents { padding: 25px; }
  .document-page, .extraction-panel { height: 220px; padding: 16px; }
  .projects__all { grid-template-columns: 1fr; }
  .projects__all article { border-right: 0; border-bottom: 1px solid var(--line); }
}
.capabilities {
  background: var(--ink-panel);
  color: var(--ink-panel-text);
}

.capabilities__console {
  min-height: 590px;
  margin-top: 65px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-large);
  background: #101716;
  overflow: hidden;
}

.capabilities__nav {
  border-right: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
}

.capabilities__nav button {
  flex: 1;
  min-height: 120px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
  color: white;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  text-align: left;
  transition: background 200ms ease, color 200ms ease;
}

.capabilities__nav button:last-child {
  border-bottom: 0;
}

.capabilities__nav button:hover,
.capabilities__nav button.is-active {
  background: var(--secondary);
  color: #0b1110;
}

.capabilities__nav span {
  color: var(--secondary);
  font: 750 8px/1 var(--font-mono);
}

.capabilities__nav button:hover span,
.capabilities__nav button.is-active span {
  color: #45604e;
}

.capabilities__nav strong {
  font-size: 16px;
  letter-spacing: -.02em;
}

.capabilities__nav i {
  color: rgba(255,255,255,.35);
  font-style: normal;
}

.capabilities__nav button.is-active i,
.capabilities__nav button:hover i {
  color: #0b1110;
}

.capabilities__panel {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(185,221,200,.13), transparent 36%),
    #111917;
  animation: capabilityIn 340ms var(--ease);
}

@keyframes capabilityIn {
  from { opacity: .4; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}

.capabilities__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(135deg, transparent 5%, black, transparent 90%);
}

.capabilities__panel-head {
  min-height: 48px;
  position: relative;
  z-index: 1;
  padding: 0 18px;
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.34);
  font: 700 7px/1 var(--font-mono);
  letter-spacing: .1em;
}

.capabilities__panel-main {
  min-height: 540px;
  position: relative;
  z-index: 1;
  padding: clamp(35px, 6vw, 75px);
  display: flex;
  flex-direction: column;
}

.capabilities__panel-number {
  color: var(--secondary);
  font: 750 9px/1 var(--font-mono);
}

.capabilities__panel h3 {
  margin-top: 28px;
  font-size: clamp(43px, 6vw, 75px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 610;
}

.capabilities__panel p {
  max-width: 570px;
  margin-top: 23px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.72;
}

.capabilities__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: auto;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.capabilities__items > div {
  min-height: 76px;
  padding: 14px;
  position: relative;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capabilities__items span {
  color: var(--secondary);
  font: 700 7px/1 var(--font-mono);
}

.capabilities__items strong {
  margin-top: 9px;
  font-size: 10px;
}

.capabilities__items i {
  width: 5px;
  height: 5px;
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 50%;
  background: rgba(185,221,200,.35);
}

.capabilities__stack {
  min-height: 105px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid var(--dark-line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
}

.capabilities__stack > span {
  color: rgba(255,255,255,.38);
  font: 700 8px/1 var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.capabilities__stack > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.capabilities__stack i {
  padding: 7px 9px;
  border: 1px solid var(--dark-line);
  border-radius: 5px;
  color: rgba(255,255,255,.66);
  font: normal 700 8px/1 var(--font-mono);
}

@media (max-width: 860px) {
  .capabilities__console {
    grid-template-columns: 1fr;
  }

  .capabilities__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .capabilities__nav button {
    min-height: 90px;
    border-right: 1px solid var(--dark-line);
  }
}

@media (max-width: 600px) {
  .capabilities__nav {
    grid-template-columns: 1fr;
  }

  .capabilities__nav button {
    min-height: 72px;
    border-right: 0;
  }

  .capabilities__panel-main {
    min-height: 480px;
  }

  .capabilities__items {
    grid-template-columns: 1fr;
  }

  .capabilities__stack {
    grid-template-columns: 1fr;
  }
}
.journey {
  background: var(--bg);
}

.journey__timeline {
  margin-top: 65px;
  border-top: 1px solid var(--line);
}

.journey__timeline article {
  min-height: 150px;
  position: relative;
  display: grid;
  grid-template-columns: 120px 40px .75fr 1.25fr 45px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.journey__timeline article:hover {
  background: var(--surface-soft);
}

.journey__period {
  color: var(--accent);
  font: 750 8px/1.4 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey__marker {
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
}

.journey__marker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.journey__marker i {
  width: 9px;
  height: 9px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 1px var(--line-strong);
}

.journey__role h3 {
  font-size: 18px;
  letter-spacing: -.025em;
}

.journey__role span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.journey__timeline p {
  max-width: 560px;
  color: var(--muted-strong);
  font-size: 11px;
  line-height: 1.62;
}

.journey__index {
  color: var(--muted);
  font: 700 8px/1 var(--font-mono);
  text-align: right;
}

.journey__quote {
  min-height: 330px;
  margin-top: 55px;
  padding: clamp(35px, 6vw, 70px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey__quote::after {
  content: "HA";
  position: absolute;
  right: -15px;
  bottom: -80px;
  color: rgba(255,255,255,.09);
  font: 800 240px/1 var(--font-mono);
  letter-spacing: -.15em;
}

.journey__quote > span {
  position: relative;
  z-index: 1;
  font: 750 8px/1 var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journey__quote blockquote {
  max-width: 930px;
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.journey__quote small {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  font: 700 8px/1 var(--font-mono);
  letter-spacing: .08em;
}

@media (max-width: 820px) {
  .journey__timeline article {
    grid-template-columns: 80px 25px 1fr 35px;
    padding: 25px 0;
  }

  .journey__timeline p {
    grid-column: 3 / -1;
    padding-bottom: 5px;
  }
}

@media (max-width: 560px) {
  .journey__timeline article {
    grid-template-columns: 60px 18px 1fr;
    gap: 12px;
  }

  .journey__timeline p {
    grid-column: 3;
  }

  .journey__index {
    display: none;
  }
}
.contact {
  background: var(--section-alt);
}

.contact__shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--ink-panel);
  color: var(--ink-panel-text);
  box-shadow: var(--shadow-large);
}

.contact__copy {
  padding: clamp(35px, 6vw, 70px);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--dark-line);
}

.contact__copy::after {
  content: "";
  width: 380px;
  height: 380px;
  position: absolute;
  left: -230px;
  bottom: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,221,200,.2), transparent 68%);
}

.contact__copy h2 {
  margin-top: 30px;
  font-size: clamp(45px, 6vw, 75px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 610;
}

.contact__copy h2 em {
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 400;
}

.contact__copy > p {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.76;
}

.contact__channels {
  margin-top: 55px;
  border-top: 1px solid var(--dark-line);
}

.contact__channels > * {
  width: 100%;
  min-height: 74px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
  color: white;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 15px;
  text-align: left;
  text-decoration: none;
}

.contact__channels span {
  color: rgba(255,255,255,.36);
  font: 700 7px/1 var(--font-mono);
  text-transform: uppercase;
}

.contact__channels strong {
  font-size: 11px;
}

.contact__channels i {
  color: var(--secondary);
  font: normal 700 8px/1 var(--font-mono);
}

.contact__form {
  padding: clamp(30px, 5vw, 60px);
  background: #111917;
}

.contact__form-head {
  min-height: 42px;
  margin-bottom: 27px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  font: 700 7px/1 var(--font-mono);
  letter-spacing: .1em;
}

.contact__form-head i {
  color: var(--secondary);
  font-style: normal;
}

.contact__form label {
  display: block;
  margin-bottom: 19px;
}

.contact__form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--dark-line);
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  color: white;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--secondary);
  background: rgba(255,255,255,.055);
  box-shadow: 0 0 0 3px rgba(185,221,200,.07);
}

.contact__form textarea {
  min-height: 155px;
  resize: vertical;
}

.contact__form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__form-footer small {
  flex: 1;
  color: rgba(255,255,255,.35);
  font-size: 8px;
}

.contact__availability {
  min-height: 78px;
  margin-top: 14px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact__availability > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
}

.contact__availability > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px var(--success-soft);
}

.contact__availability strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
}

.contact__availability a {
  color: var(--accent);
  font-size: 9px;
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 900px) {
  .contact__shell {
    grid-template-columns: 1fr;
  }

  .contact__copy {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }
}

@media (max-width: 620px) {
  .contact__channels > * {
    grid-template-columns: 55px 1fr;
  }

  .contact__channels i {
    display: none;
  }

  .contact__form-footer,
  .contact__availability {
    align-items: stretch;
    flex-direction: column;
  }

  .contact__form-footer .button {
    width: 100%;
  }

  .contact__availability {
    padding: 20px;
    gap: 12px;
  }

  .contact__availability strong {
    margin-left: 0;
  }
}
.footer {
  padding: 72px 0 26px;
  background: #080d0c;
  color: white;
}

.footer__top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 35px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.footer__brand > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--secondary);
  color: #0b1110;
  font: 800 10px/1 var(--font-mono);
}

.footer__brand strong,
.footer__brand small {
  display: block;
}

.footer__brand strong { font-size: 11px; }
.footer__brand small { margin-top: 3px; color: rgba(255,255,255,.38); font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.footer__top > p { flex: 1; color: rgba(255,255,255,.42); font-size: 11px; }
.footer__top > a:last-child { color: var(--secondary); font-size: 10px; font-weight: 750; text-decoration: none; }
.footer__top > a:last-child span { margin-left: 6px; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 45px 0 60px;
}

.footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__grid span {
  margin-bottom: 8px;
  color: rgba(255,255,255,.3);
  font: 750 7px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer__grid a {
  color: rgba(255,255,255,.62);
  font-size: 10px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer__grid a:hover { color: white; }

.footer__bottom {
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.3);
  font: 700 7px/1.4 var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer__bottom a {
  color: rgba(255,255,255,.56);
  text-decoration: none;
}

@media (max-width: 700px) {
  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
