:root {
  --bg: #f4f7ff;
  --surface: #ffffff;
  --ink: #11182f;
  --muted: #536078;
  --line: #cbd5ec;
  --blue: #145dff;
  --violet: #7047eb;
  --cyan: #007f99;
  --cyan-bright: #11b8d5;
  --blue-soft: #e8efff;
  --violet-soft: #eee9ff;
  --cyan-soft: #e1f6fa;
  --display: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  --body: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1220px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(20, 93, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 93, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

::selection {
  color: white;
  background: var(--blue);
}

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

.external-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

a {
  color: inherit;
}

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

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

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

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(244, 247, 255, 0.88);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan-bright)) 1;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  justify-self: start;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.wordmark-mark {
  margin-left: 3px;
  color: var(--blue);
}

.wordmark-long {
  display: none;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::before {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.main-nav a[aria-current="location"]::before {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a[aria-current="location"] {
  color: var(--blue);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.language-switch button {
  min-width: 31px;
  padding: 7px 4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: white;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 146px 0 66px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(112, 71, 235, 0.13), transparent 27%),
    radial-gradient(circle at 92% 68%, rgba(17, 184, 213, 0.12), transparent 24%);
}

.hero::before {
  position: absolute;
  top: 105px;
  right: -180px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(112, 71, 235, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 93, 255, 0.035), 0 0 0 140px rgba(112, 71, 235, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.78fr);
  gap: clamp(62px, 8vw, 120px);
  align-items: center;
}

.system-label,
.section-kicker,
.section-code,
.career-status,
.expertise-top,
.degree-code,
.language-head,
.contact-code,
.hero-facts dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--blue);
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(17, 184, 213, 0.13);
}

.hero h1,
.section-header h2,
.expertise-item h3,
.career-content h3,
.degrees h3,
.project-copy h2,
.contact h2 {
  font-family: var(--display);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.65rem, 5.65vw, 5.65rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.name-line {
  display: block;
  white-space: nowrap;
}

.degree {
  display: inline-block;
  margin-left: 0.22em;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.44em;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  vertical-align: baseline;
}

.hero-intro {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-width: 160px;
  padding: 13px 16px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  color: white;
  background: var(--ink);
}

.hero-facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 940px;
  padding: 24px 0 0;
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 42%;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 13px);
  content: "";
  opacity: 0.85;
}

.hero-facts::after {
  position: absolute;
  top: -8px;
  right: 12%;
  width: 2px;
  height: 15px;
  background: var(--violet);
  box-shadow: -4px 5px 0 -1px var(--cyan-bright), 4px 5px 0 -1px var(--blue);
  content: "";
}

.hero-facts div {
  padding-right: 18px;
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
}

.hero-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.research-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.visual-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(20, 93, 255, 0.34) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.sequence-map {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.sequence-map path {
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.5;
  opacity: 0.45;
}

.sequence-map path:nth-child(2) {
  stroke: var(--cyan);
  opacity: 0.35;
}

.sequence-map circle {
  fill: var(--bg);
  stroke: var(--blue);
  stroke-width: 2;
}

.profile-card {
  position: absolute;
  top: 0;
  right: 22px;
  width: min(390px, calc(100% - 40px));
  background: var(--surface);
  border: 1px solid var(--ink);
  box-shadow: 18px 18px 0 var(--blue-soft), 36px 36px 0 var(--violet-soft);
}

.profile-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan-bright));
  content: "";
}

.card-head,
.card-role,
.data-tags {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-head {
  display: flex;
  justify-content: space-between;
  padding: 17px 18px 13px;
  color: var(--muted);
}

.card-head span:last-child {
  color: var(--cyan);
  font-weight: 800;
}

.portrait-frame {
  position: relative;
  margin: 0 18px;
  overflow: hidden;
  background: #dfe7f7;
  aspect-ratio: 1 / 1.08;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.015);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(20, 93, 255, 0.05), transparent 45%, rgba(112, 71, 235, 0.09));
  content: "";
  pointer-events: none;
}

.card-role {
  display: grid;
  gap: 5px;
  padding: 16px 18px 19px;
}

.card-role > span {
  color: var(--blue);
  font-weight: 800;
}

.card-role strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
}

.data-tags {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2px;
}

.data-tags span {
  padding: 8px 10px;
  color: white;
  background: var(--ink);
}

.data-tags span:nth-child(2) {
  background: var(--blue);
}

.data-tags span:nth-child(3) {
  background: var(--violet);
}

.data-tags span:nth-child(4) {
  color: var(--ink);
  background: var(--cyan-soft);
}

.data-tags .case-sensitive,
.skill-tags .case-sensitive {
  text-transform: none;
}

.hero-axis {
  position: relative;
  display: flex;
  justify-content: center;
  width: var(--shell);
  padding-top: 22px;
  margin: 34px auto 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--line);
}

.hero-axis span {
  color: var(--blue);
}

.section {
  padding-block: clamp(92px, 10vw, 140px);
}

.section-header {
  display: grid;
  grid-template-columns: 145px minmax(300px, 1fr) minmax(250px, 0.55fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--ink);
}

.section-code {
  display: none;
}

.section-kicker {
  margin: 0;
  color: var(--muted);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-header > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.career {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}

.career .shell {
  position: relative;
  z-index: 1;
}

.dna-watermark {
  position: absolute;
  top: 92px;
  right: max(12px, calc((100vw - var(--shell)) / 2 - 30px));
  width: 210px;
  height: calc(100% - 184px);
  color: var(--blue);
  opacity: 0.085;
  pointer-events: none;
}

.dna-strand,
.dna-rungs path {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.dna-strand {
  stroke-width: 1.5;
}

.dna-rungs path {
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.career-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.career-item {
  display: grid;
  grid-template-columns: 145px minmax(230px, 0.68fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.career-status {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 6px;
  color: var(--muted);
}

.career-item:first-child .career-status {
  color: var(--cyan);
}

.career-place {
  display: grid;
  gap: 7px;
  align-content: start;
}

.career-place strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
}

.career-place strong span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
}

.career-place > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.career-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.career-content p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.expertise {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 5%, rgba(112, 71, 235, 0.28), transparent 27%),
    #0d1530;
}

.expertise::before {
  position: absolute;
  right: -35px;
  bottom: 55px;
  width: 360px;
  height: 250px;
  background-image: radial-gradient(rgba(17, 184, 213, 0.48) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(135deg, transparent 8%, black 48%, transparent 94%);
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(-6deg);
}

.expertise .shell {
  position: relative;
  z-index: 1;
}

.expertise .section-header {
  border-bottom-color: rgba(255, 255, 255, 0.38);
}

.expertise .section-code,
.expertise .section-kicker {
  color: #93b8ff;
}

.expertise .section-header > p {
  color: rgba(255, 255, 255, 0.68);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.expertise-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 355px;
  padding: 25px;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  isolation: isolate;
}

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

.expertise-item.blue::after,
.expertise-item.violet::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.item-wide {
  grid-column: span 7;
}

.item-narrow {
  grid-column: span 5;
}

.item-half {
  grid-column: span 6;
  min-height: 300px;
}

.expertise-item.blue {
  background: var(--blue-soft);
  border-top: 6px solid var(--blue);
}

.expertise-item.blue::after {
  right: -18px;
  bottom: 54px;
  width: 205px;
  height: 52px;
  background:
    linear-gradient(var(--blue), var(--blue)) 0 25px / 100% 1px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 14px 17px / 28px 17px no-repeat,
    linear-gradient(var(--violet), var(--violet)) 68px 13px / 20px 25px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 112px 18px / 38px 15px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 174px 10px / 22px 31px no-repeat;
  opacity: 0.1;
  transform: rotate(-3deg);
}

.expertise-item.violet {
  background: var(--violet-soft);
  border-top: 6px solid var(--violet);
}

.expertise-item.violet::after {
  top: 55px;
  right: 18px;
  width: 145px;
  height: 105px;
  background-image: radial-gradient(var(--violet) 2px, transparent 2.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, transparent 4%, black 42%, transparent 96%);
  opacity: 0.12;
  transform: rotate(-4deg);
}

.expertise-item.cyan {
  background: var(--cyan-soft);
  border-top: 6px solid var(--cyan);
}

.expertise-item.dark {
  color: white;
  background: #182344;
  border-top: 6px solid var(--cyan-bright);
}

.expertise-item.neutral {
  background: #f8f9ff;
  border-top: 6px solid #8b9abd;
}

.expertise-top {
  display: flex;
  align-items: center;
  color: inherit;
  opacity: 0.72;
}

.expertise-top::after {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 10px);
  content: "";
  opacity: 0.3;
}

.expertise-item h3 {
  max-width: 560px;
  margin: 34px 0 14px;
  font-size: clamp(1.7rem, 2.65vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.expertise-item p {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.expertise-item.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.skill-tags span {
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.2;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

.education {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.education .shell {
  position: relative;
  z-index: 1;
}

.spectrum-trace {
  position: absolute;
  top: 76px;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  display: flex;
  gap: 10px;
  align-items: flex-end;
  width: 310px;
  height: 125px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--violet);
  mask-image: linear-gradient(90deg, transparent, black 18%, black 80%, transparent);
  opacity: 0.16;
  pointer-events: none;
}

.spectrum-trace i {
  flex: 1;
  height: var(--peak, 18%);
  background: linear-gradient(to top, var(--blue), var(--violet));
}

.spectrum-trace i:nth-child(2) { --peak: 32%; }
.spectrum-trace i:nth-child(3) { --peak: 15%; }
.spectrum-trace i:nth-child(4) { --peak: 48%; }
.spectrum-trace i:nth-child(5) { --peak: 22%; }
.spectrum-trace i:nth-child(6) { --peak: 76%; }
.spectrum-trace i:nth-child(7) { --peak: 38%; }
.spectrum-trace i:nth-child(8) { --peak: 92%; }
.spectrum-trace i:nth-child(9) { --peak: 27%; }
.spectrum-trace i:nth-child(10) { --peak: 61%; }
.spectrum-trace i:nth-child(11) { --peak: 19%; }
.spectrum-trace i:nth-child(12) { --peak: 45%; }
.spectrum-trace i:nth-child(13) { --peak: 25%; }
.spectrum-trace i:nth-child(14) { --peak: 69%; }
.spectrum-trace i:nth-child(15) { --peak: 31%; }
.spectrum-trace i:nth-child(16) { --peak: 53%; }

.education-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 14px;
  margin-top: 42px;
}

.degrees,
.languages {
  background: var(--surface);
  border: 1px solid var(--line);
}

.degrees article {
  --distinction-accent: var(--cyan-bright);
  --distinction-shadow: rgba(17, 184, 213, 0.18);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 29px;
  border-bottom: 1px solid var(--line);
}

.degrees article:nth-child(2) {
  --distinction-accent: var(--violet);
  --distinction-shadow: rgba(112, 71, 235, 0.18);
}

.degrees article:nth-child(3) {
  --distinction-accent: var(--blue);
  --distinction-shadow: rgba(20, 93, 255, 0.18);
}

.degrees article:last-child {
  border-bottom: 0;
}

.degrees h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.degrees p {
  margin: 5px 0 0;
  color: var(--muted);
}

.degrees .degree-honour {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 12px;
  font-family: var(--mono);
  font-weight: 700;
  line-height: 1.35;
}

.distinction-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px 7px 12px;
  color: white;
  background: var(--ink);
  border-left: 4px solid var(--distinction-accent);
  box-shadow: 4px 4px 0 var(--distinction-shadow);
  font-size: 0.69rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.degree-recognition {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.languages {
  padding: 25px;
  background: var(--violet-soft);
  border-color: #c7b8ff;
}

.language-head {
  display: flex;
  padding-bottom: 18px;
  color: var(--violet);
  border-bottom: 1px solid rgba(112, 71, 235, 0.32);
}

.languages dl {
  padding: 0;
  margin: 0;
}

.languages dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(112, 71, 235, 0.2);
}

.languages dl > div:last-child {
  border-bottom: 0;
}

.languages dt {
  font-family: var(--display);
  font-weight: 700;
}

.languages dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.level-bar {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 10px;
  background: rgba(112, 71, 235, 0.15);
}

.level-bar::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level, 100%);
  background: linear-gradient(90deg, var(--blue), var(--violet));
  content: "";
}

.level-5 { --level: 100%; }
.level-4 { --level: 76%; }
.level-3 { --level: 62%; }
.level-1 { --level: 24%; }

.research-record {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  margin-top: 24px;
  scroll-margin-top: 110px;
}

.record-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.record-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 11px 11px;
  content: "";
  mask-image: linear-gradient(225deg, black, transparent 72%);
  opacity: 0.08;
  pointer-events: none;
}

.record-head {
  position: relative;
  z-index: 1;
  padding: 25px 27px 22px;
  border-bottom: 1px solid var(--line);
}

.record-head p {
  margin: 0 0 8px;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.record-head h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.record-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.publications li {
  border-bottom: 1px solid var(--line);
}

.publications li:last-child {
  border-bottom: 0;
}

.publications a,
.patent-entry {
  display: grid;
  grid-template-columns: minmax(115px, 0.29fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 18px 27px;
  color: inherit;
  text-decoration: none;
}

.publications a {
  transition: color 180ms ease, background 180ms ease;
}

.publications a:hover,
.publications a:focus-visible {
  color: var(--blue);
  background: var(--blue-soft);
}

.publications a > span:first-child,
.patent-entry > span,
.recognition li span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.4;
  text-transform: uppercase;
}

.publications strong,
.patent-entry strong,
.recognition strong {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 5px 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.publications a:hover .view-link,
.publications a:focus-visible .view-link {
  color: white;
  background: var(--blue);
}

.patent-entry {
  background: var(--cyan-soft);
}

.recognition {
  color: white;
  background: #182344;
  border-color: #26365f;
}

.recognition .record-head {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.recognition .record-head p {
  color: #a997ff;
}

.recognition li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 21px 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.recognition li:last-child {
  border-bottom: 0;
}

.recognition li span {
  color: #7edbea;
  font-size: 0.74rem;
}

.side-project {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 93, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(20, 93, 255, 0.045) 1px, transparent 1px),
    var(--cyan-soft);
  background-size: 22px 22px;
  border-top: 1px solid #b8dfe8;
}

.side-project::before {
  position: absolute;
  top: -175px;
  right: 6vw;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(20, 93, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(112, 71, 235, 0.035), 0 0 0 116px rgba(20, 93, 255, 0.025);
  content: "";
}

.side-project-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 145px minmax(350px, 1fr) minmax(290px, 0.62fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: stretch;
}

.project-code,
.signal-head,
.signal-fields,
.project-link {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-code {
  display: flex;
  align-items: flex-start;
  color: var(--muted);
}

.project-copy .section-kicker {
  color: var(--cyan);
}

.project-copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.project-copy > p:last-of-type {
  max-width: 660px;
  margin: 0 0 29px;
  color: var(--muted);
  font-size: 1.05rem;
}

.project-link {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  padding: 12px 15px;
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.project-link:hover {
  color: var(--ink);
  background: transparent;
}

.project-signal {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(20, 93, 255, 0.18);
  border-top: 2px solid rgba(112, 71, 235, 0.58);
}

.signal-head {
  display: flex;
  color: var(--muted);
}

.signal-wave {
  display: grid;
  grid-template-columns: minmax(80px, 0.8fr) minmax(120px, 1.2fr);
  gap: 20px;
  align-items: center;
  min-height: 135px;
  margin-block: auto;
  border-bottom: 1px solid rgba(20, 93, 255, 0.18);
}

.audio-bars {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: 88px;
}

.audio-bars i {
  width: 4px;
  height: var(--signal-height, 25%);
  background: linear-gradient(to top, var(--blue), var(--cyan-bright));
}

.audio-bars i:nth-child(2),
.audio-bars i:nth-child(11) { --signal-height: 42%; }
.audio-bars i:nth-child(3),
.audio-bars i:nth-child(9) { --signal-height: 70%; }
.audio-bars i:nth-child(4),
.audio-bars i:nth-child(8) { --signal-height: 38%; }
.audio-bars i:nth-child(5),
.audio-bars i:nth-child(10) { --signal-height: 88%; }
.audio-bars i:nth-child(6) { --signal-height: 58%; }
.audio-bars i:nth-child(7) { --signal-height: 100%; }
.audio-bars i:nth-child(12) { --signal-height: 54%; }

.activity-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.activity-icons svg {
  width: 100%;
  padding: 5px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  border-left: 1px solid rgba(20, 93, 255, 0.14);
  opacity: 0.66;
}

.activity-icons svg:nth-child(2) {
  stroke: var(--cyan-bright);
}

.activity-icons svg:nth-child(3) {
  stroke: var(--violet);
}

.signal-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
}

.signal-fields span {
  padding: 4px 6px;
  color: var(--muted);
  border: 1px solid rgba(20, 93, 255, 0.24);
}

.contact {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: calc(100svh - 130px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 30%, rgba(17, 184, 213, 0.28), transparent 24%),
    linear-gradient(118deg, #114ed4 0%, #5f3dd7 58%, #4828a4 100%);
}

.contact::after {
  position: absolute;
  top: 50%;
  right: 3vw;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.045), 0 0 0 120px rgba(255, 255, 255, 0.025);
  content: "";
  transform: translateY(-50%);
}

.contact-grid {
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}

.contact-code {
  display: flex;
  align-self: start;
}

.contact-main {
  grid-column: 2;
}

.contact h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-main > p {
  max-width: 610px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.contact-email {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.copy-email {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 10px;
  color: white;
  background: rgba(9, 15, 36, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.copy-email svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.copy-email:hover,
.copy-email.is-copied {
  color: var(--ink);
  background: white;
  border-color: white;
}

.contact-linkedin {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  padding: 16px 18px;
  color: var(--ink);
  background: white;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid white;
  box-shadow: 8px 8px 0 rgba(9, 15, 36, 0.18);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-linkedin:hover {
  color: white;
  background: var(--ink);
  transform: translateY(-2px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #090f24;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 100px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:nth-child(2) {
  text-align: center;
}

.footer-inner a {
  justify-self: end;
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

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

  .js .career-item:nth-child(2),
  .js .expertise-item:nth-child(2) {
    transition-delay: 70ms;
  }

  .js .career-item:nth-child(3),
  .js .expertise-item:nth-child(3) {
    transition-delay: 140ms;
  }
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 20px;
    padding-top: 9px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 24px;
    padding: 9px 0 11px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
    white-space: nowrap;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .wordmark,
  .language-switch {
    grid-row: 1;
  }

  .language-switch {
    grid-column: 2;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7.5vw, 5.25rem);
  }

  .research-visual {
    min-height: 540px;
  }

  .profile-card {
    right: 0;
    width: min(330px, calc(100% - 20px));
  }

  .section-header,
  .career-item {
    grid-template-columns: 105px minmax(190px, 0.65fr) minmax(280px, 1fr);
    gap: 30px;
  }

  .education-layout {
    grid-template-columns: 1fr;
  }

  .side-project-layout {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .project-signal {
    grid-column: 2;
  }

  .contact-layout {
    grid-template-columns: 105px 1fr;
  }

  .contact-linkedin {
    width: 220px;
    margin-top: 4px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

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

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

  .research-visual {
    min-height: 550px;
  }

  .profile-card {
    right: 8%;
  }

  .career-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
  }

  .career-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 26px 24px 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-left: 4px solid var(--blue);
  }

  .career-item:first-child {
    border-left-color: var(--cyan-bright);
  }

  .career-status {
    grid-column: 1;
    width: max-content;
    padding: 6px 9px;
    margin-bottom: 15px;
    color: var(--blue);
    font-size: 0.74rem;
    background: var(--blue-soft);
  }

  .career-item:first-child .career-status {
    color: var(--cyan);
    background: var(--cyan-soft);
  }

  .career-place {
    grid-column: 1;
    gap: 5px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
  }

  .career-place strong {
    font-size: 1.25rem;
  }

  .career-place strong span {
    margin-top: 5px;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .career-place > span {
    font-size: 0.74rem;
  }

  .career-content {
    grid-column: 1;
  }

  .career-content h3 {
    margin: 20px 0 11px;
    font-size: clamp(1.65rem, 5.2vw, 2.2rem);
  }

  .career-content p {
    font-size: 1.04rem;
    line-height: 1.58;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(620px, calc(100vw - 30px));
  }

  body {
    font-size: 17px;
    background-size: 24px 24px;
  }

  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    position: fixed;
    background: rgba(244, 247, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  .header-inner {
    min-height: 94px;
  }

  .wordmark-short,
  .wordmark-mark {
    display: none;
  }

  .wordmark-long {
    display: inline;
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .wordmark-long span {
    color: var(--blue);
  }

  .main-nav {
    gap: 21px;
    padding-block: 10px 11px;
    font-size: 0.7rem;
  }

  .hero {
    padding: 124px 0 38px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.5vw, 3.35rem);
    line-height: 0.92;
  }

  .degree {
    display: inline-block;
    width: auto;
    margin-left: 0.18em;
    font-size: 0.56em;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 1.06rem;
    line-height: 1.52;
  }

  .hero-actions {
    flex-wrap: wrap;
    margin-top: 26px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 18px;
    margin-top: 26px;
  }

  .hero-facts div,
  .hero-facts div + div {
    display: block;
    padding: 2px 10px 12px;
    border-left: 1px solid var(--line);
  }

  .hero-facts div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-facts div:nth-child(n + 3) {
    padding-top: 12px;
    padding-bottom: 0;
    border-top: 1px solid var(--line);
  }

  .hero-facts dt {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-facts dd {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .research-visual {
    min-height: 410px;
  }

  .profile-card {
    left: 0;
    right: auto;
    width: calc(100% - 34px);
  }

  .portrait-frame {
    aspect-ratio: 4 / 3;
  }

  .portrait-frame img {
    object-position: 50% 40%;
  }

  .data-tags {
    right: 0;
    bottom: 0;
  }

  .hero-axis {
    z-index: 2;
    padding-top: 16px;
    margin-top: 14px;
    font-size: 0.68rem;
    background: var(--bg);
    justify-content: flex-start;
  }

  .hero-facts::before {
    width: 48%;
  }

  .hero-facts::after {
    right: 14%;
  }

  .section {
    padding-block: 50px;
  }

  .section-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding-bottom: 25px;
  }

  .section-header > div {
    display: flex;
    grid-row: auto;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .section-code {
    margin: 0;
    writing-mode: horizontal-tb;
  }

  .section-kicker {
    writing-mode: horizontal-tb;
  }

  .section-header h2 {
    font-size: clamp(2.15rem, 9.4vw, 3.2rem);
    line-height: 1;
  }

  .section-header > p {
    grid-column: 1;
    margin-top: 2px;
  }

  .dna-watermark {
    top: 145px;
    right: -36px;
    width: 118px;
    height: calc(100% - 210px);
    opacity: 0.08;
  }

  .career-item {
    padding: 22px 19px 25px;
  }

  .career-content h3 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .expertise::before {
    top: 120px;
    right: -20px;
    bottom: auto;
    width: 190px;
    height: 260px;
    opacity: 0.48;
  }

  .item-wide,
  .item-narrow,
  .item-half {
    grid-column: auto;
    min-height: 0;
    padding: 19px;
  }

  .expertise-item.blue::after {
    right: -42px;
    bottom: 46px;
    width: 175px;
    opacity: 0.15;
  }

  .expertise-item.violet::after {
    top: 42px;
    right: -8px;
    width: 112px;
    height: 92px;
    opacity: 0.17;
  }

  .expertise-item h3 {
    margin: 17px 0 8px;
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
  }

  .expertise-item p {
    margin-bottom: 13px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .skill-tags {
    gap: 5px;
  }

  .skill-tags span {
    padding: 5px 7px;
    font-size: 0.7rem;
  }

  .education-layout {
    min-width: 0;
    gap: 10px;
    margin-top: 28px;
  }

  .spectrum-trace {
    top: 168px;
    right: -12px;
    gap: 6px;
    width: 155px;
    height: 78px;
    opacity: 0.25;
  }

  .degrees article {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 19px;
  }

  .degree-code {
    padding-top: 0;
  }

  .degrees h3 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .degrees .degree-honour {
    display: grid;
    gap: 11px;
    justify-items: start;
    margin-top: 13px;
  }

  .distinction-badge {
    padding: 7px 10px;
    box-shadow: 3px 3px 0 var(--distinction-shadow);
    font-size: 0.68rem;
  }

  .degree-recognition {
    font-size: 0.67rem;
  }

  .languages {
    padding: 20px;
  }

  .languages dl > div {
    padding: 16px 0;
  }

  .research-record {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .record-head {
    padding: 22px 20px 19px;
  }

  .record-head h3 {
    font-size: 1.7rem;
  }

  .publications a,
  .patent-entry {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 14px;
    padding: 19px 20px;
  }

  .publications a > span:first-child,
  .patent-entry > span {
    grid-column: 1;
  }

  .publications a strong,
  .patent-entry strong {
    grid-column: 1 / -1;
    font-size: 1rem;
    line-height: 1.52;
  }

  .publications a .view-link {
    grid-column: 2;
    grid-row: 1;
  }

  .recognition li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .recognition strong {
    font-size: 1rem;
    line-height: 1.5;
  }

  .side-project-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .project-code {
    grid-row: auto;
    margin-bottom: 25px;
    writing-mode: horizontal-tb;
  }

  .project-copy,
  .project-signal {
    grid-column: 1;
  }

  .project-copy h2 {
    margin: 12px 0 16px;
    font-size: clamp(2.4rem, 10.5vw, 3.6rem);
  }

  .project-copy > p:last-of-type {
    margin-bottom: 22px;
  }

  .project-signal {
    min-height: 170px;
    padding: 16px;
    margin-top: 24px;
  }

  .signal-wave {
    min-height: 88px;
  }

  .signal-fields {
    padding-top: 13px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .contact {
    min-height: calc(100svh - 76px);
  }

  .contact-code {
    grid-column: 1;
    writing-mode: horizontal-tb;
  }

  .contact-main,
  .contact-linkedin {
    grid-column: 1;
  }

  .contact-actions {
    gap: 20px;
  }

  .contact-linkedin {
    width: 100%;
    max-width: 280px;
    margin-top: 18px;
  }

  .contact h2 {
    font-size: clamp(2.5rem, 10.8vw, 3.8rem);
  }

  .contact-main > p {
    margin: 18px 0 22px;
  }

  .contact-email {
    gap: 12px;
    font-size: clamp(1.08rem, 5.3vw, 1.7rem);
    overflow-wrap: anywhere;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding-block: 18px;
  }

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 400px) {
  .button {
    flex: 1;
    width: auto;
    min-width: 0;
    gap: 12px;
  }

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

  .research-visual {
    min-height: 390px;
  }

  .data-tags {
    font-size: 0.64rem;
  }
}

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

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