:root {
  color-scheme: dark;
  --ink: #090d0e;
  --ink-2: #101617;
  --paper: #edf0eb;
  --paper-soft: rgba(237, 240, 235, 0.68);
  --muted: rgba(237, 240, 235, 0.56);
  --line: rgba(237, 240, 235, 0.17);
  --line-strong: rgba(237, 240, 235, 0.3);
  --teal: #9cdecf;
  --sand: #dec69f;
  --glass: rgba(13, 18, 19, 0.62);
  --glass-deep: rgba(8, 12, 13, 0.78);
  --mono: "JetBrains Mono", "Cascadia Code", Consolas, monospace;
  --display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --max: 1380px;
  --pad: clamp(1.15rem, 4vw, 4.5rem);
  --parallax-y: 0px;
  --mouse-x: 0px;
  --mouse-y: 0px;
}

html[data-theme="light"] {
  color-scheme: light;
  --ink: #eef1ec;
  --ink-2: #e3e8e2;
  --paper: #111718;
  --paper-soft: rgba(17, 23, 24, 0.72);
  --muted: rgba(17, 23, 24, 0.58);
  --line: rgba(17, 23, 24, 0.16);
  --line-strong: rgba(17, 23, 24, 0.3);
  --teal: #0f7164;
  --sand: #805d2e;
  --glass: rgba(247, 250, 246, 0.65);
  --glass-deep: rgba(239, 243, 238, 0.82);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.65;
}
body::after {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.83' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.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;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.social-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  fill: currentColor;
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  background: var(--teal);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

.parallax-scene {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}
.scene-image {
  position: absolute;
  top: -12%;
  right: -7%;
  bottom: -12%;
  left: -7%;
  background-image: url("assets/graphite-systems.webp");
  background-position: center;
  background-size: cover;
  filter: saturate(0.55) contrast(1.1) brightness(0.72);
  transform: translate3d(
      calc(var(--mouse-x) * 0.45),
      calc(var(--parallax-y) + var(--mouse-y) * 0.35),
      0
    )
    scale(1.09);
  will-change: transform;
}
.scene-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.93) 0%, rgba(5, 8, 9, 0.7) 45%, rgba(5, 8, 9, 0.25) 78%),
    linear-gradient(180deg, rgba(5, 8, 9, 0.16), rgba(5, 8, 9, 0.85));
}
.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.scene-architecture {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.46) 30%, black 58%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.46) 30%, black 58%);
}
.architecture-block {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--width);
  height: var(--height);
  border: 1px solid rgba(156, 222, 207, 0.3);
  background:
    linear-gradient(135deg, rgba(156, 222, 207, 0.08), rgba(13, 18, 19, 0.03)),
    repeating-linear-gradient(90deg, transparent 0 1.45rem, rgba(237, 240, 235, 0.035) 1.45rem calc(1.45rem + 1px));
  box-shadow: inset 0 1px rgba(237, 240, 235, 0.09), 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(3px);
  opacity: var(--block-opacity, 0.74);
  filter: brightness(var(--block-brightness, 1));
  transform: translate3d(var(--block-x, 0px), var(--block-y, 0px), 0) rotate(calc(var(--rotate) + var(--block-tilt, 0deg))) scale(var(--block-scale, 1));
  transition: transform 95ms cubic-bezier(0.18, 0.82, 0.2, 1), border-color 150ms ease, opacity 150ms ease, filter 150ms ease, box-shadow 150ms ease;
  will-change: transform;
}
.architecture-block--soft { --block-opacity: 0.34; }
.architecture-block.is-repelled {
  border-color: rgba(156, 222, 207, 0.72);
  box-shadow: inset 0 1px rgba(237, 240, 235, 0.16), 0 24px 70px rgba(0, 0, 0, 0.26), 0 0 28px rgba(156, 222, 207, 0.1);
}
.architecture-block::before {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 0.34rem;
  height: 0.34rem;
  border: 1px solid rgba(156, 222, 207, 0.4);
  content: "";
}
.architecture-block:nth-child(3n + 2) {
  border-color: rgba(222, 198, 159, 0.18);
  background: linear-gradient(145deg, rgba(222, 198, 159, 0.065), rgba(13, 18, 19, 0.025));
}
.architecture-block:nth-child(4n) { border-style: dashed; }
.scene-glow {
  position: absolute;
  z-index: 2;
  right: -12rem;
  bottom: 4%;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: rgba(156, 222, 207, 0.12);
  filter: blur(130px);
}

.glass {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  right: var(--pad);
  left: var(--pad);
  display: flex;
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.7rem 0.65rem 1rem;
  border: 1px solid rgba(237, 240, 235, 0.12);
  background: rgba(8, 12, 13, 0.42);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: rgba(8, 12, 13, 0.84);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.brand-mark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.brand-mark span { color: var(--teal); }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong {
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 3rem);
}
.site-header nav a {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.site-header nav a:hover,
.site-header nav a.is-active { color: var(--paper); }
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.control-select {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.35rem 0 0.65rem;
  border: 1px solid var(--line);
  background: rgba(8, 12, 13, 0.28);
  color: var(--muted);
}
.control-icon {
  color: var(--teal);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.control-select select {
  max-width: 7.5rem;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  outline: 0;
}
.control-select select option {
  background: var(--ink-2);
  color: var(--paper);
}
.header-contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-contact > span:last-child { color: #416e64; }

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(6.2rem, 6vw, 7rem) var(--pad) 9rem;
}
.hero::after {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  left: var(--pad);
  height: 1px;
  content: "";
  background: var(--line);
}
.hero-main {
  width: min(100%, 970px);
}
.signal {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.55rem;
  color: var(--paper-soft);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.signal-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  color: var(--teal);
  filter: drop-shadow(0 0 8px rgba(156, 222, 207, 0.35));
}
.signal > span:last-child { min-width: 0; }
.hero-name {
  margin: 0 0 0.85rem;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
h1, h2, h3 { margin-top: 0; font-family: var(--display); }
h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.7rem, 7.8vw, 8rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.07em;
}
h1 span {
  display: block;
  color: transparent;
  font-weight: 400;
  -webkit-text-stroke: 1px rgba(237, 240, 235, 0.62);
}
.hero-role {
  margin: 0 0 1.1rem;
  color: var(--teal);
  font-size: clamp(0.67rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hero-statement {
  max-width: 820px;
  margin: 0 0 0.8rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.hero-copy {
  max-width: 800px;
  margin: 0 0 2rem;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-solid { background: var(--paper); color: var(--ink); }
.button-solid > span:last-child { color: #426d64; }
.button-glass { border-color: var(--line-strong); background: rgba(8, 12, 13, 0.32); }
.button-glass:hover { background: rgba(237, 240, 235, 0.08); }

.hero-side {
  display: grid;
  gap: 0.8rem;
  align-self: center;
  margin-bottom: 2rem;
}
.architecture-panel { margin: 0; }
.portrait-slot {
  display: grid;
  min-height: 174px;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin: 0;
  padding: 0.7rem;
  overflow: hidden;
  box-shadow: none;
}
.portrait-media {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}
.portrait-placeholder {
  position: absolute;
  display: grid;
  inset: 0;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(156, 222, 207, 0.2), rgba(222, 198, 159, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 1.2rem, rgba(237, 240, 235, 0.05) 1.2rem calc(1.2rem + 1px));
  transition: filter 350ms ease, background 350ms ease, transform 350ms ease;
}
.portrait-placeholder strong {
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: -0.08em;
}
.portrait-placeholder span {
  position: absolute;
  right: 0.45rem;
  bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.46rem;
  letter-spacing: 0.08em;
}
.portrait-slot:hover .portrait-placeholder {
  filter: grayscale(1);
  background: linear-gradient(145deg, rgba(170, 176, 173, 0.28), rgba(45, 50, 50, 0.12));
  transform: scale(1.025);
}
.portrait-photo {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 680ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portrait-photo--base { opacity: 1; }
.portrait-photo--hover {
  opacity: 0;
  transition:
    opacity 680ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 680ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.portrait-slot:hover .portrait-photo { transform: scale(1.025); }
.portrait-slot:hover .portrait-photo--hover { opacity: 1; }
.portrait-slot figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.35rem 0.4rem;
  border-left: 1px solid var(--line);
}
.portrait-slot figcaption span {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
}
.portrait-slot figcaption small {
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}
.online { color: var(--teal); }
.architecture-stack {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.stack-layer {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.7rem;
  min-height: 72px;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(237, 240, 235, 0.025);
  transform: translateY(calc(var(--layer) * -1px));
}
.stack-layer + .stack-layer { margin-top: 0.5rem; }
.stack-layer > span {
  color: var(--sand);
  font-size: 0.58rem;
}
.stack-layer strong,
.stack-layer small { display: block; }
.stack-layer strong {
  margin-bottom: 0.12rem;
  font-family: var(--display);
  font-size: 0.85rem;
}
.stack-layer small {
  color: var(--muted);
  font-size: 0.54rem;
}
.panel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 1rem 1rem;
}
.panel-foot span {
  padding: 0.28rem 0.4rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.52rem;
}

.hero-metrics {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  left: var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: none;
}
.hero-metrics > div {
  position: relative;
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.hero-metrics > div::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--teal) 0 12px, transparent 12px 17px);
  opacity: 0.62;
}
.hero-metrics > div:last-child { border-right: 0; }
.hero-metrics strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.06em;
}
.hero-metrics span {
  color: var(--muted);
  font-size: 0.53rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
}
.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 7.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.scroll-cue i {
  position: relative;
  width: 46px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}
.scroll-cue i::after {
  position: absolute;
  width: 50%;
  height: 100%;
  content: "";
  background: var(--teal);
  animation: scan 2s infinite;
}
@keyframes scan { from { transform: translateX(-110%); } to { transform: translateX(220%); } }

.section {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}
.section-index {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.section-index span {
  color: var(--sand);
  font-family: var(--display);
  font-size: 1.6rem;
}
.section-index p {
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.09em;
}
.profile-intro,
.experience-heading,
.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.profile-intro h2,
.experience-heading h2,
.projects-heading h2,
.toolkit-title h2 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.profile-intro h2 span,
.experience-heading h2 span,
.projects-heading h2 span,
.toolkit-title h2 span {
  color: transparent;
  font-weight: 400;
  -webkit-text-stroke: 1px rgba(237, 240, 235, 0.54);
}
.profile-intro > p,
.experience-heading > p,
.projects-heading > p {
  margin: 0 0 0.5rem;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.75;
}

.profile-section {
  background: linear-gradient(180deg, rgba(6, 10, 11, 0.74), rgba(6, 10, 11, 0.9));
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.expertise-card {
  min-height: 390px;
  padding: clamp(1.4rem, 3.5vw, 3rem);
  box-shadow: none;
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
}
.expertise-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: rgba(20, 27, 28, 0.74);
}
.card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  color: var(--teal);
  font-size: 0.58rem;
}
.expertise-icon {
  width: 2.15rem;
  height: 2.15rem;
  color: var(--paper-soft);
  transition: color 220ms ease, transform 220ms ease, filter 220ms ease;
}
.expertise-card:hover .expertise-icon {
  color: var(--teal);
  filter: drop-shadow(0 0 10px rgba(156, 222, 207, 0.42));
  transform: translateY(-3px) scale(1.08);
}
.expertise-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.expertise-card > p {
  max-width: 580px;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-family: var(--display);
}
.expertise-card ul,
.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.expertise-card li,
.project-card li {
  padding: 0.32rem 0.45rem;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 0.54rem;
  text-transform: uppercase;
}

.experience-section {
  max-width: none;
  width: 100%;
  background: rgba(12, 17, 18, 0.86);
}
.experience-section > * {
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  margin-right: auto;
  margin-left: auto;
}
.experience-list { display: grid; gap: 0.75rem; }
.company-journey {
  padding: clamp(1.25rem, 3vw, 2.4rem);
  overflow: hidden;
  box-shadow: none;
}
.company-journey__header {
  display: grid;
  grid-template-columns: 0.52fr 1.2fr 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: end;
  padding-bottom: clamp(1.6rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line-strong);
}
.company-journey__header > div { display: flex; flex-direction: column; gap: 0.3rem; }
.company-journey__header > div span {
  color: var(--sand);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}
.company-journey__header small {
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.07em;
}
.company-journey__header h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.company-journey__header > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.94rem;
  line-height: 1.65;
}
.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 0;
  padding-top: 2.3rem;
}
.journey-track::before {
  position: absolute;
  top: 4.5rem;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--sand), var(--teal));
  opacity: 0.55;
}
.journey-stage {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 0 1.25rem 0.5rem;
}
.journey-stage:first-child { padding-left: 0; }
.journey-stage:last-child { padding-right: 0; }
.journey-stage__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 9.25rem);
  height: 4.4rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  color: var(--sand);
  font-size: 0.55rem;
  overflow: hidden;
}
.journey-stage__marker::after {
  position: absolute;
  top: 0.18rem;
  right: 0.24rem;
  content: attr(data-stage);
  padding: 0.14rem 0.2rem;
  background: rgba(7, 11, 12, 0.78);
  color: #fff;
  font-size: 0.4rem;
  letter-spacing: 0.04em;
}
.journey-stage__marker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.journey-stage__marker--easypsim { background: #47764f; }
.journey-stage__marker--easypsim img { object-fit: contain; }
.journey-stage__marker--swisscom img { padding: 0.28rem 0.5rem; }
.journey-stage--current .journey-stage__marker {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 24px rgba(156, 222, 207, 0.18);
}
.journey-stage__date {
  margin: 0 0 0.55rem;
  color: var(--sand);
  font-size: 0.54rem;
  letter-spacing: 0.07em;
}
.journey-stage h4 {
  margin: 0 0 0.15rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.journey-stage > strong {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--teal);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.journey-stage > p:not(.journey-stage__date) {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.91rem;
  line-height: 1.65;
}
.journey-stage__domain {
  margin-top: auto;
  color: rgba(237, 240, 235, 0.44);
  font-size: 0.49rem;
  letter-spacing: 0.06em;
}
.journey-event {
  position: relative;
  z-index: 2;
  display: flex;
  height: 2.55rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--glass-deep);
  color: var(--muted);
  line-height: 1.05;
  text-align: center;
}
.journey-event span { color: var(--sand); font-size: 0.47rem; }
.journey-event strong { font-size: 0.43rem; letter-spacing: 0.05em; }
.experience-item {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1.45fr 0.65fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 170px;
  padding: 1.4rem;
  box-shadow: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.experience-item:hover {
  transform: translateX(7px);
  border-color: var(--line-strong);
  background: rgba(24, 31, 32, 0.76);
}
.experience-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--sand);
  font-size: 0.62rem;
}
.experience-date small { color: var(--muted); font-size: 0.52rem; }
.experience-role p {
  margin: 0 0 0.35rem;
  color: var(--teal);
  font-size: 0.57rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.experience-role h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.experience-copy {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.93rem;
}
.domain {
  justify-self: end;
  color: rgba(237, 240, 235, 0.4);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-align: right;
}

.projects-section {
  background: linear-gradient(180deg, rgba(6, 10, 11, 0.88), rgba(6, 10, 11, 0.7));
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.project-card {
  position: relative;
  min-height: 410px;
  padding: clamp(1.4rem, 3.5vw, 3rem);
  overflow: hidden;
  box-shadow: none;
  transition: transform 250ms ease, border-color 250ms ease;
}
.project-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 3.4rem 3rem 0;
}
.product-logo {
  position: relative;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(156, 222, 207, 0.07);
}
.product-logo::before,
.product-logo::after {
  position: absolute;
  content: "";
  background: var(--line);
}
.product-logo::before,
.product-logo::after { display: none; }
.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-logo::before { width: 150%; height: 1px; transform: rotate(45deg); }
.product-logo::after { width: 1px; height: 150%; transform: rotate(45deg); }
.product-logo > span {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.product-logo small {
  position: absolute;
  z-index: 1;
  right: 0.35rem;
  bottom: 0.28rem;
  color: var(--muted);
  font-size: 0.42rem;
  letter-spacing: 0.04em;
}
.product-logo--cartopti { border-radius: 22%; }
.product-logo--cartopti::before { transform: rotate(-45deg); }
.product-logo--medimind img { padding: 0.55rem; }
.product-logo--hackopti img { padding: 0.7rem; }
.product-logo--micro {
  background:
    linear-gradient(145deg, rgba(156, 222, 207, 0.16), rgba(222, 198, 159, 0.08)),
    rgba(7, 11, 12, 0.48);
}
.product-logo--micro img { padding: 0.55rem; }
.project-brand--solo { justify-content: flex-start; }
.project-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: stretch;
}
.project-external {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.project-external .social-icon { color: var(--paper); }
.project-external:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  color: var(--paper);
}
.product-card--primary {
  min-height: 560px;
  grid-column: 1 / -1;
  background: rgba(11, 17, 18, 0.68);
}
.product-card--primary .project-brand { margin-bottom: 5rem; }
.project-number {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: var(--sand);
  font-size: 0.58rem;
}
.project-copy {
  align-self: end;
}
.project-copy > p:first-child {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}
.project-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.project-card:not(.product-card--primary) .project-copy h3 { font-size: clamp(2.4rem, 4vw, 4rem); }
.project-lifecycle {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.2rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(156, 222, 207, 0.34);
  background: rgba(156, 222, 207, 0.08);
  color: var(--teal);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.project-copy strong {
  display: block;
  max-width: 680px;
  margin-bottom: 1.2rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
}
.project-copy > p:not(:first-child) {
  max-width: 650px;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-family: var(--display);
}
.project-diagram {
  position: relative;
  min-height: 340px;
  align-self: center;
}
.diagram-core,
.diagram-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(156, 222, 207, 0.06);
  font-size: 0.52rem;
}
.diagram-core {
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%) rotate(45deg);
  color: var(--teal);
}
.diagram-core::after {
  content: "GATEWAY";
  transform: rotate(-45deg);
}
.diagram-core { font-size: 0; }
.diagram-node { width: 74px; height: 42px; color: var(--muted); }
.node-one { top: 12%; left: 5%; }
.node-two { top: 16%; right: 2%; }
.node-three { right: 14%; bottom: 8%; }
.project-diagram i {
  position: absolute;
  display: block;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.link-one { top: 34%; left: 21%; width: 36%; transform: rotate(24deg); }
.link-two { top: 37%; left: 57%; width: 30%; transform: rotate(-30deg); }
.link-three { top: 61%; left: 57%; width: 33%; transform: rotate(34deg); }

.toolkit-section {
  background: rgba(7, 11, 12, 0.8);
}
.toolkit-title { margin-bottom: clamp(4rem, 8vw, 7rem); }
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: none;
}
.toolkit-grid > div {
  min-height: 190px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.toolkit-grid > div:nth-child(even) { border-right: 0; }
.toolkit-grid > div:nth-last-child(-n + 2) { border-bottom: 0; }
.toolkit-grid span,
.languages > span {
  color: var(--teal);
  font-size: 0.56rem;
  letter-spacing: 0.07em;
}
.toolkit-grid p {
  max-width: 550px;
  margin: 3rem 0 0;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.75;
}
.languages {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: 1rem;
  padding: 1.3rem 1.7rem;
  box-shadow: none;
}
.languages p {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  margin: 0;
}
.languages strong { font-family: var(--display); }
.languages small { color: var(--muted); font-size: 0.5rem; }

.contact-section {
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
  background: rgba(7, 11, 12, 0.6);
}
.contact-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(1.7rem, 5vw, 5rem);
  background: rgba(13, 18, 19, 0.7);
}
.contact-code {
  margin: 0 0 clamp(4rem, 8vw, 8rem);
  color: var(--sand);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}
.contact-inner h2 {
  max-width: 1100px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.contact-bottom > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.05rem;
}
.contact-links { border-top: 1px solid var(--line-strong); }
.contact-links a {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.social-label { display: inline-flex; align-items: center; gap: 0.65rem; }
.contact-links a > span:last-child { color: var(--teal); transition: transform 180ms ease; }
.contact-links a:hover > span:last-child { transform: translate(4px, -4px); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem var(--pad);
  border-top: 1px solid var(--line);
  background: rgba(7, 11, 12, 0.94);
  color: var(--muted);
  font-size: 0.54rem;
  letter-spacing: 0.07em;
}
footer a { color: var(--paper); text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

html[data-theme="light"] .scene-image {
  filter: saturate(0.32) contrast(0.9) brightness(1.25);
  opacity: 0.52;
}
html[data-theme="light"] .scene-shade {
  background:
    linear-gradient(90deg, rgba(238, 241, 236, 0.96) 0%, rgba(238, 241, 236, 0.76) 48%, rgba(238, 241, 236, 0.4) 82%),
    linear-gradient(180deg, rgba(238, 241, 236, 0.25), rgba(238, 241, 236, 0.92));
}
html[data-theme="light"] .scene-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(17, 23, 24, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 24, 0.08) 1px, transparent 1px);
}
html[data-theme="light"] .architecture-block {
  border-color: rgba(15, 113, 100, 0.19);
  background:
    linear-gradient(135deg, rgba(15, 113, 100, 0.075), rgba(247, 250, 246, 0.16)),
    repeating-linear-gradient(90deg, transparent 0 1.45rem, rgba(17, 23, 24, 0.045) 1.45rem calc(1.45rem + 1px));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55), 0 18px 50px rgba(31, 44, 42, 0.08);
}
html[data-theme="light"] .architecture-block:nth-child(3n + 2) {
  border-color: rgba(128, 93, 46, 0.2);
  background: linear-gradient(145deg, rgba(128, 93, 46, 0.06), rgba(247, 250, 246, 0.18));
}
html[data-theme="light"] .architecture-block.is-repelled {
  border-color: rgba(15, 113, 100, 0.62);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 24px 70px rgba(31, 44, 42, 0.15), 0 0 28px rgba(15, 113, 100, 0.08);
}
html[data-theme="light"] .scene-glow { background: rgba(15, 113, 100, 0.1); }
html[data-theme="light"] .glass { box-shadow: 0 28px 80px rgba(31, 44, 42, 0.11); }
html[data-theme="light"] .site-header {
  border-color: rgba(17, 23, 24, 0.13);
  background: rgba(247, 250, 246, 0.56);
}
html[data-theme="light"] .site-header.is-scrolled {
  background: rgba(247, 250, 246, 0.9);
  box-shadow: 0 16px 50px rgba(31, 44, 42, 0.12);
}
html[data-theme="light"] .control-select { background: rgba(247, 250, 246, 0.45); }
html[data-theme="light"] h1 span,
html[data-theme="light"] .profile-intro h2 span,
html[data-theme="light"] .experience-heading h2 span,
html[data-theme="light"] .projects-heading h2 span,
html[data-theme="light"] .toolkit-title h2 span { -webkit-text-stroke-color: rgba(17, 23, 24, 0.52); }
html[data-theme="light"] .button-glass { background: rgba(247, 250, 246, 0.46); }
html[data-theme="light"] .button-glass:hover { background: rgba(17, 23, 24, 0.07); }
html[data-theme="light"] .stack-layer { background: rgba(17, 23, 24, 0.025); }
html[data-theme="light"] .profile-section { background: linear-gradient(180deg, rgba(238, 241, 236, 0.76), rgba(238, 241, 236, 0.93)); }
html[data-theme="light"] .expertise-card:hover { background: rgba(247, 250, 246, 0.86); }
html[data-theme="light"] .experience-section { background: rgba(229, 234, 228, 0.9); }
html[data-theme="light"] .experience-item:hover { background: rgba(247, 250, 246, 0.82); }
html[data-theme="light"] .domain { color: rgba(17, 23, 24, 0.46); }
html[data-theme="light"] .journey-stage__domain { color: rgba(17, 23, 24, 0.48); }
html[data-theme="light"] .journey-event { background: rgba(239, 243, 238, 0.94); }
html[data-theme="light"] .projects-section { background: linear-gradient(180deg, rgba(238, 241, 236, 0.92), rgba(229, 234, 228, 0.78)); }
html[data-theme="light"] .product-card--primary { background: rgba(247, 250, 246, 0.7); }
html[data-theme="light"] .project-diagram span,
html[data-theme="light"] .product-logo { background: rgba(15, 113, 100, 0.06); }
html[data-theme="light"] .toolkit-section { background: rgba(238, 241, 236, 0.86); }
html[data-theme="light"] .contact-section { background: rgba(229, 234, 228, 0.68); }
html[data-theme="light"] .contact-inner { background: rgba(247, 250, 246, 0.78); }
html[data-theme="light"] footer { background: rgba(238, 241, 236, 0.96); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 9rem; }
  .hero-side {
    width: min(100%, 900px);
    grid-template-columns: minmax(250px, 0.42fr) minmax(380px, 0.8fr);
    align-items: stretch;
  }
  .portrait-slot { grid-template-columns: 1fr; }
  .portrait-slot figcaption { border-top: 1px solid var(--line); border-left: 0; }
  .scroll-cue { display: none; }
  .profile-intro,
  .experience-heading,
  .projects-heading { grid-template-columns: 1fr; }
  .experience-item { grid-template-columns: 0.5fr 1fr 1.5fr; }
  .company-journey__header { grid-template-columns: 0.55fr 1.45fr; }
  .company-journey__header > p { grid-column: 1 / -1; }
  .journey-track { grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr) 64px minmax(0, 1fr); }
  .journey-stage { padding-inline: 0.75rem; }
  .domain { display: none; }
  .project-diagram { min-height: 300px; }
  .site-header nav { display: none; }
}

@media (max-width: 760px) {
  :root { --pad: 1rem; }
  html { scroll-padding-top: 5rem; }
  .site-header { top: 0.55rem; min-height: 64px; }
  .scene-architecture { opacity: 0.42; }
  .brand-copy,
  .header-contact { display: none; }
  .header-tools { margin-left: auto; }
  .control-select { min-height: 42px; }
  .control-select select { min-height: 34px; }
  .theme-control select { max-width: 6.5rem; }
  .hero { padding-top: 6rem; padding-bottom: 20rem; }
  .hero-side { width: 100%; grid-template-columns: 1fr; }
  .portrait-slot {
    width: min(100%, 370px);
    grid-template-columns: 132px minmax(0, 1fr);
  }
  .portrait-slot figcaption { border-top: 0; border-left: 1px solid var(--line); }
  h1 { font-size: clamp(3.4rem, 16vw, 5.4rem); }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-metrics > div {
    min-height: 86px;
    border-bottom: 1px solid var(--line);
  }
  .hero-metrics > div:nth-child(even) { border-right: 0; }
  .hero-metrics > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .expertise-grid,
  .projects-grid,
  .toolkit-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 350px; }
  .experience-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .company-journey__header { grid-template-columns: 1fr; }
  .company-journey__header > p { grid-column: auto; }
  .journey-track { grid-template-columns: 1fr; gap: 0; padding: 2rem 0 0 1.25rem; }
  .journey-track::before {
    top: 2rem;
    right: auto;
    bottom: 2rem;
    left: 3.35rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--sand), var(--teal));
  }
  .journey-stage,
  .journey-stage:first-child,
  .journey-stage:last-child {
    min-height: 0;
    padding: 0 0 2.2rem 5rem;
  }
  .journey-stage__marker { position: absolute; top: 0; left: 0; width: 4.2rem; height: 4.2rem; }
  .journey-stage__marker--easypsim img { object-fit: cover; object-position: left center; }
  .journey-stage__marker--swisscom img { padding: 0.2rem; }
  .journey-event {
    width: 7.2rem;
    margin: 0 0 2.2rem 5rem;
    align-items: flex-start;
    padding-left: 0.6rem;
    text-align: left;
  }
  .journey-stage__domain { margin-top: 0; }
  .experience-date { flex-direction: row; justify-content: space-between; }
  .experience-copy { margin-top: 0.4rem; }
  .project-card { min-height: 450px; grid-column: auto; }
  .product-card--primary { min-height: 560px; }
  .product-card--primary .project-brand { margin-bottom: 3rem; }
  .project-diagram { min-height: 260px; }
  .product-card { min-height: 500px; }
  .toolkit-grid > div,
  .toolkit-grid > div:nth-child(even),
  .toolkit-grid > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .toolkit-grid > div:last-child { border-bottom: 0; }
  .languages { grid-template-columns: 1fr; gap: 0.8rem; }
  .languages p { justify-content: space-between; }
  .contact-bottom { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.45rem; }
}

@media (hover: none), (pointer: coarse) {
  .scene-architecture { opacity: 0.32; }
}

@media (max-width: 430px) {
  .control-icon { display: none; }
  .control-select { padding-left: 0.35rem; }
  .control-select select { max-width: 5.8rem; font-size: 0.54rem; }
  .language-control select { width: 2.8rem; }
  .theme-control select { width: 5.8rem; }
  .project-brand { margin-right: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .scene-image { transform: scale(1.09); }
  .reveal { opacity: 1; transform: none; }
}
