:root {
  --ink: #0a0d0b;
  --ink-soft: #121613;
  --ink-raised: #171c18;
  --paper: #f2f0e9;
  --paper-bright: #faf9f4;
  --paper-deep: #e6e3d9;
  --accent: #72c7ff;
  --accent-strong: #2fa7e5;
  --text: #121512;
  --text-soft: #555b55;
  --line: rgba(15, 20, 16, 0.15);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #fff;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 max(32px, calc((100% - var(--container)) / 2));
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(10, 13, 11, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
  isolation: isolate;
}

.brand-mark::before {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px solid rgba(10, 13, 11, 0.13);
  transform: skewX(-7deg);
}

.brand-mark::after {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(10, 13, 11, 0.18);
  transform: rotate(10deg);
}

.brand-monogram {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.13em;
  transform: skewX(-7deg);
}

.brand-monogram span {
  color: var(--ink);
}

.brand-monogram span:first-child {
  font-size: 16px;
  font-weight: 900;
}

.brand-monogram span:last-child {
  margin-left: -1px;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(1px);
}

.brand-name {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-name strong {
  font-weight: 800;
}

.brand-first-name {
  font-size: 16px;
  font-weight: bolder;
  color: var(--accent);
}

.brand-last-name {
	font-size: 14px;
  color: var(--white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav > a:hover,
.desktop-nav > a.active {
  color: var(--white);
}

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

.desktop-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--accent);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.desktop-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.nav-cta svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 25px;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0;
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--paper);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.6s var(--ease),
    visibility 0.6s;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 48px), 600px);
  min-height: 100%;
  height: auto;
  margin: auto;
  padding-top: 90px;
  padding-bottom: 32px;
}

.menu-label {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin: 34px 0 auto;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 8px 0;
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.mobile-menu nav a span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
}

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.mobile-menu-meta p {
  margin: 0;
}

.mobile-menu-meta a {
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: calc(var(--header-height) + 86px) 0 0;
  color: var(--paper);
  background: var(--ink);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid::after,
.contact-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at center, transparent 15%, var(--ink) 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 20%;
  right: -20%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(45, 167, 229, 0.12), transparent 65%);
}

.hero-glow-two {
  bottom: 10%;
  left: -15%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 132, 255, 0.06), transparent 66%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hero-copy {
  padding-bottom: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.63);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow {
  flex-wrap: wrap;
  gap: 8px 18px;
}

.hero-eyebrow-role {
  color: rgba(255, 255, 255, 0.72);
}

.hero-eyebrow-role i {
  color: var(--accent);
  font-style: normal;
}

.hero-eyebrow-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(114, 199, 255, 0.1);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.8; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}

.hero h1 {
  max-width: 850px;
  margin: 30px 0 38px;
  font-size: clamp(3.8rem, 7.1vw, 6.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.text-accent {
  position: relative;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.text-accent::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: rotate(-1.5deg);
  transform-origin: right;
}

.accent-dot {
  color: var(--accent);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(280px, 450px) auto;
  align-items: end;
  gap: 40px;
}

.hero-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 15px;
  line-height: 1.8;
}

.hero-intro p strong {
  color: var(--paper);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 155px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}

.button:hover svg {
  transform: translateY(3px);
}

.button-primary {
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.button-ghost:hover {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-visual {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(145deg, rgba(114, 199, 255, 0.08), rgba(255, 255, 255, 0.018) 48%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.hero-visual::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.visual-topline,
.visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 47px;
  padding: 0 17px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-topline {
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-topline > span:first-child {
  color: rgba(255, 255, 255, 0.65);
}

.live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  white-space: nowrap;
}

.live-status i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}

.blueprint {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  background: rgba(4, 8, 10, 0.32);
}

.blueprint::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 46%, rgba(114, 199, 255, 0.1), transparent 45%);
  pointer-events: none;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 78%);
}

.blueprint-lines {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  opacity: 0.8;
  transition: transform 0.35s var(--ease);
}

.circle-faint {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
  stroke-dasharray: 2 8;
}

.axis-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}

.pipeline-path {
  fill: none;
  stroke: url(#flow-gradient);
  stroke-width: 1.5;
  stroke-dasharray: 4 7;
  opacity: 0.8;
}

.pipeline-center {
  fill: var(--accent);
  stroke: rgba(10, 13, 11, 0.9);
  stroke-width: 5;
}

.blueprint-label {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.blueprint-label b {
  color: var(--accent);
  font-size: 8px;
  font-weight: 400;
}

.core-node {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  color: var(--accent);
  background: rgba(7, 12, 16, 0.92);
  border: 1px solid rgba(114, 199, 255, 0.58);
  border-radius: 50%;
  box-shadow:
    0 0 0 13px rgba(114, 199, 255, 0.035),
    0 0 60px rgba(114, 199, 255, 0.13);
  transform: translate(-50%, -50%);
}

.core-node::before,
.core-node::after {
  position: absolute;
  content: "";
  background: var(--accent);
}

.core-node::before {
  width: 156px;
  height: 1px;
  opacity: 0.24;
}

.core-node::after {
  width: 1px;
  height: 156px;
  opacity: 0.24;
}

.core-node .node-kicker,
.core-node small {
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.23em;
}

.core-node .node-kicker {
  color: rgba(255, 255, 255, 0.65);
}

.core-node small {
  color: var(--accent);
  font-size: 6px;
}

.core-node strong {
  font-family: var(--mono);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.08em;
}

.pipeline-stage {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: calc(50% - 27px);
  min-height: 78px;
  padding: 10px 11px;
  color: var(--paper);
  background: rgba(8, 13, 17, 0.88);
  border: 1px solid rgba(114, 199, 255, 0.28);
  border-top: 2px solid rgba(114, 199, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.pipeline-stage:hover {
  background: rgba(114, 199, 255, 0.12);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.stage-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.pipeline-stage strong {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
}

.pipeline-stage small {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 7.5px;
  line-height: 1.35;
  letter-spacing: 0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-develop { top: 57px; left: 18px; }
.stage-build { top: 57px; right: 18px; }
.stage-test { bottom: 91px; left: 18px; }
.stage-deploy { right: 18px; bottom: 91px; }

.devops-learning {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 59px;
  padding: 9px 11px;
  background: rgba(114, 199, 255, 0.1);
  border: 1px solid rgba(114, 199, 255, 0.35);
}

.learning-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--accent);
  border: 1px solid rgba(114, 199, 255, 0.5);
}

.learning-mark svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.devops-learning > div {
  min-width: 0;
}

.devops-learning b,
.devops-learning small {
  display: block;
  font-family: var(--mono);
}

.devops-learning b {
  color: var(--accent);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.devops-learning small {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  font-size: 7.5px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: normal;
}

.learning-status {
  margin-left: auto;
  padding: 4px 5px;
  color: var(--accent);
  border: 1px solid rgba(114, 199, 255, 0.35);
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.visual-footer {
  justify-content: flex-start;
  gap: 18px;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-footer > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.visual-footer span {
  color: rgba(255, 255, 255, 0.33);
  font-size: 6px;
}

.visual-footer strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 7px;
  font-weight: 400;
}

.visual-footer .visual-version {
  margin-left: auto;
  color: rgba(114, 199, 255, 0.72);
  font-size: 6px;
  text-align: right;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.1fr;
  margin-top: 78px;
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.metric {
  display: flex;
  align-items: center;
  min-height: 111px;
  padding: 20px 30px;
  border-right: 1px solid var(--line-light);
}

.metric strong {
  color: var(--paper);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.metric strong span {
  color: var(--accent);
}

.metric p {
  margin: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.metric-note {
  justify-content: flex-end;
  border-right: 0;
}

.metric-note svg {
  width: 27px;
  margin-right: 17px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.3;
}

.metric-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  line-height: 1.7;
}

.code-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 48px;
  margin-top: 42px;
  color: var(--ink);
  background: var(--accent);
  overflow: hidden;
}

.code-strip-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  min-width: max(205px, 22%);
  padding: 0 32px;
  color: var(--paper);
  background: #151a16;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.code-dot {
  width: 6px;
  height: 6px;
  background: #ff715b;
  border-radius: 50%;
}

.code-track {
  display: flex;
  align-items: center;
  gap: 38px;
  min-width: max-content;
  padding-left: 38px;
  animation: marquee 28s linear infinite;
}

.code-track code {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.01em;
}

.code-track code:not(:last-child)::after {
  margin-left: 38px;
  color: rgba(10, 13, 11, 0.42);
  content: ";";
}

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

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 78px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  color: #7b817b;
}

.section-label::after {
  width: 50px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.35;
}

.section-heading > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
}

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

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.42);
}

.about {
  position: relative;
  background: var(--paper);
}

.about::after {
  position: absolute;
  top: 0;
  right: max(32px, calc((100% - var(--container)) / 2));
  width: 1px;
  height: 90px;
  content: "";
  background: var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 145px);
}

.about-statement h2,
.expertise-intro h2,
.recognition-title h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6.3vw, 6.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.about-statement h2 span,
.recognition-title h2 span {
  color: #687069;
  font-style: italic;
  font-weight: 400;
}

.about-copy {
  padding-top: 11px;
}

.about-lead {
  margin-bottom: 43px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.03em;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.about-columns p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.9;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-item {
  position: relative;
  min-height: 222px;
  padding: 30px 25px 30px 0;
  border-right: 1px solid var(--line);
}

.value-item:not(:first-child) {
  padding-left: 25px;
}

.value-item:last-child {
  border-right: 0;
}

.value-item > span {
  display: block;
  margin-bottom: 43px;
  color: #848a84;
  font-family: var(--mono);
  font-size: 9px;
}

.value-item strong {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 700;
}

.value-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.75;
}

.expertise {
  position: relative;
}

.expertise::before {
  position: absolute;
  top: 0;
  right: 6%;
  width: 440px;
  height: 440px;
  content: "";
  background: radial-gradient(circle, rgba(114, 199, 255, 0.055), transparent 70%);
  pointer-events: none;
}

.expertise-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 76px;
}

.expertise-intro h2 {
  font-size: clamp(3.2rem, 5.8vw, 5.75rem);
}

.expertise-intro h2 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.expertise-intro > p {
  max-width: 360px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.8;
}

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

.expertise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px 29px 30px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 0.45s var(--ease),
    border-color 0.45s ease,
    transform 0.45s var(--ease);
}

.expertise-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--accent);
  transform: translateY(102%);
  transition: transform 0.45s var(--ease);
}

.expertise-card > * {
  position: relative;
  z-index: 1;
}

.expertise-card:hover {
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.expertise-card:hover::before {
  transform: translateY(0);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 63px;
}

.card-number {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 9px;
  transition: color 0.35s ease;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--accent);
  border: 1px solid var(--line-light);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.card-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-card h3 {
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.expertise-card > p {
  max-width: 335px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-list span,
.timeline-tags span {
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.35s ease,
    border-color 0.35s ease;
}

.expertise-card:hover .card-number,
.expertise-card:hover > p {
  color: rgba(10, 13, 11, 0.64);
}

.expertise-card:hover .card-icon {
  color: var(--ink);
  background: rgba(10, 13, 11, 0.07);
  border-color: rgba(10, 13, 11, 0.2);
}

.expertise-card:hover .tag-list span {
  color: var(--ink);
  border-color: rgba(10, 13, 11, 0.28);
}

.experience {
  background: var(--paper-bright);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(70px, 11vw, 160px);
}

.experience-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.experience-aside .section-heading {
  display: block;
  margin-bottom: 90px;
  padding: 0;
  border: 0;
}

.experience-aside .section-label {
  margin-bottom: 16px;
}

.experience-aside .section-label::after {
  display: none;
}

.experience-aside .section-heading > p {
  color: var(--text-soft);
}

.experience-summary {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-summary span,
.experience-summary small {
  color: #838983;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-summary strong {
  display: block;
  margin-top: 21px;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.experience-summary p {
  margin: 2px 0 19px;
  color: var(--text-soft);
  font-size: 12px;
}

.timeline {
  position: relative;
}

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

.timeline-item {
  position: relative;
  padding-left: 42px;
}

.timeline-marker {
  position: absolute;
  z-index: 2;
  top: 2px;
  left: -7px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.timeline-marker span {
  width: 5px;
  height: 5px;
  background: var(--accent-strong);
  border-radius: 50%;
}

.timeline-date {
  margin-bottom: 25px;
  color: #7b817b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.timeline-item h3 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.8vw, 3.45rem);
  font-weight: 500;
  line-height: 1.08;
}

.timeline-item h3 span {
  color: #969b95;
  font-weight: 400;
}

.timeline-summary {
  max-width: 650px;
  margin-bottom: 42px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.work-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.work-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}

.work-list li:hover {
  padding-left: 8px;
}

.work-list li > span {
  padding-top: 3px;
  color: #909690;
  font-family: var(--mono);
  font-size: 8px;
}

.work-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
}

.work-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.75;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.timeline-tags span {
  color: #666c66;
  border-color: var(--line);
}

.process {
  padding-bottom: 140px;
}

.process-top {
  margin-bottom: 70px;
}

.process-top .section-heading {
  margin-bottom: 90px;
}

.process-top h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.07em;
}

.process-top h2 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.process-card {
  position: relative;
  min-height: 355px;
  padding: 24px 25px 28px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.4s ease;
}

.process-card::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.process-card:hover::after {
  transform: scale(1);
}

.process-number {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.33);
  font-family: var(--mono);
  font-size: 9px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 35px;
  color: var(--accent);
  border: 1px solid rgba(114, 199, 255, 0.3);
}

.process-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 600;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.75;
}

.recognition {
  background: var(--paper);
}

.recognition-title {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: 60px;
  margin-bottom: 76px;
}

.recognition-title p {
  margin: 0 0 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.8;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.award-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 25px 27px 28px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease;
}

.award-card:hover {
  z-index: 2;
  box-shadow: 0 24px 60px rgba(18, 21, 18, 0.11);
  transform: translateY(-6px);
}

.award-dark {
  color: var(--paper);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.award-accent {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.award-index {
  margin-bottom: 38px;
  color: #818781;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.award-dark .award-index {
  color: rgba(255, 255, 255, 0.38);
}

.award-accent .award-index {
  color: rgba(10, 13, 11, 0.55);
}

.award-card > strong {
  margin-bottom: 22px;
  font-size: 4.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.08em;
}

.award-card h3 {
  margin-bottom: 11px;
  font-size: 17px;
  font-weight: 700;
}

.award-card p {
  max-width: 310px;
  margin: 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.75;
}

.award-dark p {
  color: rgba(255, 255, 255, 0.45);
}

.award-accent p {
  color: rgba(10, 13, 11, 0.65);
}

.siemens-quote {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin: 100px 0 0;
  padding: 55px 60px 58px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-soft);
}

.quote-mark {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.7;
}

.siemens-quote p {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.siemens-quote footer {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-line {
  position: absolute;
  right: -15%;
  bottom: -65%;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(114, 199, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(114, 199, 255, 0.025),
    0 0 0 120px rgba(114, 199, 255, 0.015);
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 110px;
}

.credential-label {
  display: block;
  margin-bottom: 25px;
  color: #7b817b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credential-items {
  border-top: 1px solid var(--line);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.certificate-badge {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
}

.certificate-badge.azure {
  color: var(--white);
  background: #1683d5;
}

.credential-item strong,
.education-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
}

.credential-item small,
.education-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: 10px;
}

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

.education-list article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.education-list article > span {
  padding-top: 2px;
  color: #858b85;
  font-family: var(--mono);
  font-size: 8px;
}

.growth-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 470px;
  margin-top: 110px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.growth-copy {
  position: relative;
  z-index: 2;
  padding: 58px;
}

.growth-copy .credential-label {
  color: var(--accent);
}

.growth-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4.6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.growth-copy h2 em {
  color: var(--accent);
  font-weight: 400;
}

.growth-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.8;
}

.growth-orbit {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
}

.growth-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(114, 199, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 145px; height: 145px; }
.ring-two { width: 270px; height: 270px; }
.ring-three { width: 410px; height: 410px; }

.ring-two::before,
.ring-three::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent);
}

.ring-three::before {
  top: 15%;
  left: 77%;
}

.growth-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  line-height: 0.8;
  text-align: center;
  transform: translate(-50%, -50%);
}

.growth-core span {
  font-size: 17px;
}

.tech-label {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.linux { top: 14%; left: 13%; }
.aws { top: 16%; right: 12%; }
.git { top: 43%; right: 5%; }
.docker { bottom: 17%; right: 15%; }
.jenkins { bottom: 12%; left: 14%; }

.contact {
  position: relative;
  min-height: 770px;
  padding: 125px 0 105px;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.contact::after {
  position: absolute;
  top: -300px;
  right: -280px;
  width: 800px;
  height: 800px;
  content: "";
  border: 1px solid rgba(10, 13, 11, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(10, 13, 11, 0.025),
    0 0 0 180px rgba(10, 13, 11, 0.02);
}

.contact-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(10, 13, 11, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 11, 0.08) 1px, transparent 1px);
}

.contact-grid::after {
  background: radial-gradient(circle at 50% 50%, transparent 10%, var(--accent) 82%);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-kicker {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 55px;
}

.contact-kicker > span {
  padding-top: 5px;
  font-family: var(--mono);
  font-size: 10px;
}

.contact-kicker p {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact h2 {
  max-width: 1060px;
  margin-bottom: 42px;
  font-size: clamp(3.8rem, 7.4vw, 7.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.contact h2 span {
  color: rgba(10, 13, 11, 0.43);
  font-style: italic;
  font-weight: 400;
}

.contact-copy {
  max-width: 620px;
  margin-bottom: 43px;
  color: rgba(10, 13, 11, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.button-dark {
  min-width: 225px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.contact-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  border-left: 1px solid rgba(10, 13, 11, 0.25);
}

.contact-phone span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-phone strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.contact :focus-visible {
  outline-color: var(--ink);
  box-shadow: 0 0 0 4px var(--paper-bright);
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 145px;
  border-bottom: 1px solid var(--line-light);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-to-top svg {
  width: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}

.back-to-top:hover svg {
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom > div {
  display: flex;
  gap: 25px;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

/* Keep the opening frame visible even if the first observer callback is delayed. */
.js .hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.2vw, 5.4rem);
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-metrics {
    margin-top: 65px;
  }

  .metric {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .metric p {
    margin: 8px 0 0;
  }

  .metric-note {
    align-items: center;
  }

  .metric-note svg {
    margin: 0 0 10px;
  }

  .metric-note p {
    margin: 0;
  }

  .about-layout {
    gap: 70px;
  }

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

  .value-item:nth-child(2) {
    border-right: 0;
  }

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

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

  .experience-layout {
    grid-template-columns: 240px 1fr;
    gap: 70px;
  }

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

  .process-card {
    min-height: 320px;
  }

  .growth-copy {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .section {
    padding: 100px 0;
  }

  .site-header {
    padding-inline: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .js .menu-toggle {
    display: block;
  }

  html:not(.js) .mobile-menu {
    position: relative;
    inset: auto;
    visibility: visible;
    clip-path: none;
  }

  html:not(.js) .mobile-menu-inner {
    width: min(calc(100% - 44px), 600px);
    min-height: 0;
    margin: 0 auto;
    padding: 64px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual {
    display: none;
  }

  .hero-metrics {
    margin-top: 72px;
  }

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

  .about-statement h2 {
    max-width: 620px;
  }

  .about-copy {
    max-width: 720px;
  }

  .experience-aside {
    position: static;
  }

  .experience-aside .section-heading {
    display: flex;
    margin-bottom: 55px;
  }

  .experience-summary {
    display: none;
  }

  .expertise-intro {
    display: block;
  }

  .expertise-intro > p {
    max-width: 520px;
    margin-top: 28px;
  }

  .recognition-title {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recognition-title p {
    max-width: 500px;
  }

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

  .award-card {
    min-height: 300px;
  }

  .credentials {
    gap: 50px;
  }

  .growth-card {
    grid-template-columns: 1fr;
  }

  .growth-orbit {
    min-height: 430px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .contact {
    min-height: 700px;
  }

  .contact::after {
    right: -450px;
  }
}

@media (max-height: 620px) and (max-width: 900px) {
  .mobile-menu-inner {
    justify-content: flex-start;
    padding-top: 82px;
  }

  .mobile-menu nav {
    margin-top: 20px;
  }

  .mobile-menu nav a {
    padding: 4px 0;
    font-size: clamp(2rem, 9vh, 2.8rem);
  }

  .mobile-menu-meta {
    padding-top: 14px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .site-header.scrolled {
    height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .mobile-menu-inner {
    width: calc(100% - 36px);
  }

  .hero {
    padding-top: 122px;
  }

  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-eyebrow-status {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .hero h1 {
    margin: 25px 0 30px;
    font-size: clamp(3.1rem, 16vw, 4.5rem);
    line-height: 0.98;
  }

  .text-accent::after {
    height: 2px;
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .hero-intro p {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .button {
    min-height: 49px;
    padding: 0 14px;
    font-size: 8px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }

  .metric {
    min-height: 110px;
    padding: 18px;
    border-bottom: 1px solid var(--line-light);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric strong {
    font-size: clamp(1.3rem, 6.4vw, 1.8rem);
    letter-spacing: -0.05em;
  }

  .metric-note {
    justify-content: flex-start;
  }

  .metric-note svg {
    display: none;
  }

  .metric-note p {
    margin-left: 0;
  }

  .code-strip {
    margin-top: 28px;
  }

  .code-strip-label {
    min-width: 150px;
    padding: 0 18px;
    font-size: 7px;
  }

  .code-track {
    gap: 20px;
    padding-left: 20px;
  }

  .code-track code {
    font-size: 8px;
  }

  .section-heading {
    display: block;
    margin-bottom: 55px;
  }

  .section-heading > p {
    margin-top: 13px;
    font-size: 10px;
  }

  .about::after {
    display: none;
  }

  .about-layout {
    gap: 43px;
  }

  .about-statement h2,
  .expertise-intro h2,
  .recognition-title h2 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .about-lead {
    font-size: 1.2rem;
  }

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

  .about-values {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .value-item,
  .value-item:not(:first-child) {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .value-item > span {
    margin-bottom: 24px;
  }

  .expertise-intro {
    margin-bottom: 52px;
  }

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

  .expertise-card {
    min-height: 350px;
  }

  .card-top {
    margin-bottom: 45px;
  }

  .experience-aside .section-heading {
    display: block;
  }

  .timeline-item {
    padding-left: 28px;
  }

  .timeline-marker {
    left: -5px;
  }

  .timeline-item h3 {
    font-size: 2.15rem;
  }

  .timeline-item h3 span {
    display: block;
    margin-top: 4px;
  }

  .work-list li {
    grid-template-columns: 26px 1fr;
    gap: 9px;
  }

  .process {
    padding-bottom: 90px;
  }

  .process-top .section-heading {
    margin-bottom: 60px;
  }

  .process-top h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

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

  .process-card {
    min-height: 290px;
  }

  .process-number {
    margin-bottom: 35px;
  }

  .recognition-title {
    margin-bottom: 52px;
  }

  .recognition-grid {
    gap: 9px;
  }

  .award-card {
    min-height: 310px;
  }

  .siemens-quote {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 70px;
    padding: 38px 28px 43px;
  }

  .quote-mark {
    font-size: 5.5rem;
  }

  .credentials {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .education-list article {
    grid-template-columns: 85px 1fr;
  }

  .growth-card {
    margin-top: 80px;
  }

  .growth-copy {
    padding: 38px 28px;
  }

  .growth-copy h2 {
    font-size: 2.75rem;
  }

  .growth-orbit {
    min-height: 370px;
  }

  .ring-three {
    width: 340px;
    height: 340px;
  }

  .contact {
    min-height: 720px;
    padding: 90px 0 75px;
  }

  .contact::after {
    top: 10%;
    right: -500px;
  }

  .contact h2 {
    font-size: clamp(3rem, 15.5vw, 4.8rem);
  }

  .contact-copy {
    font-size: 12px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 22px;
  }

  .button-dark {
    width: 100%;
  }

  .contact-phone {
    padding: 0;
    border: 0;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    min-height: 115px;
  }

  .footer-top > p {
    display: none;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 13px 20px;
    padding: 20px 0;
  }

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

@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;
  }

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