@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #080808;
  --black-soft: #111111;
  --white: #f2f1ed;
  --gray: #979792;
  --line: rgba(242, 241, 237, 0.2);
  --lime: #d9ff43;
  --orange: #ff4d00;
  --violet: #9c7cff;
  --page: min(100% - 40px, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--black);
  background: var(--lime);
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  padding: 0 max(20px, calc((100% - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66)),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.025) 3px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}

.identity {
  width: 230px;
  height: 54px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 24px;
}

.language-switcher {
  gap: 3px;
}

.lang {
  padding: 5px;
  border: 0;
  color: var(--gray);
  background: transparent;
  font: 500 10px/1 "Geist Mono", monospace;
  cursor: pointer;
}

.lang.active {
  color: var(--lime);
}

.lang[aria-current="page"] {
  color: var(--lime);
}

.blog-main {
  min-height: 100vh;
  padding-top: 72px;
}

.blog-hero {
  min-height: 70vh;
  padding: 110px max(20px, calc((100% - 1180px) / 2)) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.blog-kicker,
.article-meta {
  font: 500 10px/1.4 "Geist Mono", monospace;
  letter-spacing: .08em;
}

.blog-kicker { color: var(--lime); }

.blog-hero h1 {
  max-width: 1000px;
  margin: 30px 0;
  font-size: clamp(65px, 10vw, 145px);
  line-height: .84;
  letter-spacing: -.085em;
}

.blog-hero > p:last-child {
  max-width: 720px;
  margin: 0 0 0 auto;
  color: #c1c0bb;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.35;
}

.article-list {
  max-width: 1180px;
  margin: auto;
  padding: 110px 20px 140px;
}

.featured-article {
  padding: 28px 0 70px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--gray);
}

.featured-article h2 {
  max-width: 850px;
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.06em;
}

.featured-article p,
.article-body p {
  color: #b4b3ae;
  font-size: 18px;
  line-height: 1.65;
}

.featured-article p { max-width: 680px; }

.article-body {
  max-width: 760px;
  margin: 90px 0 0 auto;
}

.article-body .article-deck {
  margin-bottom: 75px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.45;
}

.article-body h3 {
  margin: 65px 0 18px;
  font-size: 32px;
  letter-spacing: -.04em;
}

.article-body blockquote {
  margin: 70px 0;
  padding: 30px 0 30px 35px;
  border-left: 4px solid var(--lime);
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
}

.blog-footer {
  padding: 35px max(20px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 12px;
}

@media (max-width: 700px) {
  .featured-article { grid-template-columns: 1fr; }
  .article-meta { flex-direction: row; flex-wrap: wrap; }
  .blog-hero { min-height: 600px; }
}

.menu-button {
  display: none;
  gap: 8px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
}

.menu-button i,
.menu-button i::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-button i {
  position: relative;
  transform: translateY(-3px);
}

.menu-button i::after {
  content: "";
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-90deg);
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 90;
  padding: 30px 20px;
  visibility: hidden;
  opacity: 0;
  background: var(--orange);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.mobile-menu a span {
  color: var(--black);
  font: 500 10px "Geist Mono", monospace;
}

.mobile-menu a b {
  color: var(--black);
  font-size: clamp(40px, 12vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero {
  min-height: 100svh;
  padding: 110px max(20px, calc((100% - 1440px) / 2)) 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gray);
  font: 500 10px/1 "Geist Mono", monospace;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 67, 0.11);
}

.hero h1 {
  margin: auto 0 48px;
  max-width: 1380px;
  font-size: clamp(62px, 9.2vw, 148px);
  line-height: 0.83;
  font-weight: 800;
  letter-spacing: -0.085em;
}

.hero h1 span {
  display: block;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.hero-meta {
  padding: 0 0 45px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero-meta p {
  max-width: 630px;
  margin: 0;
  color: #c1c0bb;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.round-link {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.25s ease;
}

.round-link:hover {
  background: var(--lime);
  transform: rotate(-30deg);
}

.round-link svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.ticker {
  width: calc(100% + 80px);
  margin-left: -40px;
  overflow: hidden;
  color: var(--black);
  background: var(--lime);
  transform: rotate(-1deg);
}

.ticker div {
  width: max-content;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: ticker 24s linear infinite;
  font: 700 12px/1 "Geist Mono", monospace;
}

.ticker i {
  color: var(--orange);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 130px max(20px, calc((100% - 1440px) / 2));
}

.section-label {
  padding-top: 10px;
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
  color: var(--black);
}

.section-label.light {
  border-color: var(--line);
  color: var(--white);
}

.section-label span,
.section-label p {
  margin: 0;
  font: 500 10px/1 "Geist Mono", monospace;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  color: var(--black);
  background: var(--white);
}

.about-content .lead {
  max-width: 1060px;
  margin: 0 0 90px;
  font-size: clamp(39px, 5.3vw, 82px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
}

.portrait {
  margin: 0;
  min-height: 550px;
  position: relative;
  overflow: hidden;
  background: #dbdad5;
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.about-copy {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #dbdad5;
}

.about-copy > p {
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.fact-list {
  margin-top: 70px;
  border-top: 1px solid rgba(8, 8, 8, 0.28);
}

.fact-list div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid rgba(8, 8, 8, 0.28);
  font-size: 12px;
}

.fact-list span {
  color: #64645f;
}

.services {
  background: var(--black);
}

.services-heading {
  margin: 45px 0 95px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: end;
}

.services-heading h2,
.projects-intro h2 {
  margin: 0;
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.services-heading p,
.projects-intro p {
  margin: 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.5;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 160px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 0.35fr 1.2fr 1fr auto;
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, padding 0.25s ease, background 0.25s ease;
}

.service-item:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--black);
  background: var(--lime);
}

.service-item > span {
  font: 500 10px "Geist Mono", monospace;
}

.service-item h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.service-item p {
  max-width: 420px;
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.45;
}

.service-item:hover p {
  color: rgba(8, 8, 8, 0.68);
}

.service-item b {
  font-size: 25px;
  font-weight: 400;
}

.intelligence {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(156,124,255,.18), transparent 30%),
    radial-gradient(circle at 14% 72%, rgba(217,255,67,.1), transparent 24%),
    #080808;
}

.intelligence::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 80%, transparent);
}

.intelligence > * {
  position: relative;
}

.intelligence-heading {
  margin: 45px 0 90px 25%;
}

.intelligence-kicker {
  margin: 0 0 32px;
  color: var(--lime);
  font: 600 10px "Geist Mono", monospace;
  letter-spacing: .1em;
}

.intelligence-heading h2 {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(50px, 7.5vw, 112px);
  line-height: .88;
  letter-spacing: -.082em;
}

.intelligence-lead {
  max-width: 720px;
  margin: 45px 0 0 auto;
  color: #b9b8b3;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.42;
}

.lios-banner {
  min-height: clamp(520px, 63vw, 820px);
  margin: 0 0 90px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242,241,237,.28);
  background: #050505;
  isolation: isolate;
}

.lios-banner > img,
.lios-banner-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lios-banner > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.015);
  transition: transform 1.2s cubic-bezier(.2,.75,.25,1);
}

.lios-banner:hover > img {
  transform: scale(1.045);
}

.lios-banner-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.55) 34%, transparent 64%),
    linear-gradient(0deg, rgba(5,5,5,.96) 0%, transparent 52%),
    linear-gradient(180deg, rgba(5,5,5,.4), transparent 30%);
}

.lios-brand {
  max-width: 740px;
  padding: clamp(28px, 4vw, 58px);
}

.lios-brand > span,
.lios-brand > p {
  font: 600 9px "Geist Mono", monospace;
  letter-spacing: .13em;
}

.lios-brand > span {
  color: var(--lime);
}

.lios-brand strong {
  margin: 14px 0 7px;
  display: block;
  font-size: clamp(90px, 15vw, 220px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.1em;
}

.lios-brand strong em {
  color: var(--orange);
  font-size: .25em;
  font-style: normal;
  vertical-align: top;
}

.lios-brand > p {
  margin: 22px 0 0;
  color: #d8d7d1;
}

.lios-banner figcaption {
  padding: clamp(24px, 3.5vw, 48px);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 38%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 75px);
  align-items: end;
  border-top: 1px solid rgba(242,241,237,.28);
  background: rgba(5,5,5,.68);
  backdrop-filter: blur(14px);
}

.lios-banner figcaption h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 58px);
  line-height: .96;
  letter-spacing: -.06em;
}

.lios-banner figcaption p {
  margin: 0;
  color: #b9b8b3;
  font-size: 14px;
  line-height: 1.6;
}

.intelligence-console {
  border: 1px solid rgba(242,241,237,.28);
  background: rgba(17,17,17,.86);
  box-shadow: 26px 26px 0 rgba(156,124,255,.22);
  backdrop-filter: blur(18px);
}

.console-top {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
  font: 600 9px "Geist Mono", monospace;
  letter-spacing: .08em;
}

.console-top b {
  color: var(--lime);
}

.engine-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.engine-flow article {
  min-height: 330px;
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.engine-flow article:last-child {
  border-right: 0;
}

.engine-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 27px;
  right: -14px;
  z-index: 2;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
}

.engine-flow article > span,
.engine-flow article small,
.intelligence-value article > span {
  color: var(--violet);
  font: 600 9px "Geist Mono", monospace;
  letter-spacing: .08em;
}

.engine-flow h3 {
  margin: auto 0 18px;
  font-size: clamp(25px, 2.5vw, 39px);
  line-height: .98;
  letter-spacing: -.055em;
}

.engine-flow p {
  min-height: 66px;
  margin: 0 0 30px;
  color: #aaa9a4;
  font-size: 14px;
  line-height: 1.55;
}

.engine-flow article small {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--lime);
}

.intelligence-value {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intelligence-value article {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intelligence-value article > span {
  color: var(--orange);
}

.intelligence-value h3 {
  margin: auto 0 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.06em;
}

.intelligence-value p {
  max-width: 370px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.authorship-note {
  margin: 45px 0 0 25%;
  padding: 28px 0;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
  border-top: 1px solid var(--lime);
  border-bottom: 1px solid var(--line);
}

.authorship-note strong {
  color: var(--lime);
  font-size: 20px;
}

.authorship-note p {
  margin: 0;
  color: #b9b8b3;
  font-size: 15px;
  line-height: 1.65;
}

.projects {
  color: var(--black);
  background: var(--white);
}

.projects-intro {
  margin: 45px 0 90px 25%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: end;
}

.project-stack {
  display: grid;
  gap: 22px;
}

.project-card {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
}

.project-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--lime);
}

.project-violet .project-visual {
  color: var(--white);
  background: var(--violet);
}

.project-nogueira {
  background: #0a2c4d;
}

.project-nogueira > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 64% center;
  opacity: .82;
  transition: transform .7s cubic-bezier(.2,.75,.25,1), opacity .4s ease;
}

.project-nogueira::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,44,77,.95), rgba(10,44,77,.18) 68%, rgba(8,8,8,.08));
}

.project-nogueira:hover > img {
  transform: scale(1.035);
  opacity: 1;
}

.project-tripoli {
  background: #103f2b;
}

.project-tripoli img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 34%;
  opacity: .78;
  transition: transform .7s cubic-bezier(.2,.75,.25,1), opacity .4s ease;
}

.project-tripoli::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.94), rgba(16,63,43,.28) 72%, rgba(8,8,8,.08));
}

.project-tripoli:hover > img {
  transform: scale(1.035);
  opacity: .92;
}

.project-tripoli .project-code,
.project-tripoli small,
.project-tripoli .project-browser {
  z-index: 2;
  color: var(--white);
}

.project-nogueira .project-code,
.project-nogueira small,
.project-browser {
  z-index: 2;
  color: var(--white);
}

.project-browser {
  width: min(76%, 640px);
  min-height: 220px;
  padding: 14px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(8,8,8,.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.project-browser > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.project-browser > span:nth-child(2) { background: var(--orange); }
.project-browser > span:nth-child(3) { background: var(--violet); }

.project-browser b {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font: 600 clamp(17px, 2.4vw, 34px)/1 "Geist Mono", monospace;
  text-align: right;
}

.project-case-link {
  margin: auto 0 25px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(8,8,8,.28);
  border-bottom: 1px solid rgba(8,8,8,.28);
  font-size: 13px;
  font-weight: 700;
}

.project-case-link b {
  font-size: 18px;
  transition: transform .2s ease;
}

.project-case-link:hover b {
  transform: translate(4px, -4px);
}

.project-code {
  position: absolute;
  top: 20px;
  left: 20px;
  font: 600 10px "Geist Mono", monospace;
}

.project-visual small {
  position: absolute;
  right: 20px;
  bottom: 17px;
  font: 500 9px "Geist Mono", monospace;
  text-transform: uppercase;
}

.visual-orbit {
  width: min(52vw, 470px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 8, 8, 0.25);
  border-radius: 50%;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 8, 8, 0.25);
  border-radius: 50%;
}

.visual-orbit::before { inset: 17%; }
.visual-orbit::after { inset: 35%; }

.visual-orbit strong {
  z-index: 1;
  font-size: clamp(75px, 13vw, 180px);
  letter-spacing: -0.15em;
  transform: translateX(-0.08em);
}

.visual-orbit i {
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
}

.visual-orbit i:nth-child(1) { top: -8px; }
.visual-orbit i:nth-child(2) { right: 8%; bottom: 12%; }
.visual-orbit i:nth-child(3) { bottom: 20%; left: 2%; }

.visual-cross {
  font-size: clamp(170px, 30vw, 430px);
  font-weight: 200;
  line-height: 0.5;
  animation: rotate 16s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.project-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #d8d7d1;
}

.project-violet .project-info {
  color: var(--white);
  background: var(--black-soft);
}

.project-etranslink {
  color: var(--white);
  background: #071710;
}

.project-etranslink > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: .76;
  transition: transform .7s cubic-bezier(.2,.75,.25,1), opacity .4s ease;
}

.project-etranslink::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,23,16,.96), rgba(7,23,16,.28) 72%, rgba(8,8,8,.12));
}

.project-etranslink .project-code,
.project-etranslink > small,
.project-etranslink .project-browser { z-index: 2; }
.project-etranslink:hover > img { transform: scale(1.035); opacity: .92; }

.project-etranslink-card .project-info {
  color: #071710;
  background: #ccff00;
}
.project-etranslink-card .project-info p { color: #284025; }

.project-lios {
  color: var(--white);
  background: #050505;
}

.project-lios > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: .88;
  transition: transform .7s cubic-bezier(.2,.75,.25,1), opacity .4s ease;
}

.project-lios::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.12) 72%);
}

.project-lios .project-code,
.project-lios > small,
.project-lios .project-browser { z-index: 2; }
.project-lios:hover > img { transform: scale(1.035); opacity: 1; }

.project-lios-card .project-info {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(156,124,255,.35), transparent 28%),
    #111;
}

.project-lios-card .project-info p { color: #b9b8b3; }

.project-info > span {
  font: 500 10px "Geist Mono", monospace;
  text-transform: uppercase;
}

.project-info h3 {
  margin: auto 0 18px;
  font-size: clamp(34px, 4.2vw, 65px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.project-info p {
  margin: 0 0 28px;
  color: #575752;
  font-size: 15px;
  line-height: 1.45;
}

.project-violet .project-info p {
  color: var(--gray);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tags b {
  padding: 7px 9px;
  border: 1px solid currentColor;
  font: 500 9px "Geist Mono", monospace;
  text-transform: uppercase;
}

.contact {
  min-height: 820px;
  display: flex;
  flex-direction: column;
  background: var(--orange);
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.contact .section-label {
  color: var(--black);
  border-color: rgba(8, 8, 8, 0.35);
}

.timezone {
  padding-top: 10px;
  color: var(--black);
  font: 500 10px "Geist Mono", monospace;
}

.contact-main {
  margin-top: auto;
  color: var(--black);
}

.contact-main h2 {
  margin: 90px 0 35px;
  font-size: clamp(65px, 10.5vw, 160px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.contact-main h2 span,
.contact-main h2 em {
  display: block;
}

.contact-main h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--black);
}

.contact-main > p {
  max-width: 600px;
  margin: 0 0 38px auto;
  font-size: 19px;
  line-height: 1.4;
}

.office-section {
  margin: 75px 0 55px;
}

.office-heading {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) 1.35fr;
  gap: 35px;
  align-items: end;
}

.office-heading > span,
.office-country,
.coordinates {
  font: 600 10px "Geist Mono", monospace;
  letter-spacing: 0.08em;
}

.office-heading h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.office-card {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.office-map {
  height: 265px;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 8, 8, 0.55);
  background: #d8d2c4;
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.office-info {
  min-height: 265px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.office-info h4 {
  margin: 8px 0 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.office-info address {
  margin: 26px 0 12px;
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.coordinates {
  margin: 0 0 25px;
  opacity: 0.7;
}

.office-info > a {
  margin-top: auto;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(8, 8, 8, 0.55);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.office-info > a b {
  font-size: 19px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.office-info > a:hover b {
  transform: translate(4px, -4px);
}

.contact-actions {
  margin-left: auto;
  max-width: 600px;
}

.contact-cta {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--black);
  font-size: 18px;
  font-weight: 600;
}

.contact-cta:last-child {
  border-bottom: 1px solid var(--black);
}

.contact-channel {
  display: grid;
  gap: 5px;
}

.contact-channel small {
  font: 500 10px "Geist Mono", monospace;
  letter-spacing: 0.02em;
  opacity: 0.72;
}

.contact-cta b {
  font-size: 25px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.contact-cta:hover b {
  transform: translate(5px, -5px);
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  width: min(620px, calc(100% - 44px));
  padding: 27px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy > span {
  color: var(--orange);
  font: 600 9px "Geist Mono", monospace;
  letter-spacing: 0.08em;
}

.consent-copy h2 {
  margin: 10px 0 9px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.consent-copy p {
  max-width: 410px;
  margin: 0;
  color: #aaa;
  font-size: 12px;
  line-height: 1.55;
}

.consent-actions {
  display: grid;
  gap: 8px;
  min-width: 185px;
}

.consent-actions button {
  min-height: 43px;
  padding: 0 14px;
  border: 1px solid var(--orange);
  font: 650 10px "Geist Mono", monospace;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-primary {
  background: var(--orange);
  color: var(--black);
}

.consent-secondary {
  background: transparent;
  color: var(--white);
}

footer {
  padding: 70px max(20px, calc((100% - 1440px) / 2)) 25px;
  overflow: hidden;
  background: var(--black);
}

.footer-title {
  font-size: clamp(72px, 15.3vw, 230px);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: -0.105em;
}

.footer-title span {
  display: block;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font: 500 10px "Geist Mono", monospace;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  margin-top: 28px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: .8fr 1fr 1.8fr;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font: 500 9px/1.6 "Geist Mono", monospace;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.footer-legal[hidden] {
  display: none;
}

.footer-legal p {
  margin: 0;
}

.footer-legal strong {
  color: var(--white);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.75,.25,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .language-switcher {
    display: none;
  }

  .hero h1 {
    margin-top: auto;
    font-size: clamp(58px, 16.5vw, 95px);
  }

  .hero-meta {
    align-items: flex-end;
  }

  .hero-meta p {
    font-size: 16px;
  }

  .round-link {
    width: 58px;
    height: 58px;
  }

  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-content .lead {
    margin-bottom: 55px;
  }

  .about-grid,
  .services-heading,
  .authorship-note,
  .projects-intro,
  .project-card {
    grid-template-columns: 1fr;
  }

  .portrait,
  .portrait img {
    min-height: 430px;
  }

  .services-heading,
  .projects-intro {
    gap: 32px;
  }

  .intelligence-heading,
  .authorship-note {
    margin-left: 0;
  }

  .lios-banner figcaption {
    left: 0;
    grid-template-columns: 1fr;
  }

  .engine-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .engine-flow article:nth-child(2) {
    border-right: 0;
  }

  .engine-flow article:nth-child(2)::after {
    display: none;
  }

  .engine-flow article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .intelligence-value {
    grid-template-columns: 1fr;
  }

  .projects-intro {
    margin-left: 0;
  }

  .service-item {
    grid-template-columns: 35px 1fr auto;
  }

  .service-item p {
    grid-column: 2;
  }

  .service-item b {
    grid-area: 1 / 3 / 2 / 4;
  }

  .project-card {
    min-height: 0;
  }

  .project-info {
    min-height: 380px;
  }

  .visual-orbit {
    width: min(78vw, 420px);
  }

  .contact {
    min-height: 700px;
  }

  .contact-main > p,
  .contact-actions {
    margin-left: 0;
  }

  .office-heading {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 500px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header,
  .hero,
  .section,
  footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .identity {
    width: 155px;
    height: 48px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero h1 {
    margin-bottom: 38px;
  }

  .ticker {
    margin-top: 15px;
  }

  .about-copy {
    padding: 24px;
  }

  .project-visual {
    min-height: 400px;
  }

  .intelligence-heading {
    margin-bottom: 60px;
  }

  .intelligence-heading h2 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .lios-banner {
    min-height: 690px;
    margin-bottom: 60px;
  }

  .lios-banner > img {
    object-position: 55% center;
  }

  .lios-banner-shade {
    background:
      linear-gradient(180deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.35) 45%, rgba(5,5,5,.96) 78%),
      linear-gradient(90deg, rgba(5,5,5,.68), transparent);
  }

  .lios-brand strong {
    font-size: clamp(88px, 34vw, 145px);
  }

  .lios-banner figcaption {
    padding: 24px 20px;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .engine-flow {
    grid-template-columns: 1fr;
  }

  .engine-flow article,
  .engine-flow article:nth-child(2) {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .engine-flow article:not(:last-child)::after {
    display: grid;
    top: auto;
    right: 20px;
    bottom: -14px;
    transform: rotate(90deg);
  }

  .engine-flow article:last-child {
    border-bottom: 0;
  }

  .authorship-note {
    gap: 18px;
  }

  .contact-top {
    grid-template-columns: 1fr;
  }

  .timezone {
    display: none;
  }

  .office-section {
    margin-top: 55px;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .office-map {
    height: 145px;
  }

  .office-info {
    min-height: 285px;
    padding: 14px 12px;
  }

  .office-info h4 {
    font-size: 20px;
  }

  .office-country,
  .coordinates {
    font-size: 8px;
    letter-spacing: 0.03em;
  }

  .office-info address {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.45;
  }

  .office-info > a {
    gap: 8px;
    font-size: 9px;
    line-height: 1.3;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
