:root {
  --paper: #f1f3f2;
  --paper-blue: #e4e9ed;
  --ink: #152b3d;
  --ink-deep: #071522;
  --blue: #5f82ff;
  --sky: #8edff1;
  --coral: #e76c4b;
  --lime: #e8b65b;
  --line: rgba(21, 43, 61, 0.16);
  --muted: #607283;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 64px));
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: var(--shell);
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
  color: #eef3f7;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
}

.nav-links { display: flex; gap: 34px; }

.nav-links a,
.availability {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a::after,
.footer-links a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

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

.availability {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #67dda0;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(103, 221, 160, .13);
}

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: 3vw;
  width: 100%;
  margin: 0 auto;
  padding: 152px calc((100vw - var(--shell)) / 2) 82px;
  overflow: hidden;
  color: #eef3f7;
  background: var(--ink-deep);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -10%;
  right: -10vw;
  width: min(800px, 65vw);
  height: min(800px, 65vw);
  content: "";
  background: radial-gradient(circle, rgba(95, 130, 255, .25), rgba(142, 223, 241, .08) 38%, transparent 69%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.13) 1px, transparent 1px);
  background-position: center;
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, black 55%, black 100%);
}

.hero-copy { position: relative; z-index: 3; }

.eyebrow {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 21px;
  height: 1px;
  margin: 0 10px 3px 0;
  content: "";
  background: var(--coral);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #f7fafb;
  font-family: var(--display);
  font-size: clamp(55px, 6.15vw, 92px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

.hero h1 .scribble {
  position: relative;
  display: inline-block;
  color: var(--lime);
  font-style: italic;
}

.hero h1 .scribble::after {
  position: absolute;
  right: 2%;
  bottom: -10px;
  left: 3%;
  height: 9px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13 C100 1 210 17 497 5' fill='none' stroke='%235f82ff' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-intro {
  max-width: 570px;
  margin: 35px 0 0;
  color: #9eb0bf;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 37px; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 54px;
  padding: 0 21px 0 25px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.button > * { position: relative; z-index: 1; }
.button::before { position: absolute; inset: 0; content: ""; transform: translateY(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.button:hover::before { transform: translateY(0); }
.button svg, .contact-email svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.button-primary { color: var(--ink-deep); background: var(--lime); }
.button-primary::before { background: var(--sky); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light::before { background: var(--lime); }

.text-link { color: #eef3f7; font-size: 13px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .25s ease; }
.text-link:hover span { transform: translateY(4px); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.hero-proof div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  min-height: 76px;
  padding: 17px 16px 0 0;
}

.hero-proof div:not(:first-child) { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-proof span { color: var(--lime); font-family: var(--mono); font-size: 8px; font-weight: 800; }
.hero-proof strong { color: #c9d4dc; font-size: 11px; line-height: 1.35; letter-spacing: .02em; text-transform: uppercase; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 1 / 1.02;
  justify-self: end;
  cursor: crosshair;
  perspective: 1100px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --float-x: 0px;
  --float-y: 0px;
  --counter-x: 0px;
  --counter-y: 0px;
  --stamp-x: 0px;
  --stamp-y: 0px;
}

#scene { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.portrait-stage {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 50%;
  width: 55%;
  aspect-ratio: .79;
  transform: translate(-50%, -50%) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .16s ease-out;
}

.portrait-shadow {
  position: absolute;
  inset: 3% -3% -4% 7%;
  background: linear-gradient(145deg, var(--blue), #233c6e 75%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  box-shadow: 0 50px 90px rgba(0,0,0,.5);
  transform: translate3d(22px, 22px, -55px) rotate(5deg);
}

.portrait-card {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #e9ecee;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(7,21,34,.08), 0 28px 60px rgba(0,0,0,.34);
  transform: translateZ(32px) rotate(-2.5deg);
}

.portrait-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 38%, rgba(7,21,34,.12));
  pointer-events: none;
}

.portrait-card img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.04); }

.portrait-card figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: #f6f9fa;
  background: rgba(7,21,34,.82);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px;
  backdrop-filter: blur(10px);
}

.portrait-card figcaption span { font-family: var(--display); font-size: 17px; line-height: 1.1; }
.portrait-card figcaption strong { color: var(--sky); font-family: var(--mono); font-size: 7px; letter-spacing: .11em; text-transform: uppercase; }

.depth-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 3px;
  width: 176px;
  padding: 15px 16px;
  color: var(--ink-deep);
  background: rgba(241,243,242,.94);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  transition: transform .16s ease-out;
}

.depth-card span { color: var(--blue); font-family: var(--mono); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.depth-card strong { font-family: var(--body); font-size: 12px; line-height: 1.25; }
.depth-card small { color: var(--muted); font-family: var(--mono); font-size: 7px; }
.depth-card-build { right: 1%; bottom: 22%; transform: translate(var(--float-x), var(--float-y)) rotate(3deg); }
.depth-card-think { top: 21%; left: -1%; transform: translate(var(--counter-x), var(--counter-y)) rotate(-5deg); }

.depth-stamp {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: 14%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transform: translate(var(--stamp-x), var(--stamp-y)) rotate(10deg);
}

.depth-stamp span { font-family: var(--display); font-size: 30px; line-height: .8; }
.depth-stamp small { font-family: var(--mono); font-size: 6px; font-weight: 900; letter-spacing: .1em; }

.visual-instruction {
  position: absolute;
  bottom: 4%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #728697;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.visual-instruction span { width: 7px; height: 7px; border: 1px solid var(--sky); border-radius: 50%; animation: pulse 1.8s ease-out infinite; }

.signal-band {
  overflow: hidden;
  max-width: 100vw;
  color: var(--ink-deep);
  background: var(--lime);
  border-block: 1px solid rgba(7,21,34,.12);
  contain: paint;
}

.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 62px;
  animation: marquee 28s linear infinite;
}

.signal-track span { padding: 0 34px; font-family: var(--display); font-size: 20px; font-style: italic; white-space: nowrap; }
.signal-track i { color: var(--blue); font-size: 12px; font-style: normal; }

.section-shell { width: var(--shell); margin-inline: auto; }
.work { padding-block: 132px; }

.section-heading { display: grid; grid-template-columns: .72fr 1.6fr .68fr; gap: 4vw; align-items: start; margin-bottom: 70px; }
.section-heading h2 { max-width: 700px; margin: -8px 0 0; color: var(--ink-deep); font-family: var(--display); font-size: clamp(38px, 4.25vw, 61px); font-weight: 400; letter-spacing: -.045em; line-height: 1.03; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 14px; }

.project-stack { display: grid; gap: 26px; }
.project {
  position: relative;
  min-height: 490px;
  display: grid;
  grid-template-columns: 55px minmax(250px, .72fr) minmax(420px, 1.28fr);
  gap: 28px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(20,45,76,.1);
  border-radius: var(--radius);
  transform-style: preserve-3d;
}

.project-index { font-family: var(--mono); font-size: 10px; }
.project-copy { z-index: 2; display: flex; flex-direction: column; align-items: flex-start; padding: 7px 0; }
.project-type { margin: 0 0 3px; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project h3 { margin: 0; font-family: var(--display); font-size: clamp(46px, 5vw, 72px); font-weight: 400; letter-spacing: -.055em; }
.project-copy > p { max-width: 380px; margin: auto 0 22px; font-size: 15px; line-height: 1.7; }
.project-tech { display: flex; flex-wrap: wrap; gap: 7px; }
.project-tech span { padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.project-actions { display: flex; flex-wrap: wrap; gap: 13px 24px; margin-top: 32px; }
.project-link,
.project-source { padding: 0 0 4px; color: inherit; background: transparent; border: 0; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; cursor: pointer; }
.project-source { border-bottom-style: dotted; }
.project-link span,
.project-source span { display: inline-block; margin-left: 7px; transition: transform .25s ease; }
.project-link:hover span,
.project-source:hover span { transform: translate(3px, -3px); }
.project-art { position: relative; min-height: 410px; perspective: 900px; }

.project-atlas { background: #dbe7ef; }
.project-atlas .project-art { display: grid; place-items: center; }
.dashboard-window { width: min(570px, 94%); aspect-ratio: 1.36; overflow: hidden; background: #f7f9fb; border: 1px solid rgba(20,45,76,.15); border-radius: 14px; box-shadow: 0 35px 70px rgba(20,45,76,.2); transform: rotateY(-8deg) rotateX(4deg) rotateZ(1deg); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project:hover .dashboard-window { transform: rotateY(-2deg) rotateX(1deg) translateY(-7px); }
.window-bar { height: 37px; display: flex; align-items: center; gap: 5px; padding: 0 12px; color: #8090a2; border-bottom: 1px solid #dce3e8; font-family: var(--mono); font-size: 7px; }
.window-bar i { width: 6px; height: 6px; background: #bcc8d1; border-radius: 50%; }
.window-bar span { margin-left: 8px; }
.dashboard-body { display: grid; grid-template-columns: 45px 1fr; height: calc(100% - 37px); }
.dash-sidebar { display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 15px; color: white; background: var(--ink); }
.dash-sidebar b { color: var(--coral); }
.dash-sidebar i { width: 13px; height: 2px; background: rgba(255,255,255,.35); }
.dash-main { padding: 7% 7%; }
.dash-greeting { font-family: var(--display); font-size: clamp(14px, 2.2vw, 28px); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4%; margin-top: 9%; }
.dash-stats i { position: relative; height: 56px; background: #e7edf1; border-radius: 5px; }
.dash-stats i::before { position: absolute; inset: 11px 44% 28px 10px; content: ""; background: var(--blue); border-radius: 2px; }
.dash-chart { position: relative; height: 33%; margin-top: 6%; overflow: hidden; background: linear-gradient(#f0f3f5 1px, transparent 1px) 0 0/100% 25%; border-radius: 5px; }
.dash-chart span { position: absolute; right: -5%; bottom: -10%; width: 110%; height: 80%; background: linear-gradient(145deg, transparent 44%, var(--coral) 45% 47%, transparent 48%); }

.project-northstar { color: white; background: #e75b3e; }
.project-northstar .project-art { display: flex; align-items: center; justify-content: center; gap: 0; }
.phone { position: relative; width: 205px; height: 385px; overflow: hidden; border: 7px solid #152941; border-radius: 32px; box-shadow: 0 38px 50px rgba(70,20,10,.25); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.phone-back { margin-right: -45px; background: #96d7e8; transform: rotate(-10deg) translateY(-5px); }
.phone-back::before { position: absolute; inset: 18px auto auto 18px; width: 33px; height: 33px; content: ""; background: #152941; border-radius: 10px; }
.phone-back span { position: absolute; bottom: 24px; left: 18px; color: #152941; font-family: var(--mono); font-size: 24px; font-weight: 900; line-height: .88; }
.phone-glow { position: absolute; top: 26%; left: 10%; width: 140px; height: 140px; background: var(--lime); border-radius: 50%; filter: blur(3px); }
.phone-front { padding: 21px 17px; color: var(--ink); background: #f4eddf; transform: rotate(7deg) translateY(7px); }
.project:hover .phone-back { transform: rotate(-13deg) translate(-9px,-12px); }
.project:hover .phone-front { transform: rotate(4deg) translate(8px,-5px); }
.phone-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 8px; font-weight: 800; }
.phone-top i { width: 10px; height: 2px; background: currentColor; box-shadow: 0 4px currentColor; }
.product-orbit { position: relative; height: 205px; display: grid; place-items: center; }
.product-orbit::before, .product-orbit::after { position: absolute; content: ""; border: 1px solid rgba(20,45,76,.3); border-radius: 50%; transform: rotateX(68deg) rotateZ(-25deg); }
.product-orbit::before { width: 170px; height: 170px; }
.product-orbit::after { width: 120px; height: 120px; }
.product-sphere { position: relative; z-index: 1; width: 82px; height: 100px; background: linear-gradient(135deg, #102a44, #54789d); border-radius: 46% 46% 42% 42%; box-shadow: inset 14px 0 rgba(255,255,255,.12), 16px 20px 25px rgba(20,45,76,.25); transform: rotate(14deg); }
.phone-front strong { display: block; font-family: var(--display); font-size: 27px; font-weight: 400; line-height: .95; }
.phone-front small { display: block; margin-top: 18px; font-family: var(--mono); font-size: 7px; font-weight: 800; }

.project-signal { color: white; background: #152d4a; }
.project-signal .project-type { color: var(--lime); }
.art-signal { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: #0e223b; transform: rotateY(-4deg) rotateX(2deg); }
.signal-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 39px 39px; }
.art-signal svg { position: absolute; right: -5%; bottom: 2%; width: 110%; height: 65%; overflow: visible; }
.art-signal path { fill: none; stroke: var(--coral); stroke-width: 4; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 12px rgba(255,104,70,.65)); stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 1.5s ease; }
.project-signal.in-view .art-signal path { stroke-dashoffset: 0; }
.signal-panel { position: absolute; z-index: 2; padding: 16px; background: rgba(20,45,76,.72); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; backdrop-filter: blur(10px); }
.signal-panel span { display: block; margin-bottom: 7px; color: var(--sky); font-family: var(--mono); font-size: 7px; letter-spacing: .13em; }
.signal-panel strong { display: block; font-family: var(--mono); font-size: 11px; }
.panel-a { top: 8%; left: 7%; width: 190px; }
.panel-a div { width: 70%; height: 3px; margin-top: 12px; background: linear-gradient(90deg,var(--lime) 80%,rgba(255,255,255,.15) 80%); }
.panel-b { top: 20%; right: 7%; }
.panel-b strong { color: var(--lime); font-size: 30px; }
.panel-b small { color: rgba(255,255,255,.55); font-family: var(--mono); font-size: 7px; }

.services { padding: 0 0 140px; }
.section-heading.compact { grid-template-columns: .72fr 1.6fr .68fr; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px 1fr 1.2fr 60px; gap: 30px; align-items: center; min-height: 152px; border-bottom: 1px solid var(--line); }
.service-number { font-family: var(--mono); font-size: 10px; }
.service-row h3 { margin: 0; font-family: var(--display); font-size: clamp(28px, 3vw, 40px); font-weight: 400; letter-spacing: -.035em; }
.service-row p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; }
.service-icon { display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--mono); font-size: 17px; transition: color .3s, background .3s, transform .3s; }
.service-row:hover .service-icon { color: white; background: var(--coral); transform: rotate(9deg); }

.skill-cloud {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.skill-cloud-label {
  padding-top: 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

#skill-cloud-items { display: flex; flex-wrap: wrap; gap: 9px; }
#skill-cloud-items span {
  padding: 9px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.approach { position: relative; overflow: hidden; color: white; background: var(--ink-deep); }
.approach::before { position: absolute; inset: 0; content: ""; opacity: .12; background-image: radial-gradient(rgba(255,255,255,.55) .7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(90deg,transparent,black); }
.approach-inner { position: relative; min-height: 690px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8vw; }
.eyebrow.light { color: var(--sky); }
.approach-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(47px, 5.3vw, 74px); font-weight: 400; letter-spacing: -.05em; line-height: .98; }
.approach-copy > p:not(.eyebrow) { max-width: 520px; margin: 30px 0 34px; color: #a9bacb; font-size: 16px; line-height: 1.75; }
.approach-orbit { position: relative; aspect-ratio: 1; max-width: 490px; width: 100%; justify-self: center; transform-style: preserve-3d; }
.orbit-ring { position: absolute; inset: 10%; border: 1px solid rgba(150,215,232,.45); border-radius: 50%; transform-style: preserve-3d; }
.orbit-ring::before { position: absolute; top: 50%; left: -5px; width: 10px; height: 10px; content: ""; background: var(--coral); border-radius: 50%; box-shadow: 0 0 20px var(--coral); }
.orbit-ring i { position: absolute; top: 48%; right: -26px; padding: 5px 9px; color: var(--ink); background: var(--sky); border-radius: 4px; font-family: var(--mono); font-size: 8px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ring-one { animation: orbit-spin 16s linear infinite; }
.ring-two { inset: 22%; transform: rotateX(70deg); animation: orbit-spin-two 11s linear infinite reverse; }
.ring-two::before { background: var(--lime); box-shadow: 0 0 20px var(--lime); }
.ring-two i { background: var(--lime); }
.ring-three { inset: 34%; transform: rotateY(70deg); animation: orbit-spin-three 9s linear infinite; }
.ring-three::before { background: white; box-shadow: 0 0 20px white; }
.ring-three i { color: white; background: var(--blue); }
.orbit-core { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 98px; height: 98px; background: var(--coral); border-radius: 24px; box-shadow: 0 30px 65px rgba(0,0,0,.35); transform: translate(-50%,-50%) rotate(-7deg); }
.orbit-core span { font-family: var(--mono); font-size: 24px; font-weight: 900; }

.contact { padding: 130px 0 70px; }
.contact-card { position: relative; padding: 90px 7vw 80px; overflow: hidden; text-align: center; background: var(--sky); border-radius: var(--radius); }
.contact-card::after { position: absolute; top: -45%; right: -8%; width: 330px; height: 330px; content: ""; border: 55px solid rgba(255,255,255,.22); border-radius: 50%; }
.contact-mark { position: absolute; top: 28px; left: 34px; color: var(--coral); font-size: 30px; }
.contact-card .eyebrow::before { display: none; }
.contact-card h2 { max-width: 780px; margin: 0 auto; color: var(--ink-deep); font-family: var(--display); font-size: clamp(48px, 6vw, 82px); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.contact-note { max-width: 545px; margin: 25px auto 38px; font-size: 15px; }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px 32px; }
.contact-email { display: inline-flex; align-items: center; gap: 20px; padding: 12px 4px; border-bottom: 2px solid currentColor; font-family: var(--mono); font-size: clamp(14px, 1.8vw, 21px); font-weight: 700; }
.contact-email b { font-weight: inherit; }
.contact-email svg { transition: transform .25s ease; }
.contact-email:hover svg { transform: translateX(5px); }
.edit-note { margin: 17px 0 0; color: rgba(20,45,76,.55); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 115px; border-top: 1px solid var(--line); }
.site-footer p { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.footer-links { justify-self: end; display: flex; gap: 22px; font-size: 11px; font-weight: 700; }
.footer-links a { position: relative; }

.project-dialog { width: min(720px, calc(100vw - 32px)); padding: 56px; color: var(--ink); background: var(--paper); border: 0; border-radius: 24px; box-shadow: 0 30px 100px rgba(10,30,54,.35); }
.project-dialog::backdrop { background: rgba(10,30,54,.65); backdrop-filter: blur(8px); }
.project-dialog h2 { margin: 0 0 16px; font-family: var(--display); font-size: 58px; font-weight: 400; letter-spacing: -.05em; }
.project-dialog > p:not(.eyebrow) { color: var(--muted); }
.dialog-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 24px; cursor: pointer; }
.dialog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 32px 0; }
.dialog-grid div { padding: 15px; background: var(--paper-blue); border-radius: 10px; }
.dialog-grid span { display: block; color: var(--blue); font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.dialog-grid strong { display: block; margin-top: 7px; font-size: 12px; }
.dialog-done { width: 100%; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero-copy .reveal:nth-child(2) { transition-delay: .08s; }
.hero-copy .reveal:nth-child(3) { transition-delay: .16s; }
.hero-copy .reveal:nth-child(4) { transition-delay: .24s; }
.hero-copy .reveal:nth-child(5) { transition-delay: .32s; }
.hero-visual.reveal { transition-delay: .18s; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(96,115,138,.5); } 100% { box-shadow: 0 0 0 9px transparent; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-two { from { transform: rotateX(70deg) rotateZ(0); } to { transform: rotateX(70deg) rotateZ(360deg); } }
@keyframes orbit-spin-three { from { transform: rotateY(70deg) rotateZ(0); } to { transform: rotateY(70deg) rotateZ(360deg); } }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 40px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links, .availability { display: none; }
  .menu-button { justify-self: end; display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: 50%; }
  .menu-button span { display: block; width: 16px; height: 1px; background: currentColor; transition: transform .25s; }
  .site-header.mobile-active .nav-links { position: fixed; top: 92px; left: calc((100vw - var(--shell)) / -2); width: 100vw; height: calc(100vh - 92px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; color: #eef3f7; background: var(--ink-deep); }
  .site-header.mobile-active .nav-links a { font-family: var(--display); font-size: 42px; }
  .site-header.mobile-active .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .site-header.mobile-active .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-intro { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { max-width: 650px; justify-self: center; margin-top: 10px; }
  .hero-proof { margin-inline: auto; text-align: left; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p:last-child { max-width: 540px; }
  .project { grid-template-columns: 40px 1fr; }
  .project-art { grid-column: 1 / -1; }
  .project-copy > p { margin-top: 35px; }
  .service-row { grid-template-columns: 45px 1fr 50px; padding-block: 30px; }
  .service-row p { grid-column: 2 / 3; }
  .service-icon { grid-column: 3; grid-row: 1 / 3; }
  .skill-cloud { grid-template-columns: 1fr; gap: 14px; }
  .approach-inner { min-height: 1000px; grid-template-columns: 1fr; padding-block: 100px; text-align: center; }
  .approach-copy > p:not(.eyebrow) { margin-inline: auto; }
  .approach-orbit { max-width: 460px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); --radius: 20px; }
  .site-header { height: 74px; }
  .brand { font-size: 9px; }
  .brand-mark { width: 28px; height: 28px; }
  .site-header.mobile-active .nav-links { top: 74px; height: calc(100vh - 74px); }
  .hero { min-height: auto; padding: 118px 14px 62px; }
  .hero h1 { font-size: clamp(49px, 15vw, 70px); line-height: .94; }
  .hero-intro { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-proof { display: none; }
  .hero-visual { width: calc(100% + 18px); margin: 12px -9px 0; }
  .portrait-stage { width: 58%; }
  .portrait-card figcaption { right: 9px; bottom: 9px; left: 9px; padding: 9px 10px; }
  .portrait-card figcaption span { font-size: 13px; }
  .depth-card { width: 139px; padding: 10px 11px; }
  .depth-card strong { font-size: 9px; }
  .depth-card-think { top: 18%; left: 0; }
  .depth-card-build { right: 0; bottom: 20%; }
  .depth-stamp { top: 6%; right: 10%; width: 61px; height: 61px; }
  .depth-stamp span { font-size: 23px; }
  .work { padding-block: 90px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2 { font-size: 41px; }
  .project { min-height: 0; grid-template-columns: 28px 1fr; gap: 12px; padding: 22px 18px 18px; }
  .project-copy > p { margin-top: 28px; }
  .project-art { min-height: 310px; }
  .dashboard-window { width: 100%; }
  .phone { width: 150px; height: 292px; border-width: 5px; border-radius: 24px; }
  .phone-front { padding: 16px 12px; }
  .phone-back { margin-right: -35px; }
  .product-orbit { height: 155px; }
  .product-orbit::before { width: 125px; height: 125px; }
  .product-orbit::after { width: 90px; height: 90px; }
  .product-sphere { width: 62px; height: 76px; }
  .phone-front strong { font-size: 21px; }
  .panel-a { left: 4%; width: 160px; }
  .panel-b { top: 31%; right: 4%; }
  .services { padding-bottom: 90px; }
  .service-row { grid-template-columns: 30px 1fr; gap: 14px; }
  .service-row p { grid-column: 2; }
  .service-icon { display: none; }
  #skill-cloud-items span { font-size: 9px; }
  .approach-inner { min-height: auto; padding-block: 90px; }
  .approach-copy h2 { font-size: 48px; }
  .approach-orbit { margin-top: 20px; }
  .orbit-ring i { right: -12px; }
  .contact { padding: 80px 0 45px; }
  .contact-card { padding: 75px 22px 60px; }
  .contact-card h2 { font-size: 46px; }
  .contact-email { gap: 10px; font-size: 13px; }
  .contact-links { display: grid; justify-items: center; }
  .site-footer { grid-template-columns: 1fr auto; min-height: 100px; }
  .site-footer p { display: none; }
  .footer-links a:not(:first-child) { display: none; }
  .project-dialog { padding: 50px 24px 30px; }
  .project-dialog h2 { font-size: 46px; }
  .dialog-grid { grid-template-columns: 1fr; }
}

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