@font-face {
  font-family: Vazirmatn;
  src: url('/assets/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@media (min-width: 601px) and (max-width: 1100px) {
  .hero-visual .portrait-orbit {
    width: 80%;
    height: 220px;
  }
  .hero-visual .orbit-two {
    width: 78%;
    height: 210px;
  }
}
.skill-card .skill-value-row {
  margin-bottom: 0;
  min-height: 52px;
}
.skill-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #c9f56a33;
  border-radius: 12px;
  color: var(--lime);
  background: #c9f56a0a;
  flex-shrink: 0;
}
.skills-hero-grid > div {
  min-width: 0;
}
@media (max-width: 600px) {
  .skills-hero .skills-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@font-face {
  font-family: Vazirmatn;
  src: url('/assets/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #11150f;
  --surface: #1b2117;
  --soft: #22291c;
  --fg: #f0f1e9;
  --muted: #a0a894;
  --dim: #7c8671;
  --lime: #c9f56a;
  --line: #ffffff1c;
  --font: Vazirmatn, 'Segoe UI', Tahoma, sans-serif;
  --radius: 16px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.9;
  overflow-x: clip;
}
body.dialog-open {
  overflow: hidden;
}
::selection {
  background: var(--lime);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--lime);
}
img {
  display: block;
  max-width: 100%;
}
button svg,
a svg {
  flex-shrink: 0;
}
svg {
  display: block;
}
[hidden] {
  display: none !important;
}
.icon {
  width: 22px;
  height: 22px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: min(1280px, 88%);
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.accent {
  color: var(--lime);
}
.mono {
  font-family: Consolas, monospace;
  direction: ltr;
  letter-spacing: 1px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px #c9f56a44;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: #1d2711;
  border-radius: 7px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s;
  line-height: 1.8;
}
.button:hover {
  transform: translateY(-3px);
  background: #dcff96;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--lime);
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 8px;
  transition: background 0.2s;
}
.icon-button:hover {
  background: #ffffff10;
}
.icon-button .icon {
  width: 19px;
  height: 19px;
}
.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  z-index: 101;
  background: var(--lime);
}
[dir='ltr'] .reading-progress {
  transform-origin: left;
}
.header {
  position: sticky;
  top: 0;
  height: 86px;
  padding-inline: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 50;
  background: #11150fdb;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 12px 40px #0002;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
}
.brand > span:last-child {
  white-space: nowrap;
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 9px;
}
.brand-mark {
  display: block;
  position: relative;
  color: var(--lime);
  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  direction: ltr;
  min-width: 44px;
}
.brand-mark span {
  font-size: 21px;
  position: relative;
  top: -12px;
  left: 1px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
  color: #c3cabb;
}
.desktop-nav a:hover,
.desktop-nav a.current {
  color: var(--lime);
}
.header-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}
.language-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.language-wrap .icon {
  width: 16px;
  height: 16px;
  color: var(--muted);
}
.language-wrap select {
  appearance: auto;
  background: transparent;
  border: 0;
  color: var(--fg);
  padding: 6px 0;
  max-width: 90px;
  font-size: 11px;
  cursor: pointer;
}
.language-wrap option {
  background: var(--bg);
  color: var(--fg);
}
.header-contact {
  border: 1px solid #c9f56a55;
  border-radius: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 9px 15px;
  font-size: 11px;
}
.header-contact .icon {
  width: 15px;
  height: 15px;
  color: var(--lime);
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  inset-inline: 0;
  background: #171d13;
  border-bottom: 1px solid var(--line);
  padding: 20px 6%;
  box-shadow: 0 30px 40px #0005;
}
.mobile-menu a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.skip {
  position: fixed;
  top: -90px;
  inset-inline-start: 20px;
  background: var(--lime);
  color: #111;
  z-index: 110;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 5%;
  padding-top: 58px;
  position: relative;
}
.hero-copy {
  padding-block: 10px 15px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(46px, 4.5vw, 70px);
  line-height: 1.48;
  letter-spacing: -2px;
  margin: 24px 0 19px;
  font-weight: 700;
}
h1 > span,
h2 > span {
  display: block;
}
.hero-description {
  font-size: 14px;
  line-height: 2.25;
  max-width: 490px;
  color: #b2baa5;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--dim);
  font-size: 10px;
}
.signature {
  font-family: Georgia, serif;
  font-style: italic;
  color: #d4dfc5;
  font-size: 27px;
  transform: rotate(-9deg);
  direction: ltr;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 545px;
  direction: ltr;
  transform: translateY(var(--parallax, 0px));
  isolation: isolate;
}
.hero-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.portrait-frame {
  position: relative;
  width: 77%;
  max-width: 365px;
  height: 430px;
  overflow: hidden;
  border-radius: 160px 160px 18px 18px;
  transform: rotate(-5deg);
  background: #313a25;
  border: 1px solid #c9f56a50;
  box-shadow: 0 25px 70px #0004;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(0.55) contrast(1.04);
  transform: scale(1.025);
}
.portrait-gradient {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #10170cee);
}
.portrait-name {
  position: absolute;
  bottom: 24px;
  inset-inline: 24px;
  color: white;
  text-align: center;
  transform: rotate(5deg);
}
.portrait-name > span {
  font-size: 20px;
  font-weight: 700;
}
.portrait-name small {
  display: block;
  font-size: 9px;
  color: #d2d8c5;
  margin-top: 4px;
}
.portrait-orbit {
  position: absolute;
  width: 94%;
  height: 320px;
  border: 1px solid #c9f56a38;
  border-radius: 50%;
  z-index: -1;
  transform: rotate(-28deg);
}
.orbit-two {
  width: 89%;
  height: 270px;
  transform: rotate(45deg);
  border-style: dashed;
  opacity: 0.6;
}
.portrait-stamp {
  position: absolute;
  top: 19%;
  left: 4%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #202b14;
  border-radius: 50%;
  transform: rotate(15deg);
  box-shadow: 0 10px 30px #0004;
}
.portrait-stamp .icon {
  width: 38px;
  height: 38px;
  animation: turn 35s linear infinite;
}
.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #242d1eeb;
  backdrop-filter: blur(15px);
  border: 1px solid #c9f56a33;
  border-radius: 9px;
  padding: 15px 18px;
  box-shadow: 0 10px 40px #0004;
}
.tag-code {
  bottom: 17%;
  left: 0;
  transform: rotate(6deg);
  font-family: Consolas, monospace;
  font-size: 11px;
  animation: bob 7s ease-in-out infinite;
}
.tag-code .icon {
  color: var(--lime);
}
.tag-code i {
  color: var(--dim);
  font-style: normal;
  margin: 0 4px;
}
.tag-apax {
  top: 17%;
  right: -3%;
  transform: rotate(6deg);
}
.tag-apax b {
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
}
.tag-apax > span {
  font-size: 9px;
  color: var(--muted);
}
.portrait-axis {
  position: absolute;
  right: 0;
  bottom: 20%;
  font-size: 28px;
  color: var(--lime);
  font-weight: 400;
}
.visual-coordinate {
  position: absolute;
  bottom: 15px;
  right: 0;
  font:
    9px Consolas,
    monospace;
  letter-spacing: 2px;
  color: var(--dim);
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 22px;
  margin-top: 24px;
  font-size: 10px;
  color: var(--muted);
}
.hero-bottom a {
  color: #e1e5d9;
}
.hero-bottom a > span {
  margin-inline-start: 14px;
  color: var(--lime);
}
.marquee {
  border-block: 1px solid var(--line);
  background: #1a2015;
  overflow: hidden;
  margin-top: 14px;
  direction: ltr;
}
.marquee > div {
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
  padding-block: 18px;
  animation: marquee 45s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-size: 24px;
  color: #b8c2aa;
  font-weight: 700;
}
.marquee i {
  font-size: 28px;
  color: var(--lime);
  font-style: normal;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  color: var(--lime);
  font-size: 11px;
}
.section-label > span + span {
  color: var(--muted);
}
h2 {
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.6;
  letter-spacing: -1px;
  margin: 0;
  font-weight: 700;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}
.intro h2 > .accent {
  color: #727d65;
}
.large-body {
  font-size: 15px;
  line-height: 2.25;
  color: #c0c7b5;
  margin: 0;
}
.aside-note {
  border-inline-start: 2px solid var(--lime);
  padding-inline-start: 17px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}
.story {
  height: 400vh;
  position: relative;
  background: #c9f56a;
  color: #1b2910;
  --story-progress: 0;
}
.story-sticky {
  position: sticky;
  top: 76px;
  height: calc(100svh - 76px);
  min-height: 570px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: radial-gradient(ellipse at 22% 60%, #e6ffad80, transparent 60%);
}
.story-inner {
  padding-block: 30px;
  max-width: 1240px;
}
.story-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.story-heading .eyebrow {
  font-size: 11px;
  color: #516d2b;
}
.story-heading h2 {
  font-size: 26px;
  margin-top: 7px;
}
.story-counter {
  font:
    16px Consolas,
    monospace;
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  color: #536f31;
}
.story-counter b {
  font-size: 42px;
  color: #263b13;
  font-weight: 400;
}
.story-counter i {
  font-style: normal;
  font-size: 25px;
  color: #749549;
}
.story-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
  margin-top: 20px;
}
.story-stage {
  height: 350px;
  position: relative;
  direction: ltr;
  isolation: isolate;
}
.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#263b1310 1px, transparent 1px),
    linear-gradient(90deg, #263b1310 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse, #000 20%, transparent 72%);
  z-index: -1;
}
.stage-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #3c552e77;
  border-style: solid;
}
.corner-one {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
}
.corner-two {
  bottom: 10px;
  right: 10px;
  border-width: 0 1px 1px 0;
}
.scene-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition:
    opacity 0.45s,
    transform 0.6s;
  pointer-events: none;
}
.scene-layer.active {
  opacity: 1;
  transform: none;
}
.chapter-text {
  min-height: 290px;
}
.chapter-text > .eyebrow {
  font-size: 10px;
  color: #536d31;
}
.chapter-text h3 {
  font-size: clamp(25px, 2.7vw, 39px);
  line-height: 1.65;
  margin: 15px 0 12px;
  letter-spacing: -0.8px;
}
.chapter-text > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 2.2;
  color: #40582a;
  min-height: 115px;
  margin: 0;
}
.chapter-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chapter-words span {
  border: 1px solid #34501640;
  border-radius: 30px;
  padding: 3px 12px;
  font-size: 10px;
  color: #3e5725;
}
.story-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #29401030;
  padding-top: 20px;
  margin-top: 10px;
}
.chapter-buttons {
  display: flex;
  gap: 14px;
  max-width: 75%;
  width: 650px;
}
.chapter-buttons button {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  border: 0;
  background: none;
  color: #63803c;
  padding: 5px 0;
}
.chapter-buttons span {
  font-size: 12px;
}
.chapter-buttons i {
  display: block;
  height: 2px;
  flex: 1;
  background: #45662740;
  position: relative;
}
.chapter-buttons button[aria-pressed='true'] {
  color: #1e350c;
  font-weight: 700;
}
.chapter-buttons button[aria-pressed='true'] i {
  background: #243c11;
  height: 3px;
}
.story-arrows {
  display: flex;
  gap: 8px;
}
.story-arrows button {
  border-color: #1d350e40;
  font-size: 18px;
}
.story button:focus-visible {
  outline-color: #243c11;
}
.story-help {
  font-size: 9px;
  color: #516d2b;
  margin: 7px 0 0;
}
.story-signal {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.signal-circle {
  width: 260px;
  height: 260px;
  border: 1px solid #2e491a60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 26px #40651e0a,
    0 0 0 55px #40651e05;
}
.signal-circle > span {
  position: absolute;
  top: 35px;
  font:
    12px Consolas,
    monospace;
  letter-spacing: 5px;
  color: #3f5d27;
}
.wave {
  width: 100%;
  overflow: visible;
}
.wave path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 100;
  animation: drawWave 6s ease-in-out infinite;
}
.signal-circle .wave {
  width: 350px;
  max-width: 150%;
  color: #263d17;
}
.code-fragment {
  position: absolute;
  bottom: 6px;
  background: #233519;
  color: #ceeaa7;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 24px;
  border-radius: 7px;
  font:
    12px Consolas,
    monospace;
  transform: rotate(-5deg);
  box-shadow: 0 15px 30px #25420c20;
}
.code-fragment i {
  font-style: normal;
  color: var(--lime);
}
.story-dna {
  height: 300px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dna {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: rotate(24deg);
}
.dna-rung {
  width: var(--length);
  display: flex;
  align-items: center;
  height: 9px;
  animation: dnaBreathe 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.3s);
}
.dna-rung i {
  width: 9px;
  height: 9px;
  background: #304b1b;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 7px #1e381333;
}
.dna-rung i:last-child {
  background: #f4ffe7;
}
.dna-rung b {
  flex: 1;
  height: 1px;
  background: #41632166;
}
.bio-orbit {
  position: absolute;
  right: 12%;
  top: 18%;
  width: 62px;
  height: 62px;
  border: 1px solid #3c5d2b44;
  border-radius: 12px;
  background: #defca3;
  display: grid;
  place-items: center;
  transform: rotate(-10deg);
  box-shadow: 0 20px 30px #45662715;
}
.bio-orbit .icon {
  position: absolute;
  left: -120px;
  bottom: -170px;
  width: 40px;
  height: 40px;
  color: #3c5d2b;
}
.bio-orbit > span {
  font:
    30px Georgia,
    serif;
}
.molecule-dot {
  position: absolute;
  left: 17%;
  top: 15%;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #3b5424;
  box-shadow:
    50px -10px 0 -4px #3b542470,
    20px 50px 0 -3px #3b542470;
}
.design-visual {
  position: relative;
  width: 80%;
  height: 270px;
}
.design-poster {
  width: 75%;
  height: 95%;
  position: absolute;
  left: 12%;
  top: 0;
  border-radius: 3px;
  background: #24321c;
  padding: 25px;
  color: #dcf5be;
  box-shadow: 18px 18px 0 #46632c22;
  transform: rotate(-8deg);
}
.design-poster > span {
  font-size: 10px;
}
.design-poster > b {
  font:
    96px Georgia,
    serif;
  letter-spacing: -10px;
  display: block;
  position: relative;
  line-height: 1.4;
}
.design-poster > b > span {
  color: #c9f56a;
  font:
    46px Arial,
    sans-serif;
  letter-spacing: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.design-lines {
  height: 20px;
  width: 65%;
  border-block: 2px solid #94b476;
}
.design-swatch {
  position: absolute;
  right: -5%;
  bottom: 3%;
  z-index: 2;
  display: flex;
  transform: rotate(9deg);
  box-shadow: 0 15px 30px #1e351e25;
}
.design-swatch i {
  width: 45px;
  height: 60px;
  background: #f0ece0;
}
.design-swatch i:nth-child(2) {
  background: #bdaaec;
}
.design-swatch i:nth-child(3) {
  background: #486336;
}
.design-swatch i:nth-child(4) {
  background: #141b10;
}
.design-cursor {
  position: absolute;
  left: 0;
  bottom: -20px;
  font:
    90px Arial,
    sans-serif;
  color: #f8f8f0;
  -webkit-text-stroke: 2px #2d4420;
  filter: drop-shadow(5px 7px 0 #39512725);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 7%;
  margin-bottom: 32px;
}
.section-heading > div {
  max-width: 430px;
  width: 40%;
}
.section-heading p {
  font-size: 13px;
  color: var(--muted);
  line-height: 2.2;
  margin: 0 0 12px;
}
.section-heading small {
  display: block;
  color: var(--dim);
  font-size: 10px;
}
.section-heading h2 > .accent {
  color: var(--muted);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.filter-bar button {
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  transition:
    background 0.2s,
    color 0.2s;
}
.filter-bar button[aria-pressed='true'] {
  background: var(--lime);
  color: #233116;
  border-color: var(--lime);
}
.filter-bar button:hover {
  border-color: #c9f56a77;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px 28px;
}
.project-card {
  min-width: 0;
}
.project-featured {
  grid-column: 1/-1;
}
.project-open {
  display: block;
  text-align: start;
  border: 0;
  padding: 0;
  background: none;
  width: 100%;
}
.project-art {
  height: 310px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #ffffff18;
  display: grid;
  place-items: center;
  direction: ltr;
  isolation: isolate;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.2s ease-out;
}
.project-featured .project-art {
  height: 410px;
}
.project-art::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 100px #0002;
  pointer-events: none;
}
.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.project-category {
  color: var(--muted);
  font-size: 10px;
}
.project-info h3 {
  font-size: 21px;
  line-height: 1.7;
  margin: 6px 0 0;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.project-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.project-open:hover .project-arrow {
  background: var(--lime);
  color: #253219;
}
.project-arrow .icon {
  width: 16px;
  height: 16px;
}
.project-bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.project-bottom > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  max-width: 580px;
  margin: 12px 0;
}
.project-status {
  font-size: 9px;
  color: #adb99c;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  white-space: nowrap;
  margin: 15px 0;
}
.project-status i {
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #9cb574;
}
.project-status.in-progress {
  color: #e4c98e;
}
.project-status.in-progress i {
  background: #e4c98e;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tags > span {
  font:
    10px Consolas,
    var(--font);
  color: #abb89b;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 5px 10px;
}
.art-apax {
  background: radial-gradient(ellipse at 50% 90%, #344927, #1a2516 75%);
}
.flow-map {
  position: relative;
  width: min(85%, 630px);
  aspect-ratio: 600/340;
  direction: ltr;
}
.flow-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #c9f56a77;
  stroke-width: 1.5;
}
.flow-node {
  position: absolute;
  width: 17%;
  height: 21%;
  border: 1px solid #a4d17655;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3f5134, #25371e);
  box-shadow: 0 10px 20px #0003;
  color: #e0edcf;
  padding: 5px;
  z-index: 2;
}
.flow-node .icon {
  width: 22px;
  height: 22px;
  color: #c9f56a;
}
.flow-node > span {
  font-size: 9px;
}
.node-a {
  left: 6%;
  top: 13%;
}
.node-b {
  left: 6%;
  bottom: 11%;
}
.node-c {
  right: 4%;
  top: 13%;
}
.node-d {
  right: 4%;
  bottom: 11%;
}
.flow-center {
  position: absolute;
  left: 43%;
  top: 32%;
  width: 20%;
  height: 36%;
  border-radius: 20%;
  background: linear-gradient(140deg, #d9ff91, #93bc47);
  box-shadow:
    0 0 0 7px #c9f56a09,
    0 20px 40px #0005,
    0 0 60px #c9f56a20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #243514;
}
.apax-glyph {
  font-size: 45px;
  line-height: 1;
  animation: turn 40s linear infinite;
}
.flow-center b {
  font:
    700 13px Arial,
    sans-serif;
  letter-spacing: 4px;
  margin-top: 9px;
  padding-left: 4px;
}
.flow-pulse {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8ffb1;
  box-shadow: 0 0 14px #c9f56a;
  z-index: 3;
  animation: pulseMove 5s ease-in-out infinite;
  left: 35%;
  top: 49%;
}
.flow-pulse.p2 {
  left: 68%;
  animation-delay: -2.5s;
}
.story-stage .flow-map {
  width: 98%;
}
.story-stage .flow-wires {
  stroke: #3b5b2777;
}
.story-stage .flow-center {
  box-shadow:
    0 0 0 8px #20391608,
    0 20px 40px #2a3c1425;
  background: #253b19;
  color: var(--lime);
}
.story-stage .flow-node {
  background: #ddffa1;
  border-color: #42602c55;
  box-shadow: 0 15px 30px #486b2020;
  color: #294219;
}
.story-stage .flow-node .icon {
  color: #294219;
}
.story-stage .flow-pulse {
  background: #2b451a;
  box-shadow: 0 0 10px #29451966;
}
.art-clinic {
  background: radial-gradient(ellipse at bottom, #859a98, #425c5d);
}
.clinic-window {
  position: relative;
  width: 75%;
  height: 74%;
  background: #f2f4ed;
  border-radius: 9px;
  color: #3b5553;
  transform: perspective(850px) rotateY(-10deg) rotateZ(-5deg);
  box-shadow: 20px 25px 35px #122c3150;
}
.window-top {
  height: 36px;
  border-bottom: 1px solid #223f3220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 13px;
  font-size: 10px;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
.window-top > b {
  font-size: 10px;
  font-weight: 400;
}
.clinic-body {
  display: flex;
  height: calc(100% - 36px);
}
.clinic-body > aside {
  width: 16%;
  border-right: 1px solid #223f3215;
  padding: 13px 10px;
}
.clinic-cross {
  font-size: 24px;
  font-weight: 700;
  color: #4e807c;
  line-height: 1;
  display: block;
  text-align: center;
  margin-bottom: 18px;
}
.clinic-body aside > i {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #aac3b5;
  margin: 14px 0;
}
.calendar-mock {
  flex: 1;
  padding: 15px;
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  margin-bottom: 8px;
}
.calendar-head b {
  font-weight: 400;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: 135px;
  border-top: 1px solid #45665b20;
  border-left: 1px solid #45665b20;
}
.calendar-grid > span {
  font:
    9px Consolas,
    monospace;
  border-right: 1px solid #45665b20;
  border-bottom: 1px solid #45665b20;
  padding: 3px;
  color: #6c8980;
  position: relative;
}
.calendar-grid .booked i {
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 10px;
  background: #b7d5be;
  border-radius: 2px;
}
.calendar-grid > span:nth-child(14) i {
  background: #c1b6de;
}
.floating-record {
  position: absolute;
  bottom: 2px;
  right: -35px;
  background: #fff;
  border: 1px solid #c8d3c9;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  box-shadow: 0 15px 30px #344a3533;
  transform: rotate(10deg);
  color: #537568;
}
.floating-record .icon {
  width: 23px;
  height: 23px;
}
.floating-record b,
.floating-record span {
  display: block;
  font-size: 9px;
}
.floating-record span {
  font-size: 8px;
  color: #97aa9f;
}
.floating-record i {
  height: 6px;
  width: 6px;
  background: #83b884;
  border-radius: 50%;
}
.art-green {
  background: radial-gradient(ellipse at top, #68744e, #263822);
}
.green-visual {
  width: 85%;
  height: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.leaf-orbit {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid #dafba34d;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 25px #c9f56a08;
  transform: rotate(-15deg);
}
.leaf-orbit > .icon {
  width: 85px;
  height: 85px;
  color: #d7f2ac;
  filter: drop-shadow(5px 10px 4px #1a351533);
}
.leaf-orbit > i {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 9px;
  height: 9px;
  background: #c9f56a;
  border-radius: 50%;
}
.leaf-orbit > i:last-child {
  bottom: 0;
  left: 35px;
  top: auto;
  right: auto;
  width: 5px;
  height: 5px;
}
.green-panel {
  width: 47%;
  min-width: 160px;
  background: #172716ed;
  border: 1px solid #a6c97c50;
  border-radius: 9px;
  padding: 18px;
  color: #d0e1bd;
  transform: rotate(7deg);
  box-shadow: 0 20px 35px #10260f55;
}
.green-panel > div:first-child {
  font-size: 9px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.green-panel p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c9f56a20;
  padding-bottom: 6px;
  margin: 12px 0;
  font-size: 9px;
}
.mini-check {
  color: var(--lime);
  font-weight: 400;
}
.green-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 45px;
}
.green-chart i {
  height: var(--bar);
  flex: 1;
  background: linear-gradient(#c9f56a, #698849);
  border-radius: 2px 2px 0 0;
}
.art-b2b {
  background: radial-gradient(ellipse at bottom, #786b94, #39324c);
}
.b2b-window {
  width: 83%;
  height: 77%;
  background: #211c2c;
  border: 1px solid #b29dd24d;
  border-radius: 9px;
  color: #c7bdd8;
  transform: perspective(800px) rotateY(8deg) rotateZ(4deg);
  box-shadow: -15px 20px 40px #130c2355;
}
.b2b-window .window-top {
  border-color: #baa3e328;
}
.kanban {
  display: flex;
  gap: 10px;
  padding: 14px;
}
.kanban-column {
  flex: 1;
  min-width: 0;
}
.kanban-column > span {
  font-size: 8px;
  color: #ae9bc6;
  display: block;
  margin-bottom: 8px;
}
.kanban-card {
  background: #352c43;
  border: 1px solid #d1baff10;
  border-radius: 4px;
  margin: 7px 0;
  padding: 8px;
  position: relative;
}
.kanban-dot {
  display: block;
  width: 10px;
  height: 3px;
  border-radius: 3px;
  background: #c3a8e1;
  margin-bottom: 7px;
}
.kanban-column:nth-child(2) .kanban-dot {
  background: #b8d795;
}
.kanban-column:nth-child(3) .kanban-dot {
  background: #d3b188;
}
.placeholder-line {
  display: block;
  width: 80%;
  height: 3px;
  background: #675679;
  border-radius: 1px;
  margin-bottom: 5px;
}
.placeholder-line.short {
  width: 45%;
}
.avatar-stack {
  display: flex;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.avatar-stack b {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #877298;
  border: 1px solid #352c43;
  margin-left: -2px;
}
.art-data {
  background: radial-gradient(ellipse at top, #625442, #2d2921);
}
.data-visual {
  width: 84%;
  height: 76%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
}
.data-pages {
  position: relative;
  width: 28%;
  height: 135px;
}
.data-page {
  position: absolute;
  inset: 0;
  background: #e7dfcb;
  border: 1px solid #f6edcd;
  border-radius: 5px;
  transform: rotate(-13deg);
  box-shadow: 0 10px 20px #251b2255;
  padding: 18px;
  color: #736246;
}
.data-page:last-child {
  transform: translate(17px, 8px) rotate(4deg);
  background: #d6c8aa;
}
.data-page span {
  font:
    21px Consolas,
    monospace;
}
.data-page i {
  height: 4px;
  width: 100%;
  background: #a79473;
  display: block;
  margin-top: 12px;
}
.data-page i:last-child {
  width: 60%;
}
.data-connector {
  font-size: 30px;
  color: #b5a685;
  margin-top: 0;
}
.data-table {
  width: 49%;
  padding: 15px;
  background: #241f16;
  border: 1px solid #9a87694d;
  border-radius: 8px;
  transform: rotate(5deg);
  box-shadow: 0 20px 40px #19100b55;
}
.data-table > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5c095;
  font-size: 10px;
  margin-bottom: 15px;
}
.data-table .icon {
  width: 17px;
  height: 17px;
}
.data-table p {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #b29d6522;
  padding-bottom: 7px;
  margin: 9px 0;
  font:
    8px Consolas,
    monospace;
  color: #9b8968;
}
.data-table p i {
  height: 3px;
  flex: 1;
  background: #675332;
}
.data-table p b {
  color: #b9cc8a;
  font-weight: 400;
}
.data-stages {
  position: absolute;
  bottom: -5px;
  left: 10%;
  right: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  color: #d7cbb5;
}
.data-stages i {
  font-style: normal;
  color: #998765;
}
.art-bio {
  background: radial-gradient(ellipse at bottom, #315f61, #192d35);
}
.bio-visual {
  width: 90%;
  height: 88%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.bio-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#aee3d90c 1px, transparent 1px),
    linear-gradient(90deg, #aee3d90c 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse, #000, transparent 70%);
}
.bio-visual .dna {
  transform: rotate(15deg) scale(0.8);
  width: 30%;
}
.bio-visual .dna-rung i {
  background: #71bdae;
}
.bio-visual .dna-rung i:last-child {
  background: #dae7cc;
}
.bio-visual .dna-rung b {
  background: #71bdae80;
}
.signal-card {
  position: relative;
  width: 57%;
  padding: 20px 15px;
  background: #112d32;
  border: 1px solid #76b7b54d;
  border-radius: 8px;
  transform: rotate(-7deg);
  box-shadow: 0 20px 30px #0c202c55;
}
.signal-card > span {
  font-size: 9px;
  color: #97c2be;
}
.signal-card .wave {
  color: #9bdccb;
  margin: 12px 0;
}
.signal-caption {
  display: flex;
  gap: 20px;
  font:
    9px Consolas,
    monospace;
  color: #96c6c0;
}
.signal-caption span {
  color: #49797b;
}
.services-section {
  background: #1b2117;
  border-block: 1px solid var(--line);
}
.services-section h2 {
  font-size: 35px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 42px 0 30px;
}
.service-card {
  padding: 25px 20px;
  background: #11170e;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.3s;
}
.service-card:hover {
  border-color: #c9f56a55;
}
.service-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  color: var(--lime);
}
.service-card > div > span {
  font-size: 10px;
  color: var(--dim);
}
.service-card h3 {
  font-size: 17px;
  margin: 0 0 15px;
  line-height: 1.8;
}
.service-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2.1;
  margin: 0;
}
.experience-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8%;
  margin-bottom: 35px;
}
.experience-heading h2 {
  font-size: 34px;
}
.experience-heading p {
  font-size: 13px;
  color: var(--muted);
  max-width: 380px;
  width: 40%;
  margin: 0;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8%;
}
.experience-card {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.experience-symbol {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: #27321f;
  color: var(--lime);
  border: 1px solid #c9f56a25;
  border-radius: 11px;
  font-size: 28px;
  flex-shrink: 0;
}
.experience-symbol .icon {
  width: 26px;
  height: 26px;
}
.experience-card h3 {
  font-size: 19px;
  line-height: 1.8;
  margin: 0 0 5px;
}
.experience-card h4 {
  font-size: 12px;
  font-weight: 400;
  color: #c9d6b7;
  margin: 0 0 10px;
}
.experience-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin: 0;
}
.other-experience {
  margin-top: 16px;
}
.other-experience summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  font-size: 12px;
  color: #bdc9ac;
  list-style: none;
}
.other-experience summary::-webkit-details-marker {
  display: none;
}
.other-experience summary > span {
  font-size: 22px;
  color: var(--lime);
  transition: transform 0.2s;
}
.other-experience[open] summary > span {
  transform: rotate(45deg);
}
.other-roles > div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.other-roles b {
  font-size: 11px;
  font-weight: 400;
  max-width: 60%;
}
.other-roles span {
  font-size: 10px;
  color: var(--muted);
  text-align: end;
}
.education {
  background: #1a2115;
  border: 1px solid #c9f56a15;
  border-radius: 12px;
  padding: 30px;
  align-self: start;
}
.education > .eyebrow {
  color: var(--lime);
  margin-bottom: 30px;
}
.education article {
  position: relative;
  padding-inline-start: 24px;
  padding-bottom: 27px;
  border-inline-start: 1px solid #c9f56a35;
}
.education article:last-child {
  padding-bottom: 5px;
}
.education article > i {
  position: absolute;
  inset-inline-start: -4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.education h3 {
  font-size: 16px;
  margin: 0 0 9px;
}
.education p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 2;
}
.contact-section {
  border-top: 1px solid #c9f56a25;
  background: #1b2415;
  position: relative;
  overflow: hidden;
}
.contact-section .section {
  position: relative;
  z-index: 1;
  padding-bottom: 110px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 9%;
}
.contact-copy h2 {
  margin-top: 20px;
  font-size: clamp(30px, 3vw, 44px);
}
.contact-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 2.15;
  color: var(--muted);
  margin: 18px 0 27px;
  max-width: 510px;
}
.contact-links {
  max-width: 510px;
}
.email-row {
  display: flex;
  align-items: center;
  border-block: 1px solid #c9f56a25;
  gap: 10px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  font-size: 13px;
  flex: 1;
  min-width: 0;
}
.contact-link > .icon {
  width: 19px;
  height: 19px;
  color: var(--lime);
}
.contact-link > .icon:last-child {
  margin-inline-start: auto;
  width: 15px;
}
.contact-link b {
  font-family: Consolas, var(--font);
  font-size: 15px;
  font-weight: 400;
  overflow-wrap: anywhere;
  min-width: 0;
}
.contact-link:hover b {
  color: var(--lime);
}
.phone-link {
  border-bottom: 1px solid #c9f56a25;
}
.phone-link > span {
  font-size: 11px;
  color: var(--muted);
}
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 15px;
}
.social-links > a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-block: 10px;
}
.social-links > a > .icon {
  width: 20px;
  height: 20px;
  color: var(--lime);
}
.social-links > a > .icon:last-child {
  width: 13px;
  margin-inline-start: auto;
}
.social-links span {
  font-size: 11px;
}
.social-links small {
  display: block;
  font:
    10px Consolas,
    monospace;
  color: var(--muted);
  margin-top: 3px;
}
.contact-copy .copy-status {
  font-size: 10px;
  min-height: 20px;
  margin: 5px 0 0;
  color: var(--lime);
}
.contact-form {
  align-self: start;
  border: 1px solid #c9f56a25;
  border-radius: 12px;
  background: #141c10;
  padding: 30px;
  margin-top: 15px;
}
.contact-form h3 {
  font-size: 17px;
  margin: 0 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  font-size: 11px;
  color: #c1ccb4;
  display: block;
}
input,
textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ffffff25;
  border-radius: 0;
  background: none;
  color: var(--fg);
  padding: 12px 0;
  margin: 0 0 23px;
  font-size: 12px;
  resize: vertical;
  min-width: 0;
}
input::placeholder,
textarea::placeholder {
  color: #7e8b70;
  font-size: 11px;
}
input[aria-invalid='true'],
textarea[aria-invalid='true'] {
  border-color: #f3b48f;
}
.contact-form .button {
  width: 100%;
}
.form-note {
  font-size: 9px;
  color: #94a582;
  line-height: 2;
  margin: 16px 0 0;
}
#form-status {
  font-size: 11px;
  min-height: 25px;
  color: var(--lime);
  margin: 10px 0 0;
}
#form-status[data-state='error'] {
  color: #f3b48f;
}
.contact-watermark {
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: clamp(70px, 14vw, 220px);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -8px;
  color: #c9f56a08;
  white-space: nowrap;
  position: absolute;
  bottom: -10px;
  left: 3%;
  pointer-events: none;
}
.contact-watermark span {
  color: #c9f56a12;
  margin-left: 20px;
}
.footer {
  padding-block: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 10px;
}
.footer .brand {
  font-size: 12px;
  color: var(--fg);
}
.footer .brand-mark {
  font-size: 30px;
}
.footer .brand-mark span {
  font-size: 17px;
  top: -10px;
}
.footer a:hover {
  color: var(--lime);
}
.skills-hero {
  padding-top: 45px;
  padding-bottom: 65px;
}
.skills-hero > .text-link {
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 45px;
}
.skills-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8%;
  align-items: center;
}
.skills-hero h1 {
  font-size: clamp(37px, 4vw, 60px);
  line-height: 1.5;
  letter-spacing: -1.5px;
  margin: 22px 0;
}
.skills-hero .large-body {
  font-size: 14px;
  max-width: 620px;
}
.tool-orbit {
  width: 330px;
  height: 330px;
  position: relative;
  justify-self: center;
  direction: ltr;
  display: grid;
  place-items: center;
}
.tool-center {
  width: 95px;
  height: 95px;
  border: 1px solid #c9f56a70;
  background: linear-gradient(140deg, #455d2e, #24301b);
  display: grid;
  place-items: center;
  border-radius: 26px;
  transform: rotate(-12deg);
  box-shadow: 0 0 70px #c9f56a14;
}
.tool-center > .icon {
  width: 42px;
  height: 42px;
  color: var(--lime);
}
.tool-orbit > span {
  position: absolute;
  width: 73px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #c9f56a35;
  background: #222c19;
  border-radius: 9px;
  font:
    11px Consolas,
    monospace;
  left: calc(50% + cos(var(--i) * 60deg) * 137px - 36px);
  top: calc(50% + sin(var(--i) * 60deg) * 137px - 21px);
  z-index: 2;
}
.tool-orbit > i {
  position: absolute;
  inset: 8%;
  border: 1px solid #c9f56a25;
  border-radius: 50%;
}
.tool-orbit > i:last-child {
  inset: 21%;
  border-style: dashed;
  animation: turn 40s linear infinite;
}
.skill-section {
  padding-bottom: 100px;
}
.skill-filters {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-bottom: 32px;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.skill-card {
  background: linear-gradient(150deg, #222a1c, #191f15);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 22px;
}
.skill-index {
  font:
    10px Consolas,
    monospace;
  color: #7f8d70;
}
.skill-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.skill-value-row h2 {
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 1.7;
}
.skill-value {
  font-size: 28px;
  line-height: 1;
  color: var(--lime);
  white-space: nowrap;
  direction: ltr;
}
.skill-value small {
  font-size: 13px;
  margin-left: 4px;
  color: #819a60;
}
.skill-meter {
  height: 5px;
  border-radius: 10px;
  background: #ffffff0e;
  overflow: hidden;
}
.skill-meter i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #799b49, var(--lime));
  transform-origin: right;
  transition: transform 1.3s ease;
}
.motion .skill-card:not(.visible) .skill-meter i {
  transform: scaleX(0);
}
[dir='ltr'] .skill-meter i {
  transform-origin: left;
}
.skill-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 2.2;
  max-width: 880px;
  border-inline-start: 2px solid #c9f56a55;
  padding-inline-start: 18px;
  margin: 28px 0 50px;
}
.learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.english-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid #c9f56a35;
  background: #26361b;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.english-card h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
.english-card p {
  font-size: 12px;
  color: #b2c89a;
  line-height: 2;
}
.english-card > .icon {
  position: absolute;
  bottom: -30px;
  inset-inline-end: -20px;
  height: 170px;
  width: 170px;
  color: #c9f56a09;
}
.english-gauge {
  width: 125px;
  height: 125px;
  background: conic-gradient(var(--lime) 70%, #ffffff0d 0);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  direction: ltr;
}
.english-gauge::before {
  content: '';
  position: absolute;
  inset: 7px;
  background: #26361b;
  border-radius: 50%;
}
.english-gauge > span {
  position: relative;
  color: var(--lime);
  font-size: 35px;
}
.english-gauge small {
  font-size: 13px;
  color: #9eb485;
}
.learning-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #1c2217;
}
.learning-card > .icon {
  color: var(--lime);
  width: 32px;
  height: 32px;
  margin-bottom: 15px;
}
.learning-card h2 {
  font-size: 23px;
  letter-spacing: -0.5px;
}
.learning-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 2.1;
}
.learning-card .text-link {
  color: var(--lime);
}
dialog {
  width: min(850px, 92vw);
  max-height: 90svh;
  overflow: auto;
  border: 1px solid #c9f56a30;
  border-radius: 16px;
  padding: 0;
  background: #182012;
  color: var(--fg);
  box-shadow: 0 25px 100px #0009;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #080b07d9;
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: sticky;
  top: 14px;
  margin: 14px 14px -54px;
  float: right;
  z-index: 5;
  background: #151c12ed;
  border-color: #ffffff50;
  color: white;
}
.dialog-body {
  padding: 30px 38px 38px;
}
.dialog-body h2 {
  font-size: 30px;
  line-height: 1.7;
  margin: 12px 0;
}
.dialog-body > p:not(.eyebrow) {
  color: #bec9b0;
  font-size: 14px;
  line-height: 2.2;
}
.dialog-body h3 {
  font-size: 14px;
  margin-top: 25px;
}
.dialog-body ul {
  padding-inline-start: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.4;
}
.dialog-body .tags {
  margin-bottom: 25px;
}
.dialog-body .button {
  margin-top: 20px;
}
dialog .project-art {
  border: 0;
  border-radius: 0;
  height: 330px;
  transform: none !important;
}
dialog .flow-map {
  max-width: 500px;
}
.boot {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  text-align: center;
}
.boot-mark {
  font:
    bold 65px Arial,
    sans-serif;
  letter-spacing: -4px;
  color: var(--lime);
  direction: ltr;
}
.boot-mark span {
  font-size: 30px;
}
.boot p {
  color: var(--muted);
  font-size: 13px;
}
.boot-dots {
  color: var(--lime);
  letter-spacing: 9px;
  font-size: 30px;
}
.boot > a {
  font:
    14px Consolas,
    monospace;
  color: var(--lime);
}
.noscript {
  padding: 25px;
  text-align: center;
  position: fixed;
  inset: auto 0 0;
  background: #29351e;
  z-index: 200;
  font-size: 13px;
}
.load-notice {
  position: fixed;
  bottom: 20px;
  inset-inline: 20px;
  z-index: 200;
  background: #493925;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
}
.motion .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.motion .reveal.visible {
  opacity: 1;
  transform: none;
}
.motion .services-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.motion .services-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.motion .services-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
[lang='en'] .hero h1 {
  font-family: Arial, var(--font);
  font-size: clamp(46px, 5.1vw, 78px);
  line-height: 1.12;
  letter-spacing: -3px;
  margin-top: 30px;
}
[lang='en'] .hero-description {
  line-height: 1.9;
}
[lang='en'] h2 {
  line-height: 1.3;
  font-family: Arial, var(--font);
  letter-spacing: -1.1px;
}
[lang='en'] .intro h2 {
  font-size: 40px;
}
[lang='en'] .chapter-text h3 {
  font-family: Arial, var(--font);
  line-height: 1.2;
  font-size: 40px;
  margin-block: 20px;
}
[lang='en'] .chapter-text > p:not(.eyebrow) {
  line-height: 1.95;
}
[lang='en'] .contact-copy h2 {
  font-size: 42px;
}
[lang='en'] .skills-hero h1 {
  font-family: Arial, var(--font);
  line-height: 1.15;
  letter-spacing: -2px;
}
[lang='en'] .hero-copy {
  padding-top: 25px;
}
[lang='en'] .hero-signature {
  margin-top: 35px;
}
[lang='en'] .project-info h3 {
  line-height: 1.4;
}
[lang='en'] .skill-value small {
  font-size: 0;
}
[lang='en'] .skill-value small::after {
  content: '%';
  font-size: 13px;
}
[lang='ar'] .hero h1 {
  font-size: clamp(48px, 4.9vw, 73px);
  line-height: 1.45;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes drawWave {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 8;
    opacity: 0.7;
  }
}
@keyframes dnaBreathe {
  0%,
  100% {
    scale: 1 1;
  }
  50% {
    scale: 0.72 1;
  }
}
@keyframes pulseMove {
  0%,
  100% {
    opacity: 0;
    translate: -18px 0;
  }
  50% {
    opacity: 1;
    translate: 20px 0;
  }
}
@media (min-width: 1700px) {
  .hero {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-visual {
    min-height: 610px;
  }
  .portrait-frame {
    height: 485px;
    max-width: 400px;
  }
  .story-stage {
    height: 410px;
  }
  .story-inner {
    padding-block: 50px;
  }
  .story-heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: 90%;
  }
  .header {
    padding-inline: 4%;
    gap: 15px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .header-actions {
    gap: 12px;
  }
  .brand small {
    font-size: 8px;
  }
  .hero {
    gap: 3%;
    padding-top: 45px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-visual {
    min-height: 505px;
  }
  .portrait-frame {
    height: 380px;
    width: 80%;
  }
  .tag-apax {
    right: 0;
    top: 18%;
    padding: 12px;
  }
  .tag-apax b {
    font-size: 15px;
  }
  .tag-apax > span {
    display: none;
  }
  .tag-code {
    padding: 12px;
    font-size: 10px;
    left: -4%;
    bottom: 16%;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding: 12px 16px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .portrait-stamp {
    height: 56px;
    width: 56px;
    left: 0;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-bottom {
    font-size: 9px;
  }
  .section {
    padding-block: 80px;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 22px 16px;
  }
  .service-card h3 {
    font-size: 15px;
  }
  .project-art {
    height: 280px;
  }
  .project-featured .project-art {
    height: 370px;
  }
  .flow-node {
    gap: 5px;
  }
  .flow-node > span {
    font-size: 8px;
  }
  .flow-center b {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .flow-center .apax-glyph {
    font-size: 38px;
  }
  .project-info h3 {
    font-size: 19px;
  }
  .project-bottom {
    flex-wrap: wrap;
    gap: 0;
  }
  .project-bottom > p {
    width: 100%;
    margin-bottom: 0;
  }
  .project-bottom .project-status {
    margin: 8px 0 12px;
  }
  .contact-grid {
    gap: 5%;
  }
  .contact-form {
    padding: 25px;
  }
  .contact-link b {
    font-size: 13px;
  }
  .social-links {
    gap: 12px;
  }
  .contact-copy h2 {
    font-size: 34px;
  }
  .skills-hero-grid {
    gap: 3%;
    grid-template-columns: 1.2fr 1fr;
  }
  .tool-orbit {
    transform: scale(0.85);
  }
  .skill-card {
    padding: 20px;
  }
  .skill-value-row h2 {
    font-size: 16px;
  }
  .skill-value {
    font-size: 25px;
  }
  .english-card {
    padding: 22px;
    gap: 18px;
  }
  .english-gauge {
    width: 100px;
    height: 100px;
  }
  [lang='en'] .hero h1 {
    font-size: 61px;
  }
  [lang='en'] .chapter-text h3 {
    font-size: 33px;
  }
  [lang='en'] .contact-copy h2 {
    font-size: 35px;
  }
  [lang='en'] .intro h2 {
    font-size: 34px;
  }
}
@media (max-width: 850px) {
  .header {
    height: 76px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .header-contact {
    padding: 7px 12px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-description {
    line-height: 2.1;
    font-size: 12px;
  }
  .hero-visual {
    min-height: 490px;
  }
  .portrait-frame {
    height: 340px;
    width: 83%;
    border-radius: 130px 130px 15px 15px;
  }
  .portrait-stamp {
    top: 23%;
    height: 47px;
    width: 47px;
  }
  .portrait-stamp .icon {
    width: 28px;
    height: 28px;
  }
  .tag-apax {
    top: 23%;
  }
  .tag-code {
    bottom: 19%;
    padding: 10px;
    font-size: 9px;
  }
  .tag-code .icon {
    width: 15px;
  }
  .portrait-name {
    bottom: 20px;
    inset-inline: 12px;
  }
  .portrait-name > span {
    font-size: 17px;
  }
  .portrait-name small {
    font-size: 8px;
  }
  .hero-signature {
    margin-top: 20px;
  }
  .hero-actions {
    margin-top: 23px;
    gap: 16px;
  }
  .hero-bottom > span:last-child {
    display: none;
  }
  .intro-grid {
    gap: 6%;
  }
  .intro h2 {
    font-size: 31px;
  }
  .large-body {
    font-size: 13px;
  }
  .story-scene {
    gap: 4%;
  }
  .story-stage {
    height: 290px;
  }
  .chapter-text h3 {
    font-size: 26px;
  }
  .chapter-text > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 2.2;
  }
  .chapter-text {
    min-height: 280px;
  }
  .story-heading h2 {
    font-size: 24px;
  }
  .story-sticky {
    min-height: 570px;
  }
  .signal-circle {
    width: 190px;
    height: 190px;
  }
  .signal-circle .wave {
    width: 260px;
  }
  .story-dna {
    transform: scale(0.88);
  }
  .design-visual {
    transform: scale(0.85);
  }
  .flow-node > span {
    font-size: 7px;
  }
  .flow-node .icon {
    width: 16px;
    height: 16px;
  }
  .flow-center b {
    font-size: 9px;
  }
  .flow-center .apax-glyph {
    font-size: 27px;
  }
  .story-stage .flow-map {
    width: 100%;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .section-heading > div {
    width: 44%;
    max-width: 320px;
  }
  .section-heading p {
    font-size: 12px;
  }
  .project-grid {
    gap: 35px 20px;
  }
  .project-art {
    height: 245px;
  }
  .project-featured .project-art {
    height: 340px;
  }
  .project-featured .flow-center .apax-glyph {
    font-size: 43px;
  }
  .project-featured .flow-center b {
    font-size: 12px;
  }
  .project-featured .flow-node .icon {
    width: 22px;
    height: 22px;
  }
  .project-featured .flow-node > span {
    font-size: 10px;
  }
  .clinic-window {
    width: 80%;
    height: 75%;
  }
  .calendar-grid {
    height: 105px;
  }
  .calendar-mock {
    padding: 10px;
  }
  .floating-record {
    right: -12px;
    bottom: -9px;
    padding: 10px;
  }
  .green-visual {
    gap: 0;
  }
  .leaf-orbit {
    width: 100px;
    height: 100px;
  }
  .leaf-orbit > .icon {
    width: 55px;
    height: 55px;
  }
  .green-panel {
    min-width: 135px;
    padding: 12px;
  }
  .green-panel p {
    font-size: 8px;
    margin: 8px 0;
  }
  .green-chart {
    height: 32px;
  }
  .b2b-window {
    width: 88%;
    height: 76%;
  }
  .kanban {
    padding: 10px;
    gap: 7px;
  }
  .kanban-card {
    padding: 6px;
    margin: 6px 0;
  }
  .kanban-card:nth-child(4) {
    display: none;
  }
  .data-visual {
    gap: 15px;
  }
  .data-pages {
    height: 110px;
  }
  .data-page {
    padding: 12px;
  }
  .data-page span {
    font-size: 17px;
  }
  .data-page i {
    margin-top: 10px;
    height: 3px;
  }
  .data-table {
    padding: 10px;
    width: 48%;
  }
  .data-table > div {
    gap: 5px;
    font-size: 8px;
  }
  .data-table p {
    gap: 5px;
    font-size: 7px;
    margin: 7px 0;
  }
  .data-stages {
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 7px;
  }
  .bio-visual {
    gap: 15px;
  }
  .signal-card {
    padding: 12px;
  }
  .bio-visual .dna {
    transform: rotate(15deg) scale(0.65);
    width: 33%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .services-section h2 {
    font-size: 29px;
  }
  .service-card > div {
    margin-bottom: 22px;
  }
  .experience-heading h2 {
    font-size: 30px;
  }
  .experience-grid {
    gap: 5%;
  }
  .education {
    padding: 23px;
  }
  .experience-card {
    gap: 13px;
  }
  .experience-card h3 {
    font-size: 16px;
  }
  .experience-card h4 {
    font-size: 11px;
  }
  .experience-card p {
    font-size: 11px;
  }
  .education h3 {
    font-size: 14px;
  }
  .education p {
    font-size: 11px;
  }
  .experience-symbol {
    width: 36px;
    height: 36px;
  }
  .experience-heading p {
    font-size: 12px;
  }
  .contact-copy h2 {
    font-size: 31px;
  }
  .contact-form {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .social-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .social-links > a {
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
  }
  .email-row {
    gap: 6px;
  }
  .contact-link {
    gap: 8px;
  }
  .contact-link b {
    font-size: 12px;
  }
  .contact-link .icon {
    width: 16px;
  }
  .email-row .icon-button {
    width: 30px;
    height: 30px;
    padding: 6px;
    flex-shrink: 0;
  }
  .email-row .contact-link > .icon:last-child {
    display: none;
  }
  .skills-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
  }
  .skills-hero h1 {
    font-size: 39px;
  }
  .tool-orbit {
    transform: scale(0.68);
    margin-inline: -50px;
  }
  .skills-hero .large-body {
    font-size: 13px;
  }
  .skill-grid {
    grid-template-columns: 1fr 1fr;
  }
  .learning-grid {
    grid-template-columns: 1fr;
  }
  .english-card {
    gap: 28px;
    padding: 30px;
  }
  .english-gauge {
    width: 115px;
    height: 115px;
  }
  .english-card h2 {
    font-size: 26px;
  }
  .footer {
    font-size: 9px;
  }
  [lang='en'] .hero h1 {
    font-size: 48px;
  }
  [lang='en'] .hero-description {
    font-size: 13px;
  }
  [lang='en'] .hero-copy {
    padding-top: 10px;
  }
  [lang='en'] .intro h2 {
    font-size: 29px;
  }
  [lang='en'] .chapter-text h3 {
    font-size: 28px;
  }
  [lang='en'] .contact-copy h2 {
    font-size: 31px;
  }
  [lang='ar'] .hero h1 {
    font-size: 48px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: 89%;
  }
  .header {
    padding-inline: 5%;
    gap: 10px;
  }
  .brand {
    font-size: 12px;
    gap: 8px;
  }
  .brand small {
    font-size: 8px;
    max-width: 165px;
    white-space: normal;
    line-height: 1.7;
  }
  .brand-mark {
    font-size: 33px;
    min-width: 38px;
  }
  .brand-mark span {
    font-size: 18px;
    top: -10px;
  }
  .header-actions {
    gap: 11px;
  }
  .header-contact {
    display: none;
  }
  .language-wrap {
    gap: 2px;
  }
  .language-wrap .icon {
    display: none;
  }
  .language-wrap select {
    font-size: 10px;
    max-width: 68px;
  }
  .menu-toggle {
    width: 33px;
    height: 33px;
    padding: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    gap: 0;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.8vw, 63px);
    line-height: 1.48;
    margin: 22px 0 17px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 2.2;
    max-width: 450px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 23px;
  }
  .hero-actions .button {
    padding: 12px 16px;
    font-size: 11px;
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 5px;
  }
  .hero-signature {
    margin-top: 22px;
    font-size: 9px;
    gap: 20px;
  }
  .signature {
    font-size: 25px;
  }
  .hero-visual {
    min-height: 425px;
    margin-top: 10px;
    max-width: 460px;
    width: 100%;
    justify-self: center;
  }
  .portrait-frame {
    height: 340px;
    width: 70%;
    max-width: 300px;
  }
  .portrait-stamp {
    top: 19%;
    left: 4%;
    width: 53px;
    height: 53px;
  }
  .tag-apax {
    top: 18%;
    right: 0;
  }
  .tag-apax > span {
    display: block;
    font-size: 8px;
  }
  .tag-apax b {
    font-size: 14px;
  }
  .tag-code {
    bottom: 18%;
    left: 0;
    padding: 12px;
    font-size: 10px;
  }
  .hero-bottom {
    margin-top: 20px;
    font-size: 9px;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding-block: 20px;
  }
  .hero-bottom > span:first-child {
    display: none;
  }
  .visual-coordinate {
    bottom: 8px;
    font-size: 8px;
  }
  .portrait-axis {
    right: 2%;
    font-size: 24px;
  }
  .portrait-orbit {
    height: 255px;
    width: 98%;
  }
  .orbit-two {
    width: 90%;
    height: 240px;
  }
  .marquee {
    margin-top: 8px;
  }
  .marquee > div {
    gap: 30px;
    padding-block: 13px;
  }
  .marquee span {
    font-size: 21px;
  }
  .marquee i {
    font-size: 25px;
  }
  .section {
    padding-block: 60px;
  }
  .section-label {
    margin-bottom: 28px;
    font-size: 10px;
  }
  h2 {
    font-size: 30px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .intro h2 {
    font-size: 29px;
  }
  .intro-grid .large-body {
    font-size: 13px;
    line-height: 2.25;
  }
  .aside-note {
    font-size: 11px;
  }
  .story {
    height: 380vh;
  }
  .story-sticky {
    min-height: 600px;
    top: 76px;
    height: calc(100svh - 76px);
  }
  .story-inner {
    padding-block: 20px;
    width: 89%;
  }
  .story-heading {
    gap: 15px;
    align-items: start;
  }
  .story-heading .eyebrow {
    font-size: 9px;
  }
  .story-heading h2 {
    font-size: 20px;
    margin-top: 7px;
    line-height: 1.5;
  }
  .story-counter {
    font-size: 12px;
    gap: 6px;
  }
  .story-counter b {
    font-size: 29px;
  }
  .story-counter i {
    font-size: 18px;
  }
  .story-scene {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
  }
  .story-stage {
    height: 200px;
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
  .chapter-text {
    min-height: 220px;
  }
  .chapter-text > .eyebrow {
    font-size: 9px;
  }
  .chapter-text h3 {
    font-size: 24px;
    margin: 10px 0 8px;
    line-height: 1.6;
  }
  .chapter-text > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 2.05;
    min-height: 100px;
  }
  .chapter-words {
    gap: 7px;
    margin-top: 13px;
  }
  .chapter-words span {
    font-size: 9px;
    padding: 2px 10px;
  }
  .story-navigation {
    padding-top: 13px;
    margin-top: 10px;
  }
  .story-help {
    font-size: 8px;
    margin: 5px 0 0;
  }
  .chapter-buttons {
    gap: 10px;
    max-width: 70%;
  }
  .chapter-buttons button {
    gap: 5px;
  }
  .chapter-buttons span {
    font-size: 10px;
  }
  .story-arrows {
    gap: 5px;
  }
  .story-arrows button {
    width: 31px;
    height: 31px;
    font-size: 15px;
  }
  .signal-circle {
    width: 145px;
    height: 145px;
    box-shadow:
      0 0 0 15px #40651e0a,
      0 0 0 30px #40651e05;
  }
  .signal-circle > span {
    top: 20px;
    font-size: 10px;
  }
  .signal-circle .wave {
    width: 220px;
  }
  .code-fragment {
    bottom: 0;
    padding: 7px 17px;
    font-size: 10px;
    gap: 18px;
  }
  .story-dna {
    height: 240px;
    transform: scale(0.7);
    margin-top: -18px;
  }
  .design-visual {
    transform: scale(0.6);
    width: 280px;
    height: 270px;
    margin-top: -25px;
  }
  .story-stage .flow-map {
    width: 95%;
    max-width: 340px;
  }
  .story-stage .flow-node {
    border-radius: 8px;
  }
  .story-stage .flow-center {
    border-radius: 13px;
  }
  .flow-node > span {
    font-size: 8px;
  }
  .story-stage .flow-center b {
    font-size: 9px;
    margin-top: 5px;
  }
  .story-stage .apax-glyph {
    font-size: 27px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading > div {
    width: 100%;
    max-width: none;
    margin-top: 22px;
  }
  .section-heading p {
    font-size: 12px;
    line-height: 2.2;
  }
  .section-heading small {
    font-size: 9px;
  }
  .filter-bar {
    gap: 7px;
    margin-bottom: 25px;
  }
  .filter-bar button {
    padding: 6px 13px;
    font-size: 10px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-featured {
    grid-column: auto;
  }
  .project-art,
  .project-featured .project-art {
    height: 260px;
  }
  .project-info {
    margin-top: 16px;
    gap: 13px;
  }
  .project-info h3 {
    font-size: 19px;
  }
  .project-category {
    font-size: 9px;
  }
  .project-bottom > p {
    font-size: 12px;
    line-height: 2;
  }
  .project-status {
    font-size: 9px;
  }
  .tags > span {
    font-size: 9px;
    padding: 4px 9px;
  }
  .project-featured .flow-map {
    width: 95%;
  }
  .project-featured .flow-center .apax-glyph {
    font-size: 31px;
  }
  .project-featured .flow-center b {
    font-size: 9px;
    letter-spacing: 3px;
  }
  .project-featured .flow-node .icon {
    width: 18px;
    height: 18px;
  }
  .project-featured .flow-node > span {
    font-size: 8px;
  }
  .calendar-grid {
    height: 112px;
  }
  .clinic-window {
    height: 76%;
    width: 77%;
  }
  .clinic-body aside {
    padding: 10px 8px;
  }
  .floating-record {
    padding: 10px 13px;
    right: -15px;
    bottom: 0;
  }
  .green-visual {
    gap: 6px;
  }
  .leaf-orbit {
    width: 115px;
    height: 115px;
  }
  .green-panel {
    width: 48%;
    min-width: 150px;
    padding: 15px;
  }
  .green-panel p {
    font-size: 9px;
  }
  .green-chart {
    height: 35px;
  }
  .b2b-window {
    height: 77%;
    width: 83%;
  }
  .kanban-card:nth-child(4) {
    display: block;
  }
  .kanban-card {
    margin: 6px 0;
    padding: 7px;
  }
  .data-table p {
    font-size: 8px;
    margin: 8px 0;
  }
  .data-table > div {
    font-size: 9px;
  }
  .data-stages {
    bottom: -3px;
    font-size: 8px;
  }
  .services-section h2 {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card > div {
    margin-bottom: 17px;
  }
  .service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 12px;
  }
  .experience-heading {
    display: block;
    margin-bottom: 20px;
  }
  .experience-heading h2 {
    font-size: 28px;
  }
  .experience-heading p {
    max-width: none;
    width: 100%;
    font-size: 12px;
    margin-top: 18px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .experience-card {
    padding: 22px 0;
    gap: 16px;
  }
  .experience-card h3 {
    font-size: 17px;
  }
  .experience-card h4 {
    font-size: 12px;
  }
  .experience-card p {
    font-size: 12px;
  }
  .education {
    padding: 27px;
  }
  .education h3 {
    font-size: 16px;
  }
  .education p {
    font-size: 12px;
  }
  .other-roles > div {
    gap: 15px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-copy h2 {
    font-size: 32px;
    margin-top: 20px;
  }
  .contact-copy > .eyebrow {
    font-size: 10px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-link b {
    font-size: 15px;
  }
  .email-row .contact-link > .icon:last-child {
    display: block;
  }
  .contact-link {
    gap: 12px;
    padding-block: 17px;
  }
  .social-links {
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .social-links > a {
    border-bottom: 0;
    gap: 10px;
  }
  .social-links > a > .icon {
    width: 18px;
  }
  .social-links > a > .icon:last-child {
    display: none;
  }
  .social-links small {
    font-size: 9px;
  }
  .contact-form {
    padding: 25px;
    margin-top: 0;
  }
  .contact-form h3 {
    font-size: 18px;
    margin-bottom: 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  input,
  textarea {
    font-size: 14px;
  }
  label {
    font-size: 12px;
  }
  .contact-section .section {
    padding-bottom: 80px;
  }
  .contact-watermark {
    font-size: 90px;
    letter-spacing: -5px;
    bottom: -5px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 20px;
    padding-block: 25px;
  }
  .footer > span {
    order: 3;
    width: 100%;
    text-align: center;
    font-size: 9px;
  }
  .footer > .brand {
    font-size: 11px;
  }
  .footer > a:last-child {
    font-size: 9px;
  }
  .skills-hero {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .skills-hero > .text-link {
    margin-bottom: 32px;
  }
  .skills-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .skills-hero h1 {
    font-size: 38px;
    margin-top: 19px;
  }
  .skills-hero .large-body {
    font-size: 13px;
  }
  .skills-hero .eyebrow {
    font-size: 10px;
  }
  .tool-orbit {
    transform: scale(0.78);
    margin: -10px auto -5px;
    height: 320px;
    width: 320px;
  }
  .skill-section {
    padding-bottom: 65px;
  }
  .skill-filters {
    padding-top: 22px;
  }
  .skill-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .skill-card {
    padding: 23px;
  }
  .skill-top {
    margin-bottom: 16px;
  }
  .skill-value-row {
    margin-bottom: 19px;
  }
  .skill-value-row h2 {
    font-size: 20px;
  }
  .skill-value {
    font-size: 30px;
  }
  .skill-note {
    font-size: 10px;
    margin-top: 23px;
    margin-bottom: 35px;
  }
  .english-card {
    padding: 25px 20px;
    gap: 20px;
  }
  .english-gauge {
    height: 90px;
    width: 90px;
  }
  .english-gauge > span {
    font-size: 29px;
  }
  .english-gauge small {
    font-size: 11px;
  }
  .english-card h2 {
    font-size: 20px;
  }
  .english-card p {
    font-size: 11px;
  }
  .learning-card {
    padding: 25px;
  }
  .learning-card h2 {
    font-size: 23px;
  }
  .learning-card p {
    font-size: 12px;
  }
  .dialog-body {
    padding: 25px;
  }
  .dialog-body h2 {
    font-size: 24px;
  }
  .dialog-body > p:not(.eyebrow) {
    font-size: 13px;
  }
  .dialog-body ul {
    font-size: 12px;
  }
  dialog .project-art {
    height: 260px;
  }
  dialog .flow-map {
    width: 95%;
  }
  .dialog-close {
    width: 33px;
    height: 33px;
    margin-bottom: -47px;
  }
  [lang='en'] .hero h1 {
    font-size: clamp(49px, 12vw, 69px);
    line-height: 1.12;
    letter-spacing: -2.5px;
    margin-top: 25px;
  }
  [lang='en'] .hero-description {
    font-size: 13px;
    line-height: 1.9;
  }
  [lang='en'] .hero-signature {
    margin-top: 24px;
  }
  [lang='en'] .intro h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  [lang='en'] .chapter-text h3 {
    font-size: 27px;
    margin: 13px 0 10px;
    line-height: 1.2;
  }
  [lang='en'] .chapter-text > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.85;
  }
  [lang='en'] .chapter-text {
    min-height: 220px;
  }
  [lang='en'] .story-heading h2 {
    font-size: 22px;
  }
  [lang='en'] .contact-copy h2 {
    font-size: 33px;
  }
  [lang='en'] .skills-hero h1 {
    font-size: 43px;
  }
  [lang='en'] .learning-card h2 {
    font-size: 24px;
  }
  [lang='ar'] .hero h1 {
    font-size: clamp(48px, 12vw, 66px);
    line-height: 1.45;
  }
}
@media (max-width: 370px) {
  .header-actions {
    gap: 7px;
  }
  .brand small {
    max-width: 145px;
    font-size: 7px;
  }
  .brand {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 9px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 11px 14px;
  }
  .tag-apax > span {
    display: none;
  }
  .hero-visual {
    min-height: 385px;
  }
  .portrait-frame {
    height: 310px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .contact-link b {
    font-size: 12px;
  }
  .email-row .contact-link > .icon:last-child {
    display: none;
  }
  .project-info h3 {
    font-size: 17px;
  }
  .tool-orbit {
    transform: scale(0.7);
    margin-inline: -5px;
  }
  .chapter-text h3 {
    font-size: 22px;
  }
  .chapter-text > p:not(.eyebrow) {
    font-size: 11px;
  }
  .story-stage {
    height: 170px;
  }
  .story-sticky {
    min-height: 600px;
  }
  .chapter-text {
    min-height: 240px;
  }
  .chapter-buttons {
    max-width: 65%;
  }
  [lang='en'] .hero h1 {
    font-size: 47px;
  }
  [lang='en'] .chapter-text h3 {
    font-size: 25px;
  }
  [lang='en'] .chapter-text > p:not(.eyebrow) {
    font-size: 11px;
  }
}
@media (max-height: 720px) and (min-width: 601px) {
  .story-sticky {
    min-height: 520px;
  }
  .story-inner {
    padding-block: 20px;
  }
  .story-stage {
    height: 260px;
  }
  .story-heading h2 {
    font-size: 23px;
  }
  .story-scene {
    margin-top: 10px;
  }
  .chapter-text {
    min-height: 260px;
  }
  .chapter-text h3 {
    font-size: 27px;
  }
  .chapter-text > p:not(.eyebrow) {
    font-size: 12px;
  }
  .story-dna {
    transform: scale(0.8);
  }
  .signal-circle {
    width: 190px;
    height: 190px;
  }
  .design-visual {
    transform: scale(0.8);
  }
  .story-navigation {
    padding-top: 12px;
  }
  .story-help {
    margin-top: 3px;
  }
}
@media (max-height: 730px) and (max-width: 600px) {
  .story-stage {
    height: 150px;
  }
  .story-sticky {
    min-height: 560px;
  }
  .story-inner {
    padding-block: 16px;
  }
  .story-scene {
    margin-top: 10px;
  }
  .signal-circle {
    width: 115px;
    height: 115px;
  }
  .signal-circle > span {
    top: 14px;
    font-size: 8px;
  }
  .signal-circle .wave {
    width: 170px;
  }
  .code-fragment {
    padding: 5px 12px;
    font-size: 8px;
  }
  .story-dna {
    transform: scale(0.52);
    margin-top: -35px;
  }
  .design-visual {
    transform: scale(0.48);
    margin-top: -55px;
  }
  .story-stage .flow-map {
    max-width: 280px;
  }
  .chapter-text h3 {
    font-size: 23px;
  }
  .chapter-text > p:not(.eyebrow) {
    font-size: 11px;
    line-height: 2;
  }
  .chapter-text {
    min-height: 225px;
  }
  .chapter-words {
    margin-top: 10px;
  }
  .story-navigation {
    margin-top: 5px;
  }
}
.story-flow {
  height: 95%;
  width: 100%;
  display: grid;
  place-items: center;
}
.story-flow .data-visual {
  width: 90%;
  height: 80%;
}
.story-flow .data-page {
  background: #f2ffe0;
  border-color: #6e8c4155;
  color: #365423;
}
.story-flow .data-page:last-child {
  background: #d4eca9;
}
.story-flow .data-page i {
  background: #95b369;
}
.story-flow .data-table {
  background: #23391a;
  border-color: #59763b80;
}
.story-flow .data-table > div {
  color: #d7efb2;
}
.story-flow .data-table p {
  color: #97b579;
  border-color: #9bbd6344;
}
.story-flow .data-table p i {
  background: #57763d;
}
.story-flow .data-connector,
.story-flow .data-stages,
.story-flow .data-stages i {
  color: #405f27;
}
.contact-watermark {
  font-family: var(--font);
  font-weight: 700;
}
@media (max-width: 600px) {
  .portrait-orbit {
    width: 82%;
    height: 220px;
  }
  .orbit-two {
    width: 85%;
    height: 210px;
  }
  .story-flow .data-visual {
    height: 100%;
    max-width: 310px;
  }
  .story-flow .data-stages {
    bottom: -8px;
  }
  .story-flow .data-pages {
    height: 95px;
  }
  .story-flow .data-table {
    padding: 8px;
  }
  .story-flow .data-table p {
    margin: 5px 0;
    padding-bottom: 4px;
  }
  .story-flow .data-table > div {
    margin-bottom: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion .reveal,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .story {
    height: auto;
  }
  .story-sticky {
    height: auto;
    min-height: 0;
    position: relative;
    top: 0;
    padding-block: 30px;
  }
  .story-stage {
    margin-block: 20px;
  }
  .scene-layer {
    transition: none;
  }
  .hero-visual {
    transform: none;
  }
  .project-art {
    transform: none !important;
  }
  .skill-meter i {
    transform: none !important;
  }
}
