:root {
  --ink: #17151b;
  --paper: #f0eee9;
  --muted: #747078;
  --line: rgba(23, 21, 27, 0.16);
  --accent: #c9b56b;
  --violet: #362452;
  --font-display: "DM Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  transition:
    background 0.35s,
    color 0.35s;
}
body.dark {
  --ink: #f4f1eb;
  --paper: #17151b;
  --muted: #a49fa7;
  --line: rgba(244, 241, 235, 0.18);
  --violet: #7d5ba6;
}
.loading-screen {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.loading-screen::before,
.loading-screen::after {
  content: "";
  position: absolute;
  background: var(--accent);
}
.loading-screen::before {
  width: 9px;
  inset: 0 auto 0 0;
}
.loading-screen::after {
  width: 70px;
  height: 70px;
  right: 9vw;
  bottom: 11vh;
  animation: loader-block 1.1s steps(2, end) infinite;
}
.loading-screen__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(var(--paper) 1px, transparent 1px), linear-gradient(90deg, var(--paper) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.loading-screen__content {
  width: min(430px, calc(100vw - 48px));
  position: relative;
  z-index: 1;
}
.loading-screen__eyebrow,
.loading-screen__label {
  margin: 0;
  font: 500 10px/1.4 var(--font-mono);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.loading-screen__eyebrow {
  opacity: 0.68;
}
.loading-screen__mark {
  display: flex;
  align-items: center;
  margin: 22px 0 26px;
  font: 700 clamp(100px, 22vw, 180px)/0.72 var(--font-serif);
  letter-spacing: 0;
}
.loading-screen__mark span:first-child {
  color: var(--accent);
  animation: loader-letter 0.7s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}
.loading-screen__mark span:last-child {
  color: var(--paper);
  animation: loader-letter 0.7s 0.12s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}
.loading-screen__label {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid color-mix(in srgb, var(--paper) 45%, transparent);
  padding-top: 12px;
}
.loading-screen__label span {
  letter-spacing: 2px;
  animation: loader-dots 0.9s steps(3, end) infinite;
}
.loading-screen__progress {
  height: 4px;
  margin-top: 11px;
  overflow: hidden;
  background: color-mix(in srgb, var(--paper) 25%, transparent);
}
.loading-screen__progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.95s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.loading-screen.is-ready .loading-screen__progress::after {
  transform: scaleX(1);
}
.loading-screen.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
@keyframes loader-letter {
  from { opacity: 0; transform: translateY(55%) rotate(8deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes loader-dots {
  0%, 25% { opacity: 0.2; }
  100% { opacity: 1; }
}
@keyframes loader-block {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-70px, -70px); }
}
@media (prefers-reduced-motion: reduce) {
  .loading-screen,
  .loading-screen__progress::after {
    transition-duration: 0.01ms;
  }
  .loading-screen::after,
  .loading-screen__mark span,
  .loading-screen__label span {
    animation: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select {
  font: inherit;
}
.grain {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 clamp(20px, 4vw, 66px);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.site-header::before {
  background: var(--accent);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 9px;
}
.brand {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--violet);
  box-shadow: 4px 4px 0 rgba(54, 36, 82, 0.18);
  color: var(--violet);
  font: 700 19px/0.85 var(--font-serif);
  letter-spacing: 0.4px;
  padding: 11px 13px 11px 15px;
  position: relative;
  z-index: 1;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.brand::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: var(--violet);
  border-radius: 50%;
}
.brand span {
  background: var(--violet);
  color: var(--paper);
  display: inline-block;
  margin: -11px -13px -11px 6px;
  padding: 11px 9px;
}
.brand:hover {
  background: var(--violet);
  color: var(--paper);
  transform: translate(-2px, -2px);
}
.brand:hover::before {
  background: var(--paper);
}
.brand:hover span {
  background: var(--paper);
  color: var(--violet);
}
nav {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  font: 500 10px/1 var(--font-mono);
  gap: 0;
  text-transform: uppercase;
}
nav a {
  padding: 14px 25px;
  position: relative;
}
nav a + a {
  border-left: 1px solid var(--line);
}
nav a::after {
  content: "";
  height: 3px;
  width: 100%;
  background: var(--accent);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
nav a:hover::after {
  transform: scaleX(1);
}
.header-tools {
  border: 1px solid #17151b;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 0;
}
.icon-button {
  appearance: none;
  border: 0;
  border-right: 1px solid #17151b;
  background: #ffffff;
  color: #17151b;
  cursor: pointer;
  font-size: 22px;
  min-height: 38px;
  padding: 4px 7px;
}
.language-select {
  min-width: 64px;
  min-height: 38px;
  border: 0;
  background: #ffffff;
  color: #17151b;
  padding: 7px 8px;
  font: 700 12px/1 var(--font-mono);
  cursor: pointer;
}
.language-select option {
  background: #ffffff;
  color: #17151b;
}
@media (max-width: 680px) {
  .site-header {
    height: 72px;
  }
  .site-header::before {
    width: 5px;
  }
  .site-header nav {
    display: none;
  }
}
.hero {
  min-height: calc(100vh - 82px);
  padding: clamp(34px, 7vw, 100px) clamp(20px, 10vw, 12vw) 38px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.eyebrow {
  text-transform: uppercase;
  font: 500 10px/1.4 var(--font-mono);
  letter-spacing: 0.4px;
  margin: 0;
}
.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 7px;
  animation: pulse 1.7s infinite;
}
.hero h1 {
  font-size: clamp(88px, 15vw, 300px);
  line-height: 0.85;
  letter-spacing: -6px;
  margin: clamp(58px, 10vw, 145px) 0 auto;
  max-width: 1100px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.hero-name {
  display: block;
  margin-bottom: 0.16em;
  color: var(--violet);
  font-family: var(--font-serif);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(54, 36, 82, 0.14);
}
.hero-tagline {
  display: block;
  font-size: 0.3em;
  letter-spacing: -1px;
  line-height: 1.05;
  text-transform: none;
}
.hero h1 em,
h2 em {
  font-family: var(--font-serif);
  font-weight: 500;
}
.hero-foot {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.hero-foot p {
  max-width: 280px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 500 10px var(--font-mono);
  text-transform: uppercase;
}
.scroll-cue b {
  color: var(--violet);
  font-size: 22px;
  animation: bob 1.5s infinite;
}
.hero-orbit {
  width: min(32vw, 440px);
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  right: -8vw;
  top: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font: 500 10px var(--font-mono);
  transform: rotate(-25deg);
  color: var(--muted);
}
.hero-orbit i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.career-wheel {
  width: clamp(330px, 35vw, 510px);
  aspect-ratio: 1;
  position: absolute;
  top: 10%;
  right: clamp(-250px, -13vw, -120px);
  z-index: 1;
  pointer-events: auto;
}
.career-wheel::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.career-wheel__ring {
  position: absolute;
  inset: 0;
  transition: transform 0.85s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.career-wheel:hover .career-wheel__ring {
  transform: rotate(90deg);
}
.career-card {
  width: 42%;
  aspect-ratio: 4/3;
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 27, 0.22);
  background: var(--violet);
  color: #f7f4eb;
  box-shadow: 0 14px 30px rgba(23, 21, 27, 0.18);
  transition:
    transform 0.85s cubic-bezier(0.22, 0.8, 0.24, 1),
    filter 0.3s;
}
.dark .career-card {
  border-color: rgba(244, 241, 235, 0.22);
}
.career-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition:
    transform 0.6s ease,
    filter 0.3s;
}
.career-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 11px;
  background: linear-gradient(transparent, rgba(18, 15, 25, 0.92));
}
.career-card span {
  display: block;
  margin-bottom: 3px;
  font: 500 8px var(--font-mono);
  text-transform: uppercase;
}
.career-card strong {
  display: block;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.05;
}
.career-card--security {
  top: 3%;
  left: 29%;
  transform: rotate(-8deg);
}
.career-card--design {
  top: 30%;
  right: 2%;
  transform: rotate(7deg);
}
.career-card--web {
  bottom: 3%;
  left: 29%;
  transform: rotate(-6deg);
}
.career-card--games {
  top: 30%;
  left: 2%;
  transform: rotate(8deg);
}
.career-wheel:hover .career-card {
  filter: brightness(1.05);
}
.career-wheel:hover .career-card img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04);
}
.career-wheel__note {
  position: absolute;
  right: 28%;
  bottom: -2%;
  margin: 0;
  color: var(--muted);
  font: 500 9px var(--font-mono);
  text-transform: uppercase;
  transform: rotate(-12deg);
}
.career-wheel__note span {
  color: var(--accent);
  font-size: 16px;
  vertical-align: -2px;
}
.career-wheel {
  width: clamp(330px, 35vw, 510px);
  aspect-ratio: 1;
  position: absolute;
  top: 10%;
  right: clamp(-250px, -13vw, -120px);
  z-index: 1;
  pointer-events: auto;
}
.career-wheel::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.career-wheel__ring {
  position: absolute;
  inset: 0;
  transition: transform 0.85s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.career-wheel:hover .career-wheel__ring {
  transform: rotate(90deg);
}
.career-card {
  width: 42%;
  aspect-ratio: 4/3;
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 27, 0.22);
  background: var(--violet);
  color: #f7f4eb;
  box-shadow: 0 14px 30px rgba(23, 21, 27, 0.18);
  transition:
    transform 0.85s cubic-bezier(0.22, 0.8, 0.24, 1),
    filter 0.3s;
}
.dark .career-card {
  border-color: rgba(244, 241, 235, 0.22);
}
.career-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition:
    transform 0.6s ease,
    filter 0.3s;
}
.career-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 11px;
  background: linear-gradient(transparent, rgba(18, 15, 25, 0.92));
}
.career-card span {
  display: block;
  margin-bottom: 3px;
  font: 500 8px var(--font-mono);
  text-transform: uppercase;
}
.career-card strong {
  display: block;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.05;
}
.career-card--security {
  top: 3%;
  left: 29%;
  transform: rotate(-8deg);
}
.career-card--design {
  top: 30%;
  right: 2%;
  transform: rotate(7deg);
}
.career-card--web {
  bottom: 3%;
  left: 29%;
  transform: rotate(-6deg);
}
.career-card--games {
  top: 30%;
  left: 2%;
  transform: rotate(8deg);
}
.career-wheel:hover .career-card {
  filter: brightness(1.05);
}
.career-wheel:hover .career-card img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04);
}
.career-wheel__note {
  position: absolute;
  right: 28%;
  bottom: -2%;
  margin: 0;
  color: var(--muted);
  font: 500 9px var(--font-mono);
  text-transform: uppercase;
  transform: rotate(-12deg);
}
.career-wheel__note span {
  color: var(--accent);
  font-size: 16px;
  vertical-align: -2px;
}
.career-wheel:hover .career-wheel__ring {
  transform: none;
}
.career-card {
  width: 58%;
  border: 0;
  opacity: 0.28;
  transition:
    transform 0.85s cubic-bezier(0.22, 0.8, 0.24, 1),
    filter 0.3s,
    opacity 0.45s ease;
}
.career-card--security {
  top: 4%;
  left: 21%;
}
.career-card--design {
  top: 21%;
  right: -16%;
}
.career-card--web {
  bottom: 4%;
  left: 21%;
}
.career-card--games {
  top: 21%;
  left: -16%;
}
.career-card.is-active {
  z-index: 2;
  opacity: 1;
  box-shadow: 0 18px 36px rgba(23, 21, 27, 0.24);
}
.career-card:not(.is-active) img {
  filter: blur(2.5px) saturate(0.55) contrast(0.95);
}
.career-wheel:hover .career-card:not(.is-active) img {
  filter: blur(2.5px) saturate(0.55) contrast(0.95);
}
.career-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(240, 238, 233, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    transparent 55%,
    #000 100%
  );
  mask-image: radial-gradient(ellipse at center, transparent 55%, #000 100%);
}
.career-card div {
  z-index: 2;
}
.career-wheel {
  width: clamp(330px, 34vw, 465px);
  top: 14%;
  right: clamp(-96px, -5vw, -42px);
  background: color-mix(in srgb, var(--violet) 8%, var(--paper));
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 14px var(--paper),
    0 22px 42px rgba(23, 21, 27, 0.12);
}
.career-wheel::before {
  inset: 5%;
  border: 1px dashed color-mix(in srgb, var(--violet) 45%, transparent);
}
.career-wheel__ring {
  z-index: 1;
}
.career-card,
.career-card--security,
.career-card--design,
.career-card--web,
.career-card--games {
  width: 76%;
  top: 12%;
  right: auto;
  bottom: auto;
  left: 12%;
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transform: scale(0.72) rotate(-14deg);
  box-shadow: none;
  transition:
    opacity 0.52s ease,
    transform 0.52s cubic-bezier(0.22, 0.8, 0.24, 1),
    filter 0.4s ease,
    box-shadow 0.4s ease;
}
.career-card::after {
  display: none;
}
.career-card div {
  padding: 13px;
  background: linear-gradient(transparent 10%, rgba(23, 21, 27, 0.94));
}
.career-card.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: scale(1) rotate(-5deg);
  box-shadow:
    12px 12px 0 var(--violet),
    0 16px 30px rgba(23, 21, 27, 0.25);
}
.career-card.is-active img {
  filter: saturate(1.05) contrast(1.05);
}
.career-card.is-leaving {
  z-index: 1;
  opacity: 0;
  filter: blur(5px);
  transform: scale(0.9) rotate(4deg);
}
.career-wheel:hover .career-card:not(.is-active) img {
  transform: none;
  filter: inherit;
}
.career-wheel__note {
  z-index: 3;
  right: 13%;
  bottom: 7%;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--paper);
  transform: rotate(7deg);
  box-shadow: 3px 3px 0 var(--violet);
}
.career-wheel {
  width: clamp(300px, 30vw, 430px);
  height: clamp(500px, 54vw, 680px);
  aspect-ratio: auto;
  top: 7%;
  right: clamp(-120px, -7vw, -50px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.career-wheel::before {
  inset: 6% 22%;
  border: 2px dashed var(--line);
  border-radius: 50%;
}
.career-wheel__ring {
  position: absolute;
  inset: 0;
}
.career-card,
.career-card--security,
.career-card--design,
.career-card--web,
.career-card--games {
  width: 78%;
  height: auto;
  aspect-ratio: 4 / 3;
  top: 50%;
  left: 3%;
  opacity: 0;
  pointer-events: none;
  filter: blur(7px) saturate(0.65);
  transform: translateY(-50%) translateX(34px) scale(0.72) rotate(7deg);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 0.8, 0.24, 1),
    filter 0.5s ease;
}
.career-card.is-above,
.career-card.is-below {
  z-index: 1;
  opacity: 0.42;
}
.career-card.is-above {
  transform: translateY(-160%) translateX(48px) scale(0.76) rotate(9deg);
}
.career-card.is-below {
  transform: translateY(60%) translateX(48px) scale(0.76) rotate(-9deg);
}
.career-card.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: translateY(-50%) translateX(0) scale(1) rotate(-3deg);
  box-shadow:
    12px 12px 0 var(--violet),
    0 16px 30px rgba(23, 21, 27, 0.25);
}
.career-card.is-active img {
  filter: saturate(1.05) contrast(1.05);
}
.career-wheel__note {
  right: 20%;
  bottom: 10%;
}
.hero h1,
.hero-foot {
  z-index: 2;
}
.career-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.career-detail {
  min-height: calc(100vh - 76px);
  padding: clamp(55px, 8vw, 120px) clamp(20px, 10vw, 12vw) clamp(55px, 7vw, 100px);
}
.career-detail__back,
.career-detail__footer-link {
  display: inline-flex;
  align-items: center;
  font: 500 13px var(--font-mono);
  text-transform: uppercase;
}
.career-detail__back::before {
  content: "←";
  margin-right: 10px;
  color: var(--violet);
  font-size: 20px;
}
.career-detail__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: end;
  margin-top: clamp(65px, 10vw, 150px);
}
.career-detail__title {
  max-width: 850px;
  margin: 20px 0 0;
  font-size: clamp(58px, 9vw, 150px);
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 0.82;
}
.career-detail__title em {
  display: block;
  color: var(--violet);
  font-family: var(--font-serif);
  font-weight: 500;
}
.career-detail__summary {
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.32;
}
.career-placeholder {
  position: relative;
  min-height: clamp(300px, 36vw, 500px);
  margin-top: clamp(55px, 8vw, 115px);
  overflow: hidden;
  background: var(--violet);
  color: #f7f4eb;
}
.career-placeholder::before,
.career-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247, 244, 235, 0.42);
}
.career-placeholder::before {
  width: 44%;
  aspect-ratio: 1;
  right: 9%;
  bottom: -18%;
  border-radius: 50%;
}
.career-placeholder::after {
  width: 56%;
  height: 1px;
  left: 0;
  top: 45%;
  transform: rotate(-20deg);
  transform-origin: left;
}
.career-placeholder__label,
.career-placeholder__number {
  position: absolute;
  z-index: 1;
  font: 500 13px var(--font-mono);
  text-transform: uppercase;
}
.career-placeholder__label {
  left: clamp(24px, 4vw, 65px);
  top: clamp(24px, 4vw, 65px);
}
.career-placeholder__number {
  right: clamp(24px, 4vw, 65px);
  bottom: clamp(24px, 4vw, 65px);
  color: var(--accent);
  font-size: clamp(52px, 10vw, 150px);
  line-height: 0.75;
}
.career-detail__reason {
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(30px, 7vw, 110px);
  padding-top: clamp(55px, 8vw, 110px);
}
.career-detail__reason h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 60px);
  letter-spacing: -2px;
  line-height: 0.95;
}
.career-detail__reason p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.45;
}
.career-detail__reason p + p {
  margin-top: 1em;
}
.career-detail__footer-link {
  margin-top: clamp(55px, 8vw, 110px);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  font-size: 15px;
}
.project-github-link {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  margin-top: clamp(48px, 7vw, 88px);
  padding: 18px 21px;
  border: 1px solid var(--violet);
  background: transparent;
  color: var(--violet);
  font: 500 14px var(--font-mono);
  text-transform: uppercase;
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--violet) 22%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-github-link b {
  font-size: 24px;
  line-height: 0.7;
}
.project-github-link:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 color-mix(in srgb, var(--violet) 22%, transparent);
}
.project-github-link:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}
.project-continue {
  position: relative;
  margin-top: clamp(72px, 11vw, 150px);
  padding: clamp(32px, 5vw, 66px);
  overflow: hidden;
  background: var(--violet);
  color: #ffffff;
}
.project-continue::after {
  content: "++";
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: clamp(17px, 3vw, 42px);
  color: color-mix(in srgb, var(--paper) 26%, transparent);
  font: 700 clamp(68px, 13vw, 180px)/0.6 var(--font-serif);
}
.project-continue .eyebrow {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}
.project-continue h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 20px 0 32px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.9;
}
.project-continue h2 em {
  color: var(--paper);
  font-style: italic;
}
.project-continue a {
  position: relative;
  z-index: 1;
  border-bottom: 2px solid color-mix(in srgb, var(--paper) 65%, transparent);
  padding-bottom: 7px;
  font: 500 13px var(--font-mono);
  text-transform: uppercase;
}
.project-showcase {
  margin: clamp(55px, 8vw, 115px) 0 0;
  background: #bc8549;
  min-height: clamp(300px, 36vw, 500px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 64px);
}
.project-showcase img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
}
.project-showcase--cookies {
  background: var(--violet);
  padding: clamp(18px, 3vw, 44px);
}
.project-showcase--cookies img {
  box-shadow: 12px 12px 0 #4b305f;
  max-height: none;
  width: 100%;
}
.project-showcase--cookies {
  position: relative;
}
.project-showcase--jontai {
  background: var(--violet);
  padding: clamp(18px, 3vw, 44px);
}
.project-showcase--jontai img {
  box-shadow: 12px 12px 0 #251638;
  max-height: none;
  width: 100%;
}
.project-showcase--jontai {
  position: relative;
}
.project-showcase__caption {
  background: var(--violet);
  bottom: clamp(18px, 3vw, 44px);
  color: #fff;
  font: 500 clamp(10px, 1vw, 15px) var(--font-mono);
  left: clamp(18px, 3vw, 44px);
  margin: 0;
  padding: 9px 12px;
  position: absolute;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .career-detail {
    min-height: calc(100vh - 72px);
    padding: 45px 20px 70px;
  }
  .career-detail__intro,
  .career-detail__reason {
    grid-template-columns: 1fr;
  }
  .career-detail__intro {
    gap: 28px;
    margin-top: 68px;
  }
  .career-detail__title {
    font-size: clamp(56px, 16vw, 78px);
    letter-spacing: -3px;
  }
  .career-placeholder {
    min-height: 310px;
    margin-top: 65px;
  }
  .project-showcase,
  .project-showcase {
    min-height: 310px;
  }
  .project-showcase img {
    max-height: 240px;
  }
  .project-github-link {
    gap: 30px;
    width: 100%;
    justify-content: space-between;
  }
  .project-continue {
    margin-top: 82px;
  }
  .career-detail__reason {
    gap: 24px;
    padding-top: 65px;
  }
}
.work-section,
.about-section,
.life-section,
.contact-section {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 8vw, 132px);
}
.work-section {
  background: var(--ink);
  color: var(--paper);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.section-heading h2,
.about-copy h2,
.life-section h2,
.contact-section h2 {
  font-size: clamp(42px, 6.4vw, 92px);
  letter-spacing: -4px;
  line-height: 0.88;
  margin: 0;
}
.project-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.project-card {
  min-height: 420px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: color 0.3s;
}
.project-card + .project-card {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.project-number,
.project-meta p {
  font: 500 10px var(--font-mono);
}
.project-visual {
  flex: 1;
  display: grid;
  place-items: center;
}
.project-meta h3 {
  margin: 0 0 7px;
  font-size: 17px;
}
.project-meta p {
  margin: 0;
  opacity: 0.65;
}
.arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 22px;
  transition: transform 0.25s;
}
.project-card:hover .arrow {
  transform: translate(4px, -4px);
}
.card-solar:hover {
  color: #1b1720;
  background: var(--accent);
}
.sun {
  width: 120px;
  aspect-ratio: 1;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 19px transparent;
  transition: 0.4s;
}
.card-solar:hover .sun {
  box-shadow: 0 0 0 19px rgba(255, 255, 255, 0.42);
}
.orbit-line {
  position: absolute;
  width: 70%;
  height: 40%;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-35deg);
}
.arcade-screen {
  border: 4px solid currentColor;
  padding: 25px 15px;
  text-align: center;
  font: 500 31px/0.9 var(--font-mono);
  box-shadow: 10px 10px 0 var(--violet);
}
.arcade-screen small {
  font-size: 12px;
}
.card-archive .project-visual span,
.card-jontai .project-visual > span {
  font: 500 clamp(45px, 5vw, 74px) / 0.78 var(--font-mono);
  letter-spacing: -5px;
  color: var(--violet);
}
.card-upcoming {
  color: var(--paper);
  cursor: default;
}
.card-upcoming .project-visual span {
  color: var(--accent);
  font: 500 clamp(28px, 3.5vw, 52px) / 0.85 var(--font-mono);
  letter-spacing: -3px;
  text-align: center;
}
.card-upcoming .project-visual small {
  display: block;
  font: 500 10px/1.2 var(--font-mono);
  letter-spacing: 0;
  margin-top: 16px;
}
.card-upcoming .project-visual::before {
  border: 1px dashed currentColor;
  border-radius: 50%;
  content: "";
  height: min(48%, 150px);
  position: absolute;
  width: min(48%, 150px);
}
.jontai-preview {
  align-self: center;
  background: #eef3f5;
  box-shadow: 8px 8px 0 #00a651;
  color: #203c57;
  height: 66%;
  max-height: 275px;
  min-height: 215px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.jontai-preview__nav {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 7px;
  height: 25px;
  padding: 0 9px;
}
.jontai-preview__nav span {
  color: #00a651;
  font: 700 7px var(--font-mono);
  letter-spacing: .6px;
  margin-right: auto;
}
.jontai-preview__nav i {
  background: #203c57;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}
.jontai-preview__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 22%;
  position: relative;
  text-align: center;
  z-index: 2;
}
.jontai-preview__content strong {
  font-size: clamp(16px, 1.7vw, 25px);
  letter-spacing: -1px;
}
.jontai-preview__content small {
  font-size: 7px;
}
.jontai-preview__content b {
  background: #00a651;
  color: #fff;
  font: 700 7px var(--font-mono);
  padding: 7px 16px;
}
.jontai-preview__panels {
  bottom: -18%;
  display: flex;
  gap: 3px;
  left: -6%;
  position: absolute;
  transform: perspective(140px) rotateX(58deg) rotateZ(-11deg);
  width: 120%;
}
.jontai-preview__panels i {
  background-color: #6b8493;
  background-image: linear-gradient(90deg, #ffffff80 1px, transparent 1px), linear-gradient(#ffffff80 1px, transparent 1px);
  background-size: 16px 16px;
  border: 2px solid #eff4f6;
  height: 90px;
  width: 34%;
}
.card-jontai:hover .jontai-preview {
  box-shadow: 4px 4px 0 #00a651;
  transform: translate(4px, 4px);
}
.project-note {
  margin: 45px 0 0 auto;
  max-width: 270px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.65;
}
.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.84fr) 1.3fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: center;
}
.portrait-wrap {
  position: relative;
  width: 78%;
}
.portrait-placeholder {
  aspect-ratio: 3/4;
  background: var(--violet);
  color: #f7f4eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  overflow: hidden;
}
.portrait-placeholder::before {
  content: "";
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  bottom: -16%;
  left: 16%;
}
.portrait-placeholder span {
  font: 500 clamp(70px, 10vw, 160px) / 0.8 var(--font-serif);
  z-index: 1;
}
.portrait-placeholder p {
  font: 500 10px var(--font-mono);
  text-transform: uppercase;
  z-index: 1;
}
.portrait-photo {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
  object-fit: cover;
  object-position: center 36%;
  filter: contrast(1.04) saturate(0.9);
}
.vertical-label {
  position: absolute;
  writing-mode: vertical-rl;
  right: -25px;
  top: 0;
  margin: 0;
  font: 500 9px var(--font-mono);
}
.about-copy > p:not(.eyebrow) {
  margin: 42px 0;
  max-width: 550px;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.35;
}
.skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.skills div {
  padding-top: 13px;
}
.skills div + div {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.skills span {
  display: block;
  margin-bottom: 12px;
  font: 500 10px var(--font-mono);
  text-transform: uppercase;
  color: var(--muted);
}
.skills strong {
  font-size: 14px;
}
.life-section {
  border-top: 1px solid var(--line);
}
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 54px;
}
.interest-list {
  border-top: 1px solid var(--line);
}
.interest-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.interest-list span {
  display: inline-block;
  width: 65px;
  color: var(--muted);
  font: 500 10px var(--font-mono);
}
.inspiration-quote {
  position: relative;
  width: min(100%, 540px);
  margin: 64px 0 0 auto;
  padding: 24px 28px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transform: rotate(1.5deg);
}
.inspiration-quote::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 54px;
  height: 13px;
  background: var(--accent);
  transform: rotate(-4deg);
}
.inspiration-quote span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font: 500 11px var(--font-mono);
  text-transform: uppercase;
}
.inspiration-quote p {
  margin: 0;
  font: italic 500 clamp(25px, 3vw, 40px) / 1.05 var(--font-serif);
}
.contact-section {
  background: var(--accent);
  color: #18151c;
}
.contact-section h2 {
  margin: 50px 0;
}
.email-link {
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 5px;
  font-size: clamp(24px, 4vw, 56px);
  letter-spacing: -2px;
}
.email-link span {
  font-size: 0.7em;
}
.socials {
  display: flex;
  gap: 20px;
  margin-top: 80px;
  font: 500 11px var(--font-mono);
  text-transform: uppercase;
}
.socials a {
  border-bottom: 1px solid rgba(24, 21, 28, 0.4);
  padding-bottom: 4px;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 17px clamp(20px, 4vw, 66px);
  font: 500 10px var(--font-mono);
}
@keyframes bob {
  50% {
    transform: translateY(5px);
  }
}
@keyframes pulse {
  50% {
    transform: scale(0.6);
    opacity: 0.45;
  }
}
@media (max-width: 680px) {
  .site-header {
    height: 72px;
  }
  .brand {
    font-size: 20px;
  }
  nav {
    display: none;
  }
  .hero {
    min-height: calc(100vh - 64px);
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: clamp(64px, 17vw, 88px);
    letter-spacing: -3px;
  }
  .hero-orbit {
    width: 54vw;
    right: -19vw;
    top: 21%;
  }
  .hero-foot {
    flex-direction: column;
  }
  .hero-foot p {
    max-width: 320px;
    font-size: 16px;
  }
  .work-section,
  .about-section,
  .life-section,
  .contact-section {
    padding: 75px 20px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    margin-top: 28px;
    font-size: clamp(50px, 13vw, 68px);
    letter-spacing: -2px;
  }
  .project-list {
    display: block;
    margin-top: 50px;
  }
  .project-card {
    min-height: 365px;
    padding: 24px;
  }
  .project-card + .project-card {
    border-left: 0;
  }
  .about-section {
    display: block;
  }
  .portrait-wrap {
    width: 70%;
    margin-bottom: 60px;
  }
  .about-copy h2,
  .life-section h2,
  .contact-section h2 {
    font-size: clamp(50px, 13vw, 68px);
    letter-spacing: -2px;
  }
  .project-meta h3 {
    font-size: 21px;
  }
  .project-number,
  .project-meta p,
  .eyebrow {
    font-size: 12px;
  }
  .sun {
    width: 140px;
  }
  .arcade-screen {
    padding: 28px 17px;
    font-size: 36px;
  }
  .card-archive .project-visual span {
    font-size: clamp(58px, 14vw, 76px);
  }
  .life-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .interest-list p {
    font-size: 17px;
  }
  .interest-list span {
    width: 76px;
    font-size: 12px;
  }
  .inspiration-quote {
    width: calc(100% - 12px);
    margin-top: 48px;
    padding: 22px;
  }
  .skills {
    display: block;
  }
  .skills div + div {
    border: 0;
    padding: 22px 0 0;
  }
  .skills strong {
    font-size: 17px;
  }
  .socials {
    margin-top: 55px;
    flex-wrap: wrap;
  }
  footer {
    gap: 15px;
    font-size: 11px;
  }
}
.cursor-pulse {
  position: fixed;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  pointer-events: none;
  border: 2px solid #8d68bd;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(141, 104, 189, 0.2),
    0 0 20px rgba(92, 55, 139, 0.68);
  z-index: 20;
  animation: cursor-pulse 0.55s ease-out forwards;
}
.dark .cursor-pulse {
  border-color: #c7a6ed;
  box-shadow:
    0 0 0 6px rgba(199, 166, 237, 0.22),
    0 0 22px rgba(199, 166, 237, 0.8);
}
@keyframes cursor-pulse {
  from {
    opacity: 1;
    transform: scale(0.55);
  }
  to {
    opacity: 0;
    transform: scale(4);
  }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-pulse {
    display: none;
  }
}
@media (max-width: 680px) {
  .career-wheel {
    width: 260px;
    top: 38%;
    right: -105px;
    opacity: 0.86;
  }
  .career-wheel__note {
    display: none;
  }
  .career-card strong {
    font-size: 11px;
  }
}

@media (min-width: 681px) {
  .site-header {
    height: 82px;
  }

  .brand {
    font-size: 21px;
  }

  nav {
    gap: 0;
    font-size: 13px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(80px, 14vw, 225px);
    max-width: 1220px;
  }

  .hero-foot {
    max-width: 1220px;
  }

  .hero-foot p {
    max-width: 320px;
    font-size: 16px;
  }

  .career-wheel {
    width: clamp(360px, 39vw, 535px);
  }

  .section-heading h2,
  .about-copy h2,
  .life-section h2,
  .contact-section h2 {
    font-size: clamp(48px, 7.2vw, 104px);
  }

  .project-card {
    min-height: 475px;
    padding: 24px;
  }

  .project-meta h3 {
    font-size: 23px;
  }

  .project-number,
  .project-meta p {
    font-size: 12px;
  }

  .sun {
    width: 148px;
  }

  .arcade-screen {
    padding: 30px 18px;
    font-size: 38px;
  }

  .arcade-screen small {
    font-size: 14px;
  }

  .card-archive .project-visual span {
    font-size: clamp(58px, 6vw, 90px);
  }

  .project-note,
  .interest-list p {
    font-size: 17px;
  }

  .interest-list span {
    width: 76px;
    font-size: 12px;
  }

  .skills strong {
    font-size: 17px;
  }

  .skills span,
  .vertical-label,
  footer {
    font-size: 12px;
  }

  .about-section {
    grid-template-columns: minmax(235px, 0.76fr) 1.3fr;
  }
}
.portrait-placeholder::before {
  display: none;
}
.portrait-placeholder span {
  z-index: 2;
}
.portrait-photo {
  width: 55%;
  height: 40%;
  aspect-ratio: 1;
  position: absolute;
  bottom: -16%;
  left: 30%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.04) saturate(0.9);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .career-wheel__ring,
  .career-card,
  .career-card img {
    transition: none;
  }
  .career-wheel:hover .career-wheel__ring {
    transform: none;
  }
}

/* Final site-wide type scale for labels, copy, navigation, and project details. */
.brand {
  font-size: 22px;
}

nav,
.language-select,
.eyebrow,
.scroll-cue,
.project-number,
.project-meta p,
.career-card span,
.career-wheel__note,
.skills span,
.interest-list span,
.vertical-label,
footer,
.socials {
  font-size: 13px;
}

.hero-foot p {
  max-width: 350px;
  font-size: 18px;
}

.career-card strong {
  font-size: clamp(16px, 1.7vw, 22px);
}

.project-meta h3 {
  font-size: 24px;
}

.project-note {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.5;
}

.about-copy > p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 27px);
}

.skills strong {
  font-size: 19px;
}

.interest-list p {
  font-size: 19px;
}

@media (max-width: 680px) {
  .brand {
    font-size: 22px;
  }

  nav,
  .language-select,
  .eyebrow,
  .scroll-cue,
  .project-number,
  .project-meta p,
  .career-card span,
  .skills span,
  .interest-list span,
  .vertical-label,
  footer,
  .socials {
    font-size: 13px;
  }

  .hero-foot p {
    font-size: 18px;
  }

  .career-card strong {
    font-size: 16px;
  }

  .project-meta h3 {
    font-size: 24px;
  }

  .project-note {
    font-size: 16px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 20px;
  }

  .skills strong,
  .interest-list p {
    font-size: 19px;
  }
}

.contact-section .eyebrow {
  font-size: 15px;
}

.contact-section h2 {
  font-size: clamp(62px, 8vw, 122px);
}

.contact-section .email-link {
  font-size: clamp(34px, 5vw, 72px);
}

.contact-section .socials {
  gap: 28px;
  font-size: 16px;
}

@media (max-width: 680px) {
  .contact-section .eyebrow {
    font-size: 15px;
  }

  .contact-section h2 {
    font-size: clamp(58px, 15vw, 78px);
  }

  .contact-section .email-link {
    font-size: clamp(30px, 8vw, 42px);
  }

  .contact-section .socials {
    font-size: 15px;
  }
}
