:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --paper: #f0efe9;
  --paper-2: #deddd6;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(10, 10, 10, 0.18);
  --text-muted-dark: rgba(255, 255, 255, 0.58);
  --text-muted-light: rgba(10, 10, 10, 0.58);
  --acid: #d8ff3e;
  --violet: #7867ff;
  --coral: #ff5c35;
  --cyan: #5be7f3;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shell: min(1760px, calc(100vw - 64px));
  --header-height: 88px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Unbounded", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  mix-blend-mode: normal;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  font: inherit;
  background: transparent;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.skip-link {
  position: fixed;
  z-index: 1001;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-dark {
  position: relative;
  color: var(--paper);
  background: var(--ink);
}

.section-light {
  position: relative;
  color: var(--ink);
  background: var(--paper);
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
  transition:
    opacity 520ms cubic-bezier(0.7, 0, 0.3, 1),
    visibility 520ms;
}

.page-loader::before {
  content: "IT.W";
  font: 500 clamp(4rem, 14vw, 13rem) / 0.8 var(--font-display);
  letter-spacing: -0.08em;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--acid);
}

.loader__meta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cursor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  transform: translate3d(-50%, -50%, 0);
  transition:
    width 220ms ease,
    height 220ms ease,
    background 220ms ease;
  pointer-events: none;
}

.cursor.is-viewing {
  width: 88px;
  height: 88px;
}

.cursor__label {
  opacity: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}

.cursor.is-viewing .cursor__label {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 32px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  background: rgba(10, 10, 10, 0.64);
  backdrop-filter: blur(16px);
  transition:
    height 300ms ease,
    background 300ms ease;
}

.site-header.is-compact {
  --header-height: 70px;
  background: rgba(10, 10, 10, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 200px;
  font: 600 15px / 1 var(--font-display);
  letter-spacing: -0.04em;
}

.brand__mark {
  color: var(--acid);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 56px);
  margin: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 200px;
}

.language-switch {
  display: flex;
  gap: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 700;
}

.lang-button {
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--paper);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease;
}

.header-cta svg {
  width: 17px;
  stroke-width: 1.5;
}

.header-cta:hover {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 280ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 24px 24px;
  color: var(--paper);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 650ms cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.is-open {
  clip-path: inset(0);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font: 400 clamp(2.1rem, 11vw, 4.5rem) / 1 var(--font-display);
  letter-spacing: -0.032em;
}

.mobile-menu nav a span:first-child {
  color: var(--acid);
  font: 500 10px / 1 var(--font-body);
}

.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 54px) clamp(40px, 4vw, 76px) 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 24.8%, rgba(255, 255, 255, 0.035) 25%, transparent 25.2%),
    linear-gradient(90deg, transparent 74.8%, rgba(255, 255, 255, 0.035) 75%, transparent 75.2%);
}

.hero__noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero__orb {
  position: absolute;
  z-index: -2;
  top: -28vw;
  right: -13vw;
  width: min(75vw, 1100px);
  aspect-ratio: 1;
  border-radius: 42% 58% 63% 37% / 46% 39% 61% 54%;
  background:
    radial-gradient(circle at 28% 62%, rgba(216, 255, 62, 0.42), transparent 22%),
    radial-gradient(circle at 58% 52%, rgba(120, 103, 255, 0.7), transparent 43%),
    radial-gradient(circle at 38% 32%, rgba(255, 92, 53, 0.58), transparent 36%);
  filter: blur(20px) saturate(125%);
  animation: orbMorph 12s ease-in-out infinite alternate;
}

@keyframes orbMorph {
  0% {
    border-radius: 42% 58% 63% 37% / 46% 39% 61% 54%;
    transform: rotate(-4deg) scale(0.96);
  }
  100% {
    border-radius: 57% 43% 38% 62% / 39% 59% 41% 61%;
    transform: rotate(8deg) scale(1.05);
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: var(--text-muted-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 62, 0.1);
}

.availability-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.hero__eyebrow-index {
  margin-left: auto;
}

.hero__title {
  margin: clamp(50px, 7vh, 100px) 0 clamp(64px, 8vh, 120px);
  font: 400 clamp(3.8rem, 7.3vw, 9.2rem) / 0.84 var(--font-display);
  letter-spacing: -0.042em;
  text-transform: uppercase;
}

.title-line {
  display: flex;
  align-items: baseline;
  gap: 0.24em;
  overflow: hidden;
}

.title-line--second {
  position: relative;
  justify-content: flex-end;
  overflow: visible;
}

.title-line--third {
  position: relative;
  justify-content: center;
}

.title-word {
  display: inline-block;
  transform: translateY(120%);
  animation: titleIn 1s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.title-line--second .title-word {
  animation-delay: 0.12s;
}

.title-line--third .title-word {
  animation-delay: 0.22s;
}

.title-word--accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
  font-style: italic;
}

@keyframes titleIn {
  to {
    transform: translateY(0);
  }
}

.scribble {
  position: absolute;
  left: 8%;
  bottom: -18px;
  width: clamp(80px, 9vw, 150px);
  color: var(--acid);
  transform: rotate(-5deg);
}

.scribble svg {
  stroke-width: 3;
}

.hero__footer {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(280px, 0.75fr) auto;
  align-items: end;
  gap: clamp(32px, 7vw, 130px);
  padding-bottom: 52px;
}

.founder-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  max-width: 500px;
  transform-style: preserve-3d;
}

.founder-card__portrait {
  position: relative;
  height: 144px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #222;
}

.founder-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.portrait-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(216, 255, 62, 0.35), transparent);
  transform: translateY(-100%);
  animation: scan 4s linear infinite;
  mix-blend-mode: color;
}

@keyframes scan {
  100% {
    transform: translateY(100%);
  }
}

.founder-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.founder-card__role {
  margin-bottom: 20px;
  color: var(--text-muted-dark);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-card__copy strong {
  font: 500 18px / 1.1 var(--font-display);
  letter-spacing: -0.04em;
}

.founder-card__copy p {
  max-width: 320px;
  margin: 9px 0 0;
  color: var(--text-muted-dark);
  font-size: 12px;
  line-height: 1.55;
}

.hero__statement {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.55;
}

.round-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: clamp(220px, 17vw, 280px);
  padding: 7px 7px 7px 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 100px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    color 320ms ease,
    background 320ms ease,
    transform 320ms ease;
}

.round-cta:hover {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.round-cta svg {
  display: block;
  width: 58px;
  height: 58px;
  padding: 15px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
}

.round-cta:hover svg path {
  transform: translateX(5px);
}

.direction-icon {
  display: block;
  overflow: visible;
}

.direction-icon path {
  fill: currentColor;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 320ms ease;
}

.hero__ticker {
  margin: 0 calc(clamp(40px, 4vw, 76px) * -1);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  color: var(--ink);
  background: var(--acid);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker__track span {
  padding-right: 0.5em;
  font: 500 clamp(1.7rem, 3.1vw, 4rem) / 1 var(--font-display);
  letter-spacing: -0.026em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.section-heading {
  position: relative;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 36px;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 46px;
  height: 1px;
  margin: 0.65em 12px 0 0;
  background: currentColor;
}

.section-heading h2 {
  margin: 0;
  font: 400 clamp(2.8rem, 5.8vw, 7rem) / 0.97 var(--font-display);
  letter-spacing: -0.042em;
  text-transform: uppercase;
}

.section-heading > p,
.section-heading--row > p {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--text-muted-dark);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-light .section-heading--row > p {
  color: var(--text-muted-light);
}

.process {
  padding: clamp(100px, 13vw, 220px) 0;
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(60px, 9vw, 180px);
}

.process__heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

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

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 36px 18px 42px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-item__number {
  color: var(--text-muted-dark);
  font-size: 10px;
}

.process-item h3 {
  margin: 0;
  font: 500 clamp(1.45rem, 2.6vw, 3.1rem) / 1.1 var(--font-display);
  letter-spacing: -0.028em;
  text-transform: uppercase;
}

.process-item p {
  max-width: 580px;
  margin: 14px 0 0;
  color: var(--text-muted-dark);
  font-size: 14px;
}

.services {
  padding: clamp(100px, 12vw, 200px) 0;
}

.services-list {
  margin-top: clamp(72px, 9vw, 140px);
  border-top: 1px solid var(--line-light);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr minmax(160px, 0.35fr) 44px;
  align-items: center;
  gap: 26px;
  min-height: 190px;
  padding: 26px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  transition: color 260ms ease;
}

.service-row::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(100deg, #ff7655, #ff9a78);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 460ms cubic-bezier(0.22, 0.78, 0.2, 1);
}

.service-row > * {
  position: relative;
  z-index: 1;
}

.service-row:hover::before {
  transform: scaleX(1);
}

.service-row:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.service-row__number {
  font-size: 10px;
}

.service-row h3 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(1.55rem, 3.35vw, 4rem) / 1.03 var(--font-display);
  letter-spacing: -0.032em;
  text-transform: uppercase;
  transition: transform 420ms cubic-bezier(0.22, 0.78, 0.2, 1);
}

.service-row:hover h3 {
  transform: translateX(10px);
}

.service-row__title p {
  max-width: 640px;
  margin: 15px 0 0;
  color: var(--text-muted-light);
  font-size: 13px;
}

.service-row__meta {
  display: grid;
  gap: 2px;
  font-size: 11px;
  text-transform: uppercase;
}

.service-row__meta strong {
  font-size: clamp(18px, 1.6vw, 27px);
}

.service-row__meta small {
  margin-top: 6px;
  color: var(--text-muted-light);
  font-size: 10px;
}

.service-row__arrow {
  font-size: 28px;
  transition: transform 300ms ease;
}

.service-row:hover .service-row__arrow {
  transform: rotate(45deg);
}

.extra-service {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  margin-top: 70px;
  padding-top: 0;
}

.extra-service__badge {
  display: flex;
  align-items: center;
  gap: 18px;
  align-self: start;
  font: 500 clamp(1.5rem, 3vw, 3.5rem) / 1 var(--font-display);
  letter-spacing: -0.032em;
  text-transform: uppercase;
}

.extra-service__badge span:first-child {
    display: none !important;
  display: grid;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  place-items: center;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(1turn);
  }
}

.extra-service > p {
  max-width: 700px;
  margin: 0;
  color: var(--text-muted-light);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
}

.benefits {
  padding: clamp(100px, 13vw, 220px) 0;
  overflow: hidden;
}

.benefits__glow {
  position: absolute;
  top: 0;
  left: 44%;
  width: 60vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 103, 255, 0.22), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(390px, auto);
  gap: 14px;
  margin-top: clamp(72px, 9vw, 140px);
  perspective: 1200px;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  transform-style: preserve-3d;
}

.benefit-card--wide {
  grid-column: span 2;
}

.benefit-card__number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--text-muted-dark);
  font-size: 10px;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font: 500 clamp(1.5rem, 2.6vw, 3.2rem) / 1.02 var(--font-display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transform: translateZ(35px);
}

.benefit-card p {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--text-muted-dark);
  font-size: 13px;
  transform: translateZ(25px);
}

.benefit-card__signal {
  position: absolute;
  top: 70px;
  right: 35px;
  left: 35px;
  display: flex;
  align-items: center;
  height: 140px;
}

.benefit-card__signal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--line-dark);
}

.benefit-card__signal span {
  position: absolute;
  width: clamp(35px, 5vw, 82px);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  transition: transform 500ms ease;
}

.benefit-card__signal span:nth-child(1) {
  left: 0;
}

.benefit-card__signal span:nth-child(2) {
  left: 28%;
}

.benefit-card__signal span:nth-child(3) {
  left: 56%;
}

.benefit-card__signal span:nth-child(4) {
  right: 0;
  border-color: var(--acid);
  background: var(--acid);
}

.benefit-card:hover .benefit-card__signal span:nth-child(even) {
  transform: translateY(-16px);
}

.benefit-card:hover .benefit-card__signal span:nth-child(odd) {
  transform: translateY(16px);
}

.benefit-card__orbit {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transform: translateX(-50%);
}

.benefit-card__orbit::before,
.benefit-card__orbit::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.benefit-card__orbit::after {
  inset: 56px;
  background: var(--violet);
  box-shadow: 0 0 50px rgba(120, 103, 255, 0.75);
}

.benefit-card__orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--line-dark);
  transform-origin: center;
}

.benefit-card__orbit i:nth-child(2) {
  transform: rotate(60deg);
}

.benefit-card__orbit i:nth-child(3) {
  transform: rotate(120deg);
}

.benefit-card--accent {
  color: var(--ink);
  background: var(--acid);
}

.benefit-card--accent .benefit-card__number,
.benefit-card--accent p {
  color: rgba(10, 10, 10, 0.62);
}

.benefit-card__stamp {
  position: absolute;
  top: 50px;
  left: 50%;
  display: grid;
  width: 185px;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 10, 10, 0.3);
  border-radius: 50%;
  font: 500 26px / 1 var(--font-display);
  letter-spacing: -0.06em;
  transform: translateX(-50%) rotate(-14deg);
  place-items: center;
}

.benefit-card__stamp::before,
.benefit-card__stamp::after {
  content: "SCOPE • BUDGET • TIMING •";
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(10, 10, 10, 0.35);
  border-radius: 50%;
  padding-top: 12px;
  font: 700 8px / 1 var(--font-body);
  letter-spacing: 0.21em;
  text-align: center;
}

.benefit-card--photo {
  min-height: 450px;
  isolation: isolate;
}

.benefit-card__photo-wrap {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.benefit-card__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.88)),
    linear-gradient(90deg, transparent, rgba(120, 103, 255, 0.25));
}

.benefit-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.04);
  transition:
    filter 650ms ease,
    transform 650ms ease;
}

.benefit-card--photo:hover img {
  filter: grayscale(0.1) contrast(1.05);
  transform: scale(1);
}

.benefits-system {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1.08fr);
  gap: 14px;
  margin-top: clamp(72px, 9vw, 140px);
}

.benefits-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 255, 62, 0.12), transparent 24%),
    radial-gradient(circle at 80% 12%, rgba(255, 118, 85, 0.11), transparent 25%),
    rgba(255, 255, 255, 0.025);
  isolation: isolate;
}

.benefits-visual::before,
.benefits-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--line-dark);
}

.benefits-visual::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.benefits-visual::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.system-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 239, 233, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(216, 255, 62, 0.7);
}

.system-orbit--outer {
  width: min(78%, 480px);
  animation: system-spin 18s linear infinite;
}

.system-orbit--inner {
  width: min(49%, 300px);
  border-style: dashed;
  animation: system-spin-reverse 14s linear infinite;
}

.system-orbit--inner::before {
  top: auto;
  right: 18%;
  bottom: 2%;
  left: auto;
  background: var(--coral);
  box-shadow: 0 0 24px rgba(255, 118, 85, 0.7);
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 148px;
  aspect-ratio: 1;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  transform: translate(-50%, -50%);
  place-content: center;
  text-align: center;
  box-shadow: 0 0 70px rgba(216, 255, 62, 0.18);
}

.system-core strong {
  margin: 5px 0 3px;
  font: 500 2.35rem / 0.9 var(--font-display);
  letter-spacing: -0.035em;
}

.system-core span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.system-node {
  position: absolute;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: var(--text-muted-dark);
  background: #101010;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.system-node--one {
  top: 12%;
  left: 11%;
}

.system-node--two {
  top: 16%;
  right: 10%;
}

.system-node--three {
  right: 8%;
  bottom: 20%;
}

.system-node--four {
  bottom: 15%;
  left: 10%;
}

.system-caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted-dark);
  font-size: 8px;
  letter-spacing: 0.13em;
}

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

.benefit-line {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 20px;
  align-items: start;
  min-height: 154px;
  padding: 30px 18px 31px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  transition:
    padding-left 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 300ms ease;
}

.benefit-line::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(216, 255, 62, 0.1), transparent 76%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-line:hover {
  padding-left: 16px;
  border-color: rgba(216, 255, 62, 0.55);
}

.benefit-line:hover::before {
  transform: scaleX(1);
}

.benefit-line__number {
  padding-top: 7px;
  color: var(--text-muted-dark);
  font-size: 9px;
}

.benefit-line h3 {
  margin: 0;
  font: 500 clamp(1.65rem, 2.55vw, 3.15rem) / 0.96 var(--font-display);
  letter-spacing: -0.028em;
  text-transform: uppercase;
}

.benefit-line p {
  max-width: 600px;
  margin: 13px 0 0;
  color: var(--text-muted-dark);
  font-size: 12px;
  line-height: 1.55;
}

.benefit-line__mark {
  padding-top: 4px;
  color: var(--acid);
  font-size: 18px;
  transition: transform 320ms ease;
}

.benefit-line:hover .benefit-line__mark {
  transform: scale(1.5);
}

@keyframes system-spin {
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

@keyframes system-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}

.work {
  padding: clamp(100px, 13vw, 220px) 0;
}

.work__heading {
  margin-bottom: clamp(72px, 10vw, 160px);
}

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

.project-card {
  display: block;
  color: var(--ink);
}

.project-card--large {
  grid-column: span 2;
}

.project-card--wide {
  grid-column: span 2;
}

.project-card__visual {
  position: relative;
  min-height: clamp(430px, 46vw, 760px);
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.project-card:not(.project-card--large, .project-card--wide) .project-card__visual {
  min-height: clamp(430px, 44vw, 700px);
}

.project-tag {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 22px;
  padding: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-card__info {
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 20px;
}

.project-card__info > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted-light);
  font-size: 9px;
}

.project-card__info h3 {
  margin: 0;
  font: 500 clamp(1.35rem, 2vw, 2.3rem) / 1 var(--font-display);
  letter-spacing: -0.026em;
  text-transform: uppercase;
}

.project-card__info p {
  margin: 0;
  color: var(--text-muted-light);
  font-size: 12px;
}

.project-card__arrow {
  display: grid;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.07);
  place-items: center;
  transition:
    color 250ms ease,
    background 250ms ease,
    transform 250ms ease;
}

.project-card:hover .project-card__arrow {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.project-card:hover .project-card__arrow .direction-icon path {
  transform: translateX(5px);
}

.project-card__arrow .direction-icon {
  width: 21px;
  height: 21px;
}

.project-card__visual--funny {
  color: #14110b;
  background:
    radial-gradient(circle at 80% 20%, #ffca36, transparent 26%),
    linear-gradient(135deg, #ff7738, #f8b928 70%, #d8ff3e);
}

.project-card__visual--funny::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, #000 19px 20px);
}

.visual-browser {
  position: absolute;
  top: 11%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  overflow: hidden;
  border: 4px solid #151515;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(35, 16, 4, 0.35);
  transform: rotate(-3deg);
}

.visual-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: #161616;
}

.visual-browser__bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0efe9;
}

.visual-browser__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 34px);
  padding: clamp(22px, 4vw, 70px);
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 60%, rgba(255, 92, 53, 0.65), transparent 24%),
    #111;
}

.mini-label {
  font-size: 9px;
  letter-spacing: 0.1em;
}

.visual-browser__content strong {
  font: 500 clamp(2.2rem, 6vw, 7.5rem) / 0.83 var(--font-display);
  letter-spacing: -0.08em;
}

.visual-browser__content em {
  color: var(--acid);
  font-style: normal;
}

.mini-button {
  align-self: flex-start;
  padding: 10px 15px;
  border-radius: 100px;
  color: var(--ink);
  background: var(--acid);
  font-size: 9px;
  font-weight: 700;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  border: 2px solid #151515;
  border-radius: 50%;
  color: var(--paper);
  background: var(--violet);
  font: 600 12px / 1 var(--font-display);
  place-items: center;
  animation: float 4s ease-in-out infinite;
}

.floating-chip--one {
  top: 17%;
  right: 4%;
}

.floating-chip--two {
  bottom: 12%;
  left: 5%;
  width: 92px;
  background: var(--coral);
  animation-delay: -2s;
}

@keyframes float {
  50% {
    translate: 0 -15px;
  }
}

.project-card__visual--labels {
  color: var(--paper);
  background: #182a27;
}

.project-card__visual--labels::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 36%, rgba(91, 231, 243, 0.32), transparent 32%),
    linear-gradient(115deg, transparent 45%, rgba(216, 255, 62, 0.16));
}

.label-roll {
  position: absolute;
  top: 15%;
  right: -8%;
  left: -8%;
  display: grid;
  gap: 6px;
  transform: rotate(-9deg);
}

.label-roll span {
  color: var(--paper);
  font: 500 clamp(3.7rem, 8vw, 9rem) / 0.75 var(--font-display);
  letter-spacing: -0.09em;
  text-align: center;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

.label-roll span:nth-child(2) {
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.label-grid {
  position: absolute;
  right: 5%;
  bottom: 5%;
  left: 5%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.label-grid i {
  display: grid;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  place-items: center;
}

.project-card__visual--auto {
  color: #f7f8ef;
  background:
    radial-gradient(circle at 38% 35%, rgba(91, 231, 243, 0.35), transparent 30%),
    #071a27;
}

.project-card__visual--auto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 45px 45px;
}

.auto-rings span {
  position: absolute;
  top: 15%;
  right: -20%;
  width: 76%;
  aspect-ratio: 1;
  border: clamp(28px, 5vw, 70px) solid var(--cyan);
  border-radius: 50%;
  filter: blur(0.5px);
}

.auto-rings span:nth-child(2) {
  top: 28%;
  right: -8%;
  width: 50%;
  border-width: 1px;
  border-color: var(--acid);
}

.auto-copy {
  position: absolute;
  right: 7%;
  bottom: 7%;
  left: 7%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.auto-copy small {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.auto-copy strong {
  font: 500 clamp(2rem, 4.2vw, 4.7rem) / 0.86 var(--font-display);
  letter-spacing: -0.07em;
  text-align: right;
}

.project-card__visual--energy {
  color: var(--paper);
  background:
    radial-gradient(circle at 40% 25%, rgba(120, 103, 255, 0.86), transparent 28%),
    linear-gradient(135deg, #0a0a0a, #15112f);
}

.project-card__visual--energy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(216, 255, 62, 0.08));
}

.energy-sphere {
  position: absolute;
  top: -16%;
  right: 8%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 35% 35%, transparent 0 9px, rgba(255, 255, 255, 0.16) 10px 11px),
    radial-gradient(circle at 34% 30%, #d8ff3e, #7867ff 45%, #15112f 72%);
  filter: drop-shadow(0 35px 50px rgba(120, 103, 255, 0.35));
}

.energy-title {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 7%;
}

.energy-title small {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.energy-title strong {
  display: block;
  margin-top: 30px;
  font: 500 clamp(2.7rem, 6.4vw, 7.6rem) / 0.86 var(--font-display);
  letter-spacing: -0.08em;
}

.energy-title em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--paper);
}

.energy-meter {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 15px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.energy-meter span {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.energy-meter b {
  color: var(--acid);
  font: 500 24px / 1 var(--font-display);
}

.project-card__visual--hatico {
  min-height: clamp(430px, 38vw, 640px);
  color: #f0efe9;
  background:
    radial-gradient(circle at 70% 50%, rgba(216, 255, 62, 0.34), transparent 30%),
    #18372e;
}

.chair-shape {
  position: absolute;
  top: 16%;
  right: 10%;
  bottom: 8%;
  width: 35%;
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.32));
}

.chair-shape span {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #252525, #050505);
}

.chair-shape__head {
  top: 0;
  left: 28%;
  width: 45%;
  height: 22%;
  border-radius: 42% 42% 20% 20%;
}

.chair-shape__back {
  top: 18%;
  left: 10%;
  width: 80%;
  height: 62%;
  border-radius: 45% 45% 28% 28% / 25% 25% 55% 55%;
  transform: perspective(300px) rotateX(-8deg);
}

.chair-shape__base {
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  border-radius: 50% 50% 16% 16%;
}

.hatico-type {
  position: absolute;
  top: 25%;
  left: 7%;
}

.hatico-type span {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.hatico-type strong {
  display: block;
  margin-top: 28px;
  font: 500 clamp(2.7rem, 6vw, 7rem) / 0.87 var(--font-display);
  letter-spacing: -0.08em;
}

.project-card__visual {
  display: grid;
  place-items: center;
  padding: clamp(68px, 7vw, 118px);
}

.project-card__visual--funny {
  background:
    radial-gradient(circle at 83% 16%, #ffd83d, transparent 32%),
    linear-gradient(135deg, #ff7955, #ffb234 70%, #e4ff69);
}

.project-card__visual--labels {
  background:
    radial-gradient(circle at 18% 14%, rgba(127, 189, 255, 0.32), transparent 30%),
    linear-gradient(145deg, #172b43, #274362);
}

.project-card__visual--auto {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 118, 85, 0.5), transparent 31%),
    linear-gradient(145deg, #dfddd4, #f4f2eb);
}

.project-card__visual--energy {
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 255, 62, 0.2), transparent 34%),
    linear-gradient(145deg, #132548, #0c162a);
}

.project-card__visual--hatico {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, #d7cec0, #b9a998);
}

.project-shot {
  position: relative;
  z-index: 2;
  width: min(86%, 1320px);
  overflow: hidden;
  border: 4px solid #131313;
  border-radius: 22px;
  background: #131313;
  box-shadow: 0 34px 78px rgba(5, 5, 5, 0.32);
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-shot--tilt-left {
  transform: rotate(-2.3deg);
}

.project-shot--tilt-right {
  transform: rotate(2deg);
}

.project-shot--portrait {
  width: min(84%, 660px);
  transform: rotate(-1.5deg);
}

.project-shot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 14px;
  color: rgba(240, 239, 233, 0.58);
  background: #131313;
}

.project-shot__bar > span {
  display: flex;
  gap: 6px;
}

.project-shot__bar i {
  display: block;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
}

.project-shot__bar small {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.project-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: top;
  transition:
    filter 650ms ease,
    transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:not(.project-card--large, .project-card--wide) .project-shot img {
  aspect-ratio: 4 / 3;
}

.project-shot__note {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 100px;
  background: rgba(240, 239, 233, 0.72);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.project-card:hover .project-shot {
  transform: translateY(-9px) rotate(0);
}

.project-card:hover .project-shot img {
  filter: saturate(1.07) contrast(1.02);
  transform: scale(1.025);
}

.project-card__visual--cover {
  aspect-ratio: 1;
  min-height: 0 !important;
  padding: 0;
  color: var(--paper);
  background: #d8d6d0;
}

.project-card__visual--cover .project-tag {
  color: var(--paper);
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(10px);
}

.project-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-cover:not(.project-cover--togto) > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 650ms ease,
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-cover:not(.project-cover--togto) > img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.project-cover--togto {
  background: #d8d7d2;
  isolation: isolate;
}

.project-cover--togto::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 118, 85, 0.38), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(10, 10, 10, 0.08));
}

.project-cover__blur {
  position: absolute;
  z-index: -2;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  filter: blur(32px) grayscale(0.7) brightness(1.25);
  opacity: 0.55;
  transform: scale(1.14);
}

.project-cover__window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82%;
  overflow: hidden;
  border: 4px solid #131313;
  border-radius: 19px;
  background: #131313;
  box-shadow: 0 30px 65px rgba(10, 10, 10, 0.28);
  transform: translate(-50%, -50%) rotate(-2deg);
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-cover__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 13px;
  color: rgba(240, 239, 233, 0.62);
  background: #131313;
}

.project-cover__bar > span {
  display: flex;
  gap: 5px;
}

.project-cover__bar i {
  display: block;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
}

.project-cover__bar small {
  font-size: 7px;
  letter-spacing: 0.12em;
}

.project-cover__window > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: top;
}

.project-card:hover .project-cover__window {
  transform: translate(-50%, -51.5%) rotate(0);
}

.profiles {
  padding: clamp(100px, 13vw, 210px) 0;
}

.profile-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: clamp(64px, 8vw, 120px);
}

.profile-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--acid);
  transition:
    color 340ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.55)),
    var(--paper);
  transform: translateY(101%);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-link:hover::before {
  transform: translateY(0);
}

.profile-link:hover {
  transform: translateY(-5px);
}

.profile-link > * {
  position: relative;
  z-index: 1;
}

.profile-link--light {
  color: var(--paper);
  background: #202020;
}

.profile-link--light::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(216, 255, 62, 0.7), transparent 25%),
    var(--coral);
}

.profile-link__top,
.profile-link__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profile-link__top {
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-link__index {
  font-size: 9px;
}

.profile-link__title {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2vw, 32px);
}

.profile-link__title span {
  font: 500 clamp(4.4rem, 7vw, 8rem) / 0.8 var(--font-display);
  letter-spacing: -0.045em;
}

.profile-link__title strong {
  font: 500 clamp(1.5rem, 2.4vw, 2.8rem) / 1 var(--font-display);
  letter-spacing: -0.025em;
}

.profile-link__arrow {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.08);
  place-items: center;
  transition:
    color 320ms ease,
    background 320ms ease,
    transform 380ms ease;
}

.profile-link--light .profile-link__arrow {
  background: rgba(255, 255, 255, 0.1);
}

.profile-link__arrow .direction-icon {
  width: 23px;
  height: 23px;
}

.profile-link:hover .profile-link__arrow {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.profile-link:hover .profile-link__arrow .direction-icon path {
  transform: translateX(5px);
}

.contact {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(100px, 11vw, 190px);
  overflow: hidden;
  color: var(--paper);
  background: #0d0d0d;
  isolation: isolate;
}

.contact__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 5vw 5vw;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.contact__orb {
  position: absolute;
  z-index: -1;
  right: -10vw;
  bottom: -35vw;
  width: 75vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(216, 255, 62, 0.3), transparent 25%),
    radial-gradient(circle at 42% 38%, rgba(120, 103, 255, 0.38), transparent 60%);
  filter: blur(56px);
  opacity: 0.58;
  transform: scale(1.06);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - clamp(100px, 11vw, 190px));
}

.contact__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__title {
  margin: clamp(60px, 8vw, 120px) 0 0;
  font: 400 clamp(3.5rem, 9vw, 10rem) / 0.88 var(--font-display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.contact__title em {
  color: var(--acid);
  font-style: italic;
}

.contact__bottom {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  align-items: end;
  gap: 50px;
  margin-top: auto;
  padding: 80px 0;
}

.contact__bottom p {
  max-width: 490px;
  margin: 0;
  color: var(--text-muted-dark);
  font-size: clamp(15px, 1.3vw, 20px);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  font: 500 clamp(1.3rem, 2.5vw, 3rem) / 1 var(--font-display);
  letter-spacing: -0.026em;
  text-transform: uppercase;
}

.contact-button span {
  transition: color 280ms ease;
}

.contact-button svg {
  width: 52px;
  transition: transform 300ms ease;
  stroke-width: 1;
}

.contact-button:is(:hover, :focus-visible) span {
  color: var(--coral);
}

.contact-button:is(:hover, :focus-visible) svg {
  transform: rotate(45deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--text-muted-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > div {
  display: flex;
  gap: 40px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--paper);
}

.scroll-progress {
  position: fixed;
  z-index: 98;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 850ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  :root {
    --shell: min(100% - 40px, 1100px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero__footer {
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.8fr) auto;
    gap: 30px;
  }

  .process__layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }

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

  .benefits-system {
    grid-template-columns: minmax(360px, 0.86fr) minmax(440px, 1.14fr);
  }

  .benefits-visual {
    min-height: 580px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
    --shell: calc(100% - 32px);
  }

  .site-header {
    padding: 0 16px;
  }

  .brand,
  .header-actions {
    min-width: auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 24px 0;
  }

  .hero::after {
    display: none;
  }

  .hero__orb {
    top: 2%;
    right: -43%;
    width: 118vw;
  }

  .hero__title {
    margin: 70px 0 100px;
    font-size: clamp(3.5rem, 10.2vw, 6.8rem);
    line-height: 0.86;
  }

  .title-line--second {
    display: grid;
    padding-left: 4%;
  }

  .title-line--second .title-word:last-of-type {
    text-align: right;
  }

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

  .hero__statement {
    grid-column: 1;
    grid-row: 1;
  }

  .founder-card {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .round-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .hero__ticker {
    margin-inline: -24px;
  }

  .section-heading--row {
    display: grid;
  }

  .process__layout {
    display: block;
  }

  .process__heading {
    position: static;
    margin-bottom: 80px;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
  }

  .service-row {
    grid-template-columns: 42px 1fr auto;
    padding-block: 32px;
  }

  .service-row__meta {
    grid-column: 2;
  }

  .service-row__arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .extra-service {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-auto-rows: auto;
  }

  .benefits-system {
    grid-template-columns: 1fr;
  }

  .benefits-visual {
    min-height: 520px;
  }

  .project-card__info {
    grid-template-columns: 1fr auto;
  }

  .project-card__info p {
    grid-column: 1;
    grid-row: 2;
  }

  .project-card__arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .profile-links {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .cursor {
    display: none;
  }

  .mobile-menu nav a {
    gap: 14px;
    font-size: clamp(1.75rem, 8.8vw, 2.8rem);
  }

  .language-switch {
    margin-right: 4px;
  }

  .hero__eyebrow-index {
    display: none;
  }

  .hero__title {
    margin-top: 52px;
    margin-bottom: 70px;
    font-size: clamp(3rem, 14.6vw, 5rem);
    line-height: 0.86;
    letter-spacing: -0.043em;
  }

  .title-line {
    display: block;
  }

  .title-line--second {
    display: grid;
    padding-left: 4%;
  }

  .title-line--second .title-word:last-of-type {
    text-align: right;
  }

  .title-line--third {
    display: flex;
    justify-content: flex-end;
  }

  .title-word--accent {
    margin-right: 0.12em;
  }

  .scribble {
    right: auto;
    bottom: -10px;
    left: 4%;
    width: 72px;
  }

  .hero__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .hero__statement {
    max-width: 88%;
    order: 1;
  }

  .founder-card {
    grid-template-columns: 92px 1fr;
    order: 2;
  }

  .founder-card__portrait {
    height: 128px;
  }

  .founder-card__role {
    margin-bottom: 12px;
  }

  .round-cta {
    align-self: flex-end;
    order: 3;
    width: min(100%, 260px);
  }

  .section-kicker {
    margin-bottom: 25px;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 4.1rem);
  }

  .section-heading--row {
    gap: 10px;
  }

  .process,
  .services,
  .benefits,
  .work,
  .profiles {
    padding: 100px 0;
  }

  .process__heading {
    margin-bottom: 58px;
  }

  .process-item {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 28px 0 30px;
  }

  .process-item h3 {
    font-size: 1.32rem;
  }

  .process-item p {
    font-size: 12px;
  }

  .process-item__icon {
    font-size: 20px;
  }

  .services-list {
    margin-top: 60px;
  }

  .service-row {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    min-height: 0;
  }

  .service-row h3 {
    font-size: 1.35rem;
  }

  .service-row__title p {
    font-size: 11px;
  }

  .service-row__meta strong {
    font-size: 17px;
  }

  .extra-service {
    margin-top: 52px;
  }

  .extra-service__badge {
    font-size: 1.3rem;
  }

  .extra-service__badge span:first-child {
      display: none;
    width: 46px;
    height: 46px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .benefits-system {
    margin-top: 60px;
  }

  .benefits-visual {
    min-height: 390px;
    border-radius: 22px;
  }

  .system-orbit--outer {
    width: 80%;
  }

  .system-orbit--inner {
    width: 50%;
  }

  .system-core {
    width: 112px;
  }

  .system-core strong {
    font-size: 1.8rem;
  }

  .system-node {
    padding: 7px 9px;
    font-size: 6px;
  }

  .system-caption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 6px;
  }

  .benefit-line {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    min-height: 0;
    padding: 24px 8px 25px 0;
  }

  .benefit-line:hover {
    padding-left: 0;
  }

  .benefit-line h3 {
    font-size: 1.45rem;
  }

  .benefit-card,
  .benefit-card--wide {
    grid-column: auto;
    min-height: 360px;
    padding: 24px;
  }

  .benefit-card--photo {
    min-height: 420px;
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .project-card,
  .project-card--large,
  .project-card--wide {
    grid-column: auto;
  }

  .project-card__visual,
  .project-card:not(.project-card--large, .project-card--wide) .project-card__visual,
  .project-card__visual--hatico {
    min-height: 0;
    padding: 0;
  }

  .project-card__visual--cover {
    aspect-ratio: 1;
  }

  .project-cover__window {
    width: 86%;
    border-width: 3px;
    border-radius: 14px;
  }

  .project-shot,
  .project-shot--portrait {
    width: 96%;
    border-width: 3px;
    border-radius: 16px;
    transform: rotate(-1deg);
  }

  .project-shot__bar {
    height: 31px;
  }

  .project-shot img,
  .project-card:not(.project-card--large, .project-card--wide) .project-shot img {
    aspect-ratio: 4 / 3;
  }

  .project-shot__note {
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    font-size: 6px;
  }

  .visual-browser {
    inset: 14% 5% 9%;
  }

  .visual-browser__content {
    padding: 28px 20px;
  }

  .visual-browser__content strong {
    font-size: 2.5rem;
  }

  .energy-sphere {
    top: 6%;
    right: -13%;
    width: 86%;
  }

  .energy-title {
    top: auto;
    right: 7%;
    bottom: 8%;
  }

  .energy-title strong {
    font-size: 2.5rem;
  }

  .energy-meter {
    display: none;
  }

  .chair-shape {
    top: 12%;
    right: 0;
    width: 65%;
  }

  .hatico-type {
    top: auto;
    right: 6%;
    bottom: 7%;
  }

  .hatico-type strong {
    font-size: 2.7rem;
  }

  .profile-link {
    min-height: 230px;
    padding: 22px;
  }

  .profile-link__top {
    align-items: flex-start;
    font-size: 8px;
  }

  .profile-link__bottom {
    align-items: end;
  }

  .profile-link__title {
    display: block;
  }

  .profile-link__title span {
    display: block;
    margin-bottom: 9px;
    font-size: 4rem;
  }

  .profile-link__title strong {
    font-size: 1.35rem;
  }

  .profile-link__arrow {
    width: 48px;
    font-size: 21px;
  }

  .contact {
    min-height: 100svh;
    padding-top: 100px;
  }

  .contact__title {
    margin-top: 60px;
    font-size: clamp(3rem, 14vw, 5.8rem);
  }

  .contact__bottom {
    gap: 50px;
    padding: 65px 0 55px;
  }

  .contact-button {
    font-size: 1.15rem;
  }

  .contact-button svg {
    width: 38px;
  }

  .site-footer,
  .site-footer > div {
    align-items: flex-start;
    gap: 15px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .title-word {
    opacity: 1;
    transform: none;
  }

  .cursor {
    display: none;
  }
}
