@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "CB";
  font-weight: 600;
  font-style: normal;
  src: url("fonts/CB.otf");
}
@font-face {
  font-family: "CB";
  font-weight: 700;
  font-style: normal;
  src: url("fonts/CBB.otf");
}
@font-face {
  font-family: "CB";
  font-weight: 500;
  font-style: normal;
  src: url("fonts/CM.otf");
}
html {
  width: 100vw;
  height: 100vh;
  margin: 0;
}
@media (max-width: 900px) {
  html {
    height: 100%;
  }
}

/* Global box-sizing: border-box so padding doesn't cause overflow */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font: 1.2em/1.3 "CB", Helvetica, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  /* Let content drive scroll height — no artificial 400vh */
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ============================================
   Lenis smooth scroll
   ============================================ */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
}

/* WebGL Canvas - Fixed background */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Floating Navbar */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  z-index: 100;
  font-family: "CB", Helvetica, sans-serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: fit-content;
  width: auto;
  max-width: 95vw;
  will-change: transform;
}

.navbar-name {
  font-weight: 700;
  font-size: 1em;
  color: white;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  user-select: none;
  -webkit-user-select: none;
  flex-shrink: 0;
  text-decoration: none;
  filter: brightness(0.9);
  transition: filter 1.2s linear, text-shadow 1.2s linear;
}

.navbar-name:hover {
  filter: brightness(1.4);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
               0 0 40px rgba(255, 255, 255, 0.6),
               0 0 60px rgba(255, 255, 255, 0.4);
}

.navbar-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  padding: 8px 16px;
  white-space: nowrap;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  filter: brightness(0.9);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
               0 0 15px rgba(255, 255, 255, 0.1);
  transition: filter 1.2s linear, text-shadow 1.2s linear;
}

.navbar-links a:hover {
  filter: brightness(1.4);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
               0 0 40px rgba(255, 255, 255, 0.6),
               0 0 60px rgba(255, 255, 255, 0.4);
}

.navbar-socials {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.navbar-socials a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  filter: brightness(0.9);
  transition: filter 1.2s linear;
}

.navbar-socials a svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  display: block;
}

.navbar-socials a:hover {
  filter: brightness(1.4) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

@media (max-width: 900px) {
  .navbar {
    top: 20px;
    gap: 20px;
    padding: 12px 20px;
    font-size: 0.85em;
  }
  
  .navbar-links {
    gap: 16px;
  }
  
  .navbar-socials {
    gap: 10px;
    padding-left: 8px;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 24px;
    top: 16px;
  }
  
  .navbar-socials {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  html, body {
    overflow-x: hidden;
  }

  body {
    position: relative;
  }
}

@media (max-width: 380px) {
  .navbar {
    font-size: 0.78em;
    padding: 12px 14px;
    gap: 8px;
  }
  .navbar-links {
    gap: 10px;
  }
  .navbar-links a {
    padding: 6px 10px;
  }
  .navbar-socials {
    gap: 8px;
  }
  .navbar-socials a svg {
    width: 1em;
    height: 1em;
  }
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "CB", Helvetica, sans-serif;
  color: #4D4D4D;
}

h1 {
  font-weight: bold;
  color: #333;
  font-size: 4em;
  line-height: 1.02;
}
@media (max-width: 900px) {
  h1 {
    font-size: 3.3rem;
  }
}

h2 {
  font-weight: bold;
  font-size: 2em;
}

h3 {
  font-weight: 600;
  font-size: 1.4em;
}

h4 {
  font-weight: bold;
  font-style: italic;
  font-size: 1em;
}

h5 {
  font-weight: lighter;
  font-style: italic;
  font-size: 0.8em;
}

p {
  margin: 0;
  color: #888;
  letter-spacing: 0.5px;
}

main {
  width: 700px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  main {
    width: 90%;
  }
}

a {
  text-decoration: none;
  color: #000;
}

.content {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
  width: 420px;
  padding-left: 200px;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .content {
    width: initial;
    padding: 20px 30px;
    height: auto;
    align-items: flex-start;
  }
}
.content h1 {
  font-weight: bolder;
}
.content h1, .content h2, .content h3, .content h4 {
  color: white;
}
.content h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
/* Reset heading defaults for editorial pages */
.content.experience-content h4,
.content.page-content h4 {
  margin-bottom: 0;
}
.content a {
  color: white;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease, box-shadow 0.3s ease !important;
}
.content a:hover, .content .dark a.link:hover, .dark .content a.link:hover, .content .dark a.link--s:hover, .dark .content a.link--s:hover, .content .dark a.link--e:hover, .dark .content a.link--e:hover, .content .dark a.link--r:hover, .dark .content a.link--r:hover, .content .dark a.link--t:hover, .dark .content a.link--t:hover, .content .dark a.link--w:hover, .dark .content a.link--w:hover {
  color: transparent;
  box-shadow: inset 0 -23px 0 rgba(255, 255, 255, 0.8);
}

/* Editorial pages: highlighter bar rises behind readable text */
.content.experience-content a,
.content.page-content a {
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.2);
}
.content.experience-content a:hover,
.content.page-content a:hover {
  color: rgba(255, 255, 255, 1);
  box-shadow: inset 0 -23px 0 rgba(255, 255, 255, 0.18);
}

.link, .dark .link:hover, .dark .link--s:hover, .dark .link--e:hover, .dark .link--r:hover, .dark .link--t:hover, .dark .link--w:hover, .link--w, .link--t, .link--r, .link--e, .link--s {
  color: #666;
  box-shadow: inset 0 -9px 0 rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  transition: all 0.1s ease;
}
.link:hover, .dark .link:hover, .dark .link--s:hover, .dark .link--e:hover, .dark .link--r:hover, .dark .link--t:hover, .dark .link--w:hover, .link--w:hover, .link--t:hover, .link--r:hover, .link--e:hover, .link--s:hover {
  color: white;
  box-shadow: inset 0 -21px 0 rgba(0, 0, 0, 0.84);
  border-radius: 0;
}
.link--s:hover, .dark .link--s:hover {
  color: #ffc04d;
  box-shadow: inset 0 -21px 0 rgba(255, 189, 69, 0.1);
  border-radius: 0;
}
.link--e:hover, .dark .link--e:hover {
  color: #ce3dce;
  box-shadow: inset 0 -21px 0 rgba(255, 108, 224, 0.1);
  border-radius: 0;
}
.link--r:hover, .dark .link--r:hover {
  color: #4d6eff;
  box-shadow: inset 0 -21px 0 rgba(69, 150, 255, 0.1);
  border-radius: 0;
}
.link--t:hover, .dark .link--t:hover {
  color: #e4d236;
  box-shadow: inset 0 -21px 0 rgba(255, 236, 69, 0.1);
  border-radius: 0;
}
.link--w:hover, .dark .link--w:hover {
  color: #ff684d;
  box-shadow: inset 0 -21px 0 rgba(255, 69, 69, 0.1);
  border-radius: 0;
}

sup:hover, .dark sup.link:hover, .dark sup.link--s:hover, .dark sup.link--e:hover, .dark sup.link--r:hover, .dark sup.link--t:hover, .dark sup.link--w:hover {
  text-decoration: underline;
}

ol {
  margin: 35px 0;
  counter-reset: a;
}
ol > li {
  list-style: none;
  position: relative;
  margin: 15px 11px;
}
ol > li:before {
  counter-increment: a;
  content: counter(a);
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  padding: 6px;
  padding: 5px 0;
  width: 30px;
  border-radius: 25px;
  position: absolute;
  left: -45px;
  top: -3px;
}

header {
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 640px) {
  header {
    justify-content: flex-start;
  }
}

.nav-link, nav ul li a {
  font-family: "CB", Helvetica, sans-serif;
  color: #4D4D4D;
  font-weight: 600;
  text-transform: lowercase;
}
.nav-link:hover, .dark .nav-link.link:hover, .dark .nav-link.link--s:hover, .dark .nav-link.link--e:hover, .dark .nav-link.link--r:hover, .dark .nav-link.link--t:hover, .dark .nav-link.link--w:hover, nav ul li a:hover, nav ul li .dark a.link:hover, .dark nav ul li a.link:hover, nav ul li .dark a.link--s:hover, .dark nav ul li a.link--s:hover, nav ul li .dark a.link--e:hover, .dark nav ul li a.link--e:hover, nav ul li .dark a.link--r:hover, .dark nav ul li a.link--r:hover, nav ul li .dark a.link--t:hover, .dark nav ul li a.link--t:hover, nav ul li .dark a.link--w:hover, .dark nav ul li a.link--w:hover {
  color: #717171;
  box-shadow: none;
}

nav {
  margin: 50px 0;
}
nav > a:last-child {
  padding-right: 0;
}
nav .back, nav .back--about {
  color: white;
  display: flex;
  align-items: center;
}
@media (max-width: 640px) {
  nav .back, nav .back--about {
    margin-left: 10px;
  }
}
nav .back--about {
  height: 50px;
  color: #ababab;
  display: flex;
  align-items: center;
}
nav .back svg, nav .back--about svg {
  padding: 0 3px 0 2px;
  transition: padding 0.2s ease;
}
nav .back:hover svg, nav .dark .back.link:hover svg, .dark nav .back.link:hover svg, nav .dark .back.link--s:hover svg, .dark nav .back.link--s:hover svg, nav .dark .back.link--e:hover svg, .dark nav .back.link--e:hover svg, nav .dark .back.link--r:hover svg, .dark nav .back.link--r:hover svg, nav .dark .back.link--t:hover svg, .dark nav .back.link--t:hover svg, nav .dark .back.link--w:hover svg, .dark nav .back.link--w:hover svg, nav .back--about:hover svg, nav .dark .back--about.link:hover svg, .dark nav .back--about.link:hover svg, nav .dark .back--about.link--s:hover svg, .dark nav .back--about.link--s:hover svg, nav .dark .back--about.link--e:hover svg, .dark nav .back--about.link--e:hover svg, nav .dark .back--about.link--r:hover svg, .dark nav .back--about.link--r:hover svg, nav .dark .back--about.link--t:hover svg, .dark nav .back--about.link--t:hover svg, nav .dark .back--about.link--w:hover svg, .dark nav .back--about.link--w:hover svg {
  padding-left: 0px;
  padding-right: 5px;
}
nav ul li {
  font-size: 0.9em;
  display: inline-block;
}
nav ul li:last-child a {
  padding-right: 0;
}
nav ul li a {
  padding: 40px;
}
@media (max-width: 640px) {
  nav {
    margin: 50px 0 30px;
  }
}

.nav--absolute {
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  right: 0;
  margin: 60px auto;
  position: absolute;
}
.nav--absolute ul li a {
  color: white;
  transition: color 0.5s ease;
}
.nav--absolute ul li a:hover, .nav--absolute ul li .dark a.link:hover, .dark .nav--absolute ul li a.link:hover, .nav--absolute ul li .dark a.link--s:hover, .dark .nav--absolute ul li a.link--s:hover, .nav--absolute ul li .dark a.link--e:hover, .dark .nav--absolute ul li a.link--e:hover, .nav--absolute ul li .dark a.link--r:hover, .dark .nav--absolute ul li a.link--r:hover, .nav--absolute ul li .dark a.link--t:hover, .dark .nav--absolute ul li a.link--t:hover, .nav--absolute ul li .dark a.link--w:hover, .dark .nav--absolute ul li a.link--w:hover {
  color: #e6e6e6;
}

.social {
  opacity: 0;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
}
.social a {
  padding: 0 10px;
}
.social a:hover img, .social .dark a.link:hover img, .dark .social a.link:hover img, .social .dark a.link--s:hover img, .dark .social a.link--s:hover img, .social .dark a.link--e:hover img, .dark .social a.link--e:hover img, .social .dark a.link--r:hover img, .dark .social a.link--r:hover img, .social .dark a.link--t:hover img, .dark .social a.link--t:hover img, .social .dark a.link--w:hover img, .dark .social a.link--w:hover img {
  transition: opacity 0.2s ease;
  opacity: 0.5;
}
.social a:hover span, .social .dark a.link:hover span, .dark .social a.link:hover span, .social .dark a.link--s:hover span, .dark .social a.link--s:hover span, .social .dark a.link--e:hover span, .dark .social a.link--e:hover span, .social .dark a.link--r:hover span, .dark .social a.link--r:hover span, .social .dark a.link--t:hover span, .dark .social a.link--t:hover span, .social .dark a.link--w:hover span, .dark .social a.link--w:hover span {
  opacity: 0.8;
  filter: hue-rotate(235deg);
}
.social a:first-child {
  padding-left: 0;
}

.spacer {
  width: 100px;
  height: 2px;
  margin: 30px 0;
  background-color: #EEE;
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 12px 27px;
  border-radius: 30px;
  background-color: #4D4D4D;
  opacity: 1;
  transition: box-shadow 0.5s ease;
  font-family: "CB", Helvetica, sans-serif, sans-serif;
  color: #fff;
  font-size: 0.8em;
  font-weight: 600;
}
.btn:active {
  transform: translateY(1px);
}
.btn--bundl {
  background-color: #60A8FF;
}
.btn--cruzhacks {
  background-color: #998dff;
}
.btn--wam {
  background-color: #ff6b6b;
}
.btn--ic {
  background-color: #c4b9f9;
}
.btn--t4g {
  background-color: #ffdf1f;
}
@media (max-width: 640px) {
  .btn {
    padding: 10px 22px;
  }
}

.work {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.work__card, .work__card__tiny, .work__card__tiny--unif, .work__card__tiny--sink, .work__card__tiny--reach {
  position: relative;
  width: 530px;
  height: 245px;
  margin: 25px 0;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.2s ease, border 0.2s ease;
}
@media (max-width: 640px) {
  .work__card, .work__card__tiny, .work__card__tiny--unif, .work__card__tiny--sink, .work__card__tiny--reach {
    width: 100%;
    height: 187px;
    font-size: 0.84rem;
    margin: 10px 0;
    padding: 0 27px;
    box-sizing: border-box;
  }
}
.work__card:hover, .dark .work__card.link:hover, .dark .work__card.link--s:hover, .dark .work__card.link--e:hover, .dark .work__card.link--r:hover, .dark .work__card.link--t:hover, .dark .work__card.link--w:hover, .work__card__tiny:hover, .dark .work__card__tiny.link:hover, .dark .work__card__tiny.link--s:hover, .dark .work__card__tiny.link--e:hover, .dark .work__card__tiny.link--r:hover, .dark .work__card__tiny.link--t:hover, .dark .work__card__tiny.link--w:hover, .work__card__tiny--unif:hover, .dark .work__card__tiny--unif.link:hover, .dark .work__card__tiny--unif.link--s:hover, .dark .work__card__tiny--unif.link--e:hover, .dark .work__card__tiny--unif.link--r:hover, .dark .work__card__tiny--unif.link--t:hover, .dark .work__card__tiny--unif.link--w:hover, .work__card__tiny--sink:hover, .dark .work__card__tiny--sink.link:hover, .dark .work__card__tiny--sink.link--s:hover, .dark .work__card__tiny--sink.link--e:hover, .dark .work__card__tiny--sink.link--r:hover, .dark .work__card__tiny--sink.link--t:hover, .dark .work__card__tiny--sink.link--w:hover, .work__card__tiny--reach:hover, .dark .work__card__tiny--reach.link:hover, .dark .work__card__tiny--reach.link--s:hover, .dark .work__card__tiny--reach.link--e:hover, .dark .work__card__tiny--reach.link--r:hover, .dark .work__card__tiny--reach.link--t:hover, .dark .work__card__tiny--reach.link--w:hover {
  border: 1px solid #ebebeb;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px) !important;
}
.work__card:hover:after, .dark .work__card.link:hover:after, .dark .work__card.link--s:hover:after, .dark .work__card.link--e:hover:after, .dark .work__card.link--r:hover:after, .dark .work__card.link--t:hover:after, .dark .work__card.link--w:hover:after, .work__card__tiny:hover:after, .dark .work__card__tiny.link:hover:after, .dark .work__card__tiny.link--s:hover:after, .dark .work__card__tiny.link--e:hover:after, .dark .work__card__tiny.link--r:hover:after, .dark .work__card__tiny.link--t:hover:after, .dark .work__card__tiny.link--w:hover:after, .work__card__tiny--unif:hover:after, .dark .work__card__tiny--unif.link:hover:after, .dark .work__card__tiny--unif.link--s:hover:after, .dark .work__card__tiny--unif.link--e:hover:after, .dark .work__card__tiny--unif.link--r:hover:after, .dark .work__card__tiny--unif.link--t:hover:after, .dark .work__card__tiny--unif.link--w:hover:after, .work__card__tiny--sink:hover:after, .dark .work__card__tiny--sink.link:hover:after, .dark .work__card__tiny--sink.link--s:hover:after, .dark .work__card__tiny--sink.link--e:hover:after, .dark .work__card__tiny--sink.link--r:hover:after, .dark .work__card__tiny--sink.link--t:hover:after, .dark .work__card__tiny--sink.link--w:hover:after, .work__card__tiny--reach:hover:after, .dark .work__card__tiny--reach.link:hover:after, .dark .work__card__tiny--reach.link--s:hover:after, .dark .work__card__tiny--reach.link--e:hover:after, .dark .work__card__tiny--reach.link--r:hover:after, .dark .work__card__tiny--reach.link--t:hover:after, .dark .work__card__tiny--reach.link--w:hover:after {
  transition: transform 0.5s ease;
  transform: translateY(1px);
}
.work__card[data-seen]:after, [data-seen].work__card__tiny:after, [data-seen].work__card__tiny--unif:after, [data-seen].work__card__tiny--sink:after, [data-seen].work__card__tiny--reach:after {
  content: "✓Seen";
  position: absolute;
  bottom: -1.8em;
  font-size: 0.9em;
  left: 0.8em;
  color: #b9b9b9;
  animation: 3s cubic-bezier(0.72, 0.26, 0.24, 1) 1 seen;
  transition: transform 0.5s ease;
}
.work__card__tiny, .work__card__tiny--unif, .work__card__tiny--sink, .work__card__tiny--reach {
  width: 170px;
  height: 60px;
  justify-content: flex-start;
  padding: 0 20px;
  line-height: 1;
  display: inline-flex;
  margin: 25px 20px 25px 0;
  transition: transform 0.2s ease;
}
.work__card__tiny:hover, .dark .work__card__tiny.link:hover, .dark .work__card__tiny.link--s:hover, .dark .work__card__tiny.link--e:hover, .dark .work__card__tiny.link--r:hover, .dark .work__card__tiny.link--t:hover, .dark .work__card__tiny.link--w:hover, .work__card__tiny--unif:hover, .dark .work__card__tiny--unif.link:hover, .dark .work__card__tiny--unif.link--s:hover, .dark .work__card__tiny--unif.link--e:hover, .dark .work__card__tiny--unif.link--r:hover, .dark .work__card__tiny--unif.link--t:hover, .dark .work__card__tiny--unif.link--w:hover, .work__card__tiny--sink:hover, .dark .work__card__tiny--sink.link:hover, .dark .work__card__tiny--sink.link--s:hover, .dark .work__card__tiny--sink.link--e:hover, .dark .work__card__tiny--sink.link--r:hover, .dark .work__card__tiny--sink.link--t:hover, .dark .work__card__tiny--sink.link--w:hover, .work__card__tiny--reach:hover, .dark .work__card__tiny--reach.link:hover, .dark .work__card__tiny--reach.link--s:hover, .dark .work__card__tiny--reach.link--e:hover, .dark .work__card__tiny--reach.link--r:hover, .dark .work__card__tiny--reach.link--t:hover, .dark .work__card__tiny--reach.link--w:hover {
  transform: translateY(-2px) !important;
}
@media (max-width: 640px) {
  .work__card__tiny, .work__card__tiny--unif, .work__card__tiny--sink, .work__card__tiny--reach {
    display: flex;
    margin: 25px auto 25px 0;
  }
}
.work__card__tiny .circle, .work__card__tiny--unif .circle, .work__card__tiny--sink .circle, .work__card__tiny--reach .circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 14px;
  background: #f1f1f1;
}
.work__card__tiny--reach .circle {
  background: linear-gradient(160deg, blue, aliceblue);
}
.work__card__tiny--reach:hover, .dark .work__card__tiny--reach.link:hover, .dark .work__card__tiny--reach.link--s:hover, .dark .work__card__tiny--reach.link--e:hover, .dark .work__card__tiny--reach.link--r:hover, .dark .work__card__tiny--reach.link--t:hover, .dark .work__card__tiny--reach.link--w:hover {
  background: blue;
  border: 1px solid blue;
  color: white;
}
.work__card__tiny--reach:hover .circle {
  background: white;
}
.work__card__tiny--sink .circle {
  background: linear-gradient(35deg, #ff00dd, floralwhite);
}
.work__card__tiny--sink:hover, .dark .work__card__tiny--sink.link:hover, .dark .work__card__tiny--sink.link--s:hover, .dark .work__card__tiny--sink.link--e:hover, .dark .work__card__tiny--sink.link--r:hover, .dark .work__card__tiny--sink.link--t:hover, .dark .work__card__tiny--sink.link--w:hover {
  background: #ff00dd;
  border: 1px solid #ff00dd;
  color: white;
}
.work__card__tiny--sink:hover .circle {
  background: white;
}
.work__card__tiny--unif .circle {
  background: linear-gradient(35deg, #fffb00, white);
}
.work__card__tiny--unif:hover, .dark .work__card__tiny--unif.link:hover, .dark .work__card__tiny--unif.link--s:hover, .dark .work__card__tiny--unif.link--e:hover, .dark .work__card__tiny--unif.link--r:hover, .dark .work__card__tiny--unif.link--t:hover, .dark .work__card__tiny--unif.link--w:hover {
  background: #fffb00;
  border: 1px solid #fffb00;
  color: white;
}
.work__card__tiny--unif:hover .circle {
  background: white;
}
.work__text {
  width: 275px;
}
.work__sub {
  margin: 10px 0 17px;
  font-size: 0.8em;
}
@media (max-width: 640px) {
  .work__sub {
    margin: 10px 0 12px;
  }
}
.work__hero {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 151px;
}
@media (max-width: 640px) {
  .work__hero img {
    width: 90px;
  }
}

.read-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  cursor: pointer;
  border: 1px solid #eeeeee;
  padding: 18px;
  border-radius: 10px;
}
.read-reset img {
  margin-right: 8px;
}
@media (max-width: 640px) {
  .read-reset {
    align-items: flex-end;
    flex-direction: column;
    text-decoration: underline;
    text-align: right;
    border: none;
    padding: 0;
  }
  .read-reset img {
    margin-right: 0;
    margin-bottom: 4px;
  }
}

.greeting {
  color: #979797;
  letter-spacing: 0;
}

.casestudy {
  width: 680px;
  margin: 75px auto;
}
@media (max-width: 640px) {
  .casestudy {
    width: 90%;
  }
}
.casestudy h2,
.casestudy h3,
.casestudy p {
  color: #333;
}
.casestudy h2 {
  margin-bottom: 27px;
  font-size: 28px;
}
.casestudy h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.casestudy p {
  margin-bottom: 35px;
  font-family: "CB", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.casestudy p.highlight {
  color: #464646;
  font-style: italic;
  border-left: 2px solid #c7c7c7;
  padding: 0 26px;
  font-size: 1em;
}
.casestudy ul {
  margin: 35px 0;
  padding: 0 23px;
  color: #333;
}
.casestudy ul li {
  font-size: 18px;
  margin: 15px 0;
  list-style: none;
  position: relative;
}
.casestudy ul li:before {
  content: "•";
  position: absolute;
  font-size: 2em;
  color: #96999a;
  left: -23px;
  top: -15px;
}
.casestudy a {
  text-decoration: underline;
}
.casestudy sup a {
  text-decoration: none;
}
.casestudy figure {
  display: block;
  margin: 0 auto 45px;
}
.casestudy figure img {
  margin: 0 auto;
}
@media (max-width: 640px) {
  .casestudy figure img {
    width: 100%;
  }
}
.casestudy figure figcaption {
  font-size: 0.8em;
  color: #909090;
  text-align: center;
}
.casestudy figure.big {
  display: flex;
  justify-content: center;
  align-items: center;
}
.casestudy .browser img {
  box-shadow: 0 0 8.5px rgba(0, 0, 0, 0.1), 0 9px 29px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.casestudy .heatmap {
  margin: -590px -110px 0 !important;
  box-shadow: unset !important;
  position: absolute;
  z-index: -1;
}
.casestudy .heatmap-hide {
  transition: opacity 0.3s ease;
}
.casestudy .heatmap-hide:hover {
  opacity: 0;
}
.casestudy .heatmap-caption {
  margin-top: -27px;
}
.casestudy img,
.casestudy video {
  margin: 0 auto 45px;
}
.casestudy img {
  display: block;
  transition: all 0.4s ease;
}
.casestudy video {
  display: block;
}
.casestudy .shadow {
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.08);
  border-radius: 7px;
}
.casestudy .list-add {
  color: #41b334;
  text-transform: uppercase;
  margin-right: 5px;
  font-weight: bold;
  font-size: 0.8em;
  padding: 7px 11px;
  border-radius: 6px;
  border: 1px solid #44bf36;
}
@media (max-width: 640px) {
  .casestudy .list-add {
    display: inline-block;
  }
}
.casestudy .end {
  text-decoration: none;
}
.casestudy .end h3 {
  width: 100%;
  height: 110px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.casestudy .end:hover h3 {
  background-color: #ebebeb;
}
.casestudy__hero, .casestudy__hero--t4g, .casestudy__hero--ic, .casestudy__hero--wam, .casestudy__hero--cruzhacks, .casestudy__hero--bundl {
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.casestudy__hero img, .casestudy__hero--t4g img, .casestudy__hero--ic img, .casestudy__hero--wam img, .casestudy__hero--cruzhacks img, .casestudy__hero--bundl img {
  margin: 30px 0;
}
@media (max-width: 640px) {
  .casestudy__hero, .casestudy__hero--t4g, .casestudy__hero--ic, .casestudy__hero--wam, .casestudy__hero--cruzhacks, .casestudy__hero--bundl {
    height: 70vh;
    min-height: 535px;
  }
}
.casestudy__hero--bundl {
  background: linear-gradient(160deg, #7295fc, #625fff);
}
.casestudy__hero--cruzhacks {
  background: linear-gradient(160deg, #ac89ff, #625fff);
}
.casestudy__hero--wam {
  background: #748fff;
}
.casestudy__hero--ic {
  background: radial-gradient(#d7cffe 20%, #c1caff);
}
.casestudy__hero--t4g {
  background: linear-gradient(160deg, #fbdf3c, #fff3a8);
}
.casestudy__card {
  width: 270px;
  padding: 25px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 8px rgba(75, 80, 86, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.casestudy__card .logo-wam {
  margin-right: 7px;
}
.casestudy__intro {
  margin: 70px 0;
  padding: 44px;
  border: 1px solid #f3f3f3;
  background-color: #fff;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.02);
  border-radius: 9px;
  font-weight: 100;
}

.twocol, .twocol--img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 820px;
  height: 290px;
  margin: 20px -70px 40px;
  border: 1px #f3f3f3 solid;
  background-color: white;
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.5s ease;
}
@media (max-width: 900px) {
  .twocol, .twocol--img {
    width: auto;
    flex-direction: column;
    height: auto;
    margin: 40px 0;
    padding: 20px 40px;
  }
  .twocol .col, .twocol--img .col {
    width: auto;
    margin: 20px 0;
  }
}
.twocol:hover, .dark .twocol.link:hover, .dark .twocol.link--s:hover, .dark .twocol.link--e:hover, .dark .twocol.link--r:hover, .dark .twocol.link--t:hover, .dark .twocol.link--w:hover, .twocol--img:hover, .dark .twocol--img.link:hover, .dark .twocol--img.link--s:hover, .dark .twocol--img.link--e:hover, .dark .twocol--img.link--r:hover, .dark .twocol--img.link--t:hover, .dark .twocol--img.link--w:hover {
  box-shadow: none;
}
.twocol--img .col {
  width: initial;
}
.twocol--img .col--divider {
  margin: 0;
}
.twocol--img .col img {
  margin: 0;
  /*transition: all .3s ease;
  &:hover {
    transform: scale(1.8);
    box-shadow: 0 3px 13px rgba(0,0,0,.04);
  }*/
}

/* (old footer rules removed — .site-footer replaces them) */

.imgcenter {
  display: flex;
  justify-content: center;
}

.col {
  width: 310px;
}
.col p {
  margin-bottom: 0;
}
.col--divider {
  height: 180px;
  margin: auto 30px;
  border-left: 1px #eaeaea solid;
}

.crimewatch {
  color: white;
}
.crimewatch--sub {
  color: #a5c8fa;
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (min-width: 900px) {
  .hide-desktop {
    display: none !important;
    visibility: hidden !important;
  }
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.fade-in {
  transform: translateY(30px);
}

.faded {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}

input {
  font-size: initial;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-s {
  margin-bottom: 25px !important;
}

.fx-s {
  justify-content: flex-start !important;
}

.cl {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.center--text {
  text-align: center;
}

.deactivated {
  animation: 0.3s ease 0.7s forwards deac;
}
.deactivated:hover, .dark .deactivated.link:hover, .dark .deactivated.link--s:hover, .dark .deactivated.link--e:hover, .dark .deactivated.link--r:hover, .dark .deactivated.link--t:hover, .dark .deactivated.link--w:hover {
  animation: 0.3s ease 0.7s backwards deac;
}
@media (max-width: 640px) {
  .deactivated {
    margin-bottom: 30px;
  }
}

.dark {
  background-color: #202022;
}
.dark h1,
.dark h2,
.dark h3,
.dark h4 {
  color: white;
}
.dark .work__card, .dark .work__card__tiny, .dark .work__card__tiny--reach, .dark .work__card__tiny--sink, .dark .work__card__tiny--unif {
  background: #323233;
  border: 1px solid #404144;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}
.dark .work__card__tiny, .dark .work__card__tiny--reach, .dark .work__card__tiny--sink, .dark .work__card__tiny--unif {
  color: white;
}
.dark .work__card__tiny--reach:hover {
  background: blue;
  border: 1px solid blue;
  color: white;
}
.dark .work__card__tiny--sink:hover {
  background: #ff00dd;
  border: 1px solid #ff00dd;
  color: white;
}
.dark .work__card__tiny--unif:hover {
  background: #fffb00;
  border: 1px solid #fffb00;
  color: white;
}
.dark .link, .dark .link:hover, .dark .link--s:hover, .dark .link--e:hover, .dark .link--r:hover, .dark .link--t:hover, .dark .link--w:hover, .dark .link--s, .dark .link--e, .dark .link--r, .dark .link--t, .dark .link--w {
  color: #ccc;
  box-shadow: inset 0 -9px 0 rgba(255, 255, 255, 0.1);
}
.dark .casestudy a {
  color: white;
}
.dark .casestudy h2,
.dark .casestudy h3,
.dark .casestudy p {
  color: #888;
}
.dark .casestudy ul,
.dark .casestudy ol {
  color: #b3b3b3;
}
.dark .casestudy .highlight {
  color: #d8d8d8;
  border-left: 2px solid #6b6b6b;
}
.dark .casestudy__intro {
  background: #323233;
  border: 1px solid #404144;
}
.dark .casestudy__card {
  background: #323233;
  border: 1px solid #404144;
}
.dark .casestudy .twocol, .dark .casestudy .twocol--img {
  background: #323233;
  border: 1px solid #404144;
}
.dark .casestudy .twocol .col--divider, .dark .casestudy .twocol--img .col--divider {
  border: 1px solid #4a4a4a;
}
.dark .casestudy .twocol--img {
  background: black;
}
.dark .casestudy .twocol--img .col img {
  filter: invert();
}
.dark .casestudy .end h3 {
  background-color: #333;
}
.dark .casestudy .end h3:hover {
  background-color: #484848;
}
.dark .read-reset {
  border: 1px solid #4a4a4a;
}
.dark footer {
  background-color: #18181b;
  border-top: 1px solid #151515;
  box-shadow: inset 0 12px 35px rgba(0, 0, 0, 0.04);
}

.none {
  display: none;
  opacity: 0 !important;
}

.about {
  height: calc(100vh + 37px);
}

.headshot {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

#toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  #toggle {
    justify-content: flex-start;
    align-items: flex-end;
  }
}

.logo-bundl, .logo-cruzhacks, .logo-wam, .logo-t4g, .logo-ic {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.emojis h1:after {
  content: " 🐺";
}
.emojis h2:after {
  content: " 📝";
}
.emojis .work__card[data-seen]:after, .emojis [data-seen].work__card__tiny:after, .emojis [data-seen].work__card__tiny--reach:after, .emojis [data-seen].work__card__tiny--sink:after, .emojis [data-seen].work__card__tiny--unif:after {
  content: "👌🏼 Seen";
}
.emojis .heart:after {
  content: "❤️";
}
.emojis .btn:after {
  content: " 👀";
}
.emojis .backhome:before {
  content: "🔙🔙🔙";
}
.emojis .social-emoji--mail:after {
  content: " 📩";
}
.emojis .social-emoji--linkedin:after {
  content: " 💼";
}
.emojis .social-emoji--medium:after {
  content: " 📰";
}
.emojis .social-emoji--codepen:after {
  content: " 🕹";
}
.emojis .social-emoji--github:after {
  content: " 🐙";
}
.emojis .social-emoji--dribbble:after {
  content: " 🏀";
}
.emojis .social-emoji--twitter:after {
  content: " 🐦";
}

.heart:after {
  content: "♥";
}

.backhome:before {
  content: "← Back to home";
}

.emoji {
  opacity: 1;
  color: #fff;
  transition: opacity 0.5s ease;
  font-size: 1.3em;
}
.emoji:after {
  content: "☺️";
}
.emoji:hover:after, .dark .emoji.link:hover:after, .dark .emoji.link--s:hover:after, .dark .emoji.link--e:hover:after, .dark .emoji.link--r:hover:after, .dark .emoji.link--t:hover:after, .dark .emoji.link--w:hover:after {
  content: "😮";
}
.emoji:active:after {
  content: "💯";
}
@media (max-width: 640px) {
  .emoji {
    position: relative;
    top: 8px;
  }
}
.emoji-logo, .emoji-logo--t4g:after, .emoji-logo--wam:after, .emoji-logo--cruzhacks:after, .emoji-logo--bundl:after {
  font-size: 5em;
}
.emoji-logo--bundl:after {
  content: "🗞";
}
.emoji-logo--cruzhacks:after {
  content: "💡";
}
.emoji-logo--wam:after {
  content: "💻";
}
.emoji-logo--t4g:after {
  content: "😀";
}

.norm {
  opacity: 1;
  transition: opacity 0.5s ease;
  width: 23px;
  height: 23px;
}

.moon {
  opacity: 1;
  transition: opacity 0.5s ease;
}

@keyframes seen {
  0% {
    opacity: 0;
    color: #fff;
  }
  65% {
    transform: translateY(-15px);
    color: #fff;
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    color: #dcdcdc;
  }
}
@keyframes deac {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
.gone {
  display: none !important;
}

/* a:hover, .dark a.link:hover, .dark a.link--s:hover, .dark a.link--e:hover, .dark a.link--r:hover, .dark a.link--t:hover, .dark a.link--w:hover {
  transform: scaleX(2) !important;
} */

a {
  transform-origin: left;
  transition: transform 3s cubic-bezier(0.16, 0.88, 0.58, 1) !important;
}

/* ============================================
   Experience page — Editorial Vertical
   ============================================ */
.content.experience-content {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Intro --- */
.exp-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  width: min(100%, 88rem);
  margin: 0 auto;
  padding: clamp(8rem, 14vh, 11rem) clamp(1.25rem, 8vw, 8rem) clamp(4rem, 8vh, 6rem);
}
.exp-intro-eyebrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.exp-intro-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1.25rem;
}
.exp-intro-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.exp-intro-cue {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exp-intro-cue span {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  transform-origin: top;
  animation: exp-cue-pulse 2s ease-in-out infinite;
}
@keyframes exp-cue-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .exp-intro-cue span { animation: none; }
}

/* --- Roles container --- */
.exp-roles {
  position: relative;
  width: 100%;
}

/* --- Each role section --- */
.exp-role-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  align-items: center;
  width: min(100%, 88rem);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.25rem, 8vw, 8rem);
  gap: clamp(2rem, 6vw, 6rem);
}

/* Subtle scroll cue at the bottom of each section (except last) */
.exp-role-cue {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  will-change: opacity;
}
.exp-role-cue span {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  transform-origin: top;
  animation: exp-cue-pulse 2s ease-in-out infinite;
}
.exp-role-cue small {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* Alternating layout: odd indices flip */
.exp-role-section[data-index="1"],
.exp-role-section[data-index="3"] {
  direction: rtl;
}
.exp-role-section[data-index="1"] .exp-role-content,
.exp-role-section[data-index="3"] .exp-role-content {
  direction: ltr;
}

/* --- Giant numeric --- */
.exp-role-num {
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.11);
  user-select: none;
  pointer-events: none;
  text-align: center;
  will-change: transform;
  /* GSAP parallax moves this */
}

/* --- Content column --- */
.exp-role-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.exp-role-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.exp-role-company {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.exp-role-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.exp-role-title {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: -0.01em;
}
.exp-role-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.exp-role-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 32rem;
}
.exp-role-body strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.exp-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.exp-role-tags span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 0.2rem 0.7rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.exp-role-footer {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 0.75rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

/* --- Side progress indicator --- */
.exp-progress {
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.exp-progress-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 0.125rem solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.exp-progress-dot span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.exp-progress-dot.is-active {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}
.exp-progress-dot.is-active span {
  transform: translate(-50%, -50%) scale(1);
}
.exp-progress-dot:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* --- Responsive --- */
@media screen and (max-width: 48rem) {
  .exp-role-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5rem 1.25rem 5rem 3rem;
    gap: 1rem;
  }
  .exp-role-num {
    font-size: clamp(8rem, 22vw, 14rem);
    text-align: left;
    line-height: 0.85;
    margin-bottom: -1rem;
  }
  .exp-role-section[data-index="1"],
  .exp-role-section[data-index="3"] {
    direction: ltr;
  }
  .exp-role-company { font-size: 1.5rem; }
  .exp-role-title { font-size: 1.05rem; }
  .exp-role-body p { font-size: 0.85rem; }
  .exp-intro { padding: 8rem 1.25rem 4rem; }
  .exp-progress { right: 0.75rem; gap: 0.75rem; }
}

@media screen and (max-width: 30rem) {
  .exp-role-section { padding: 4rem 1rem; }
  .exp-role-num { font-size: 7rem; }
  .exp-role-body p { font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .exp-role-num { will-change: auto; }
}

/* ============================================
   About page
   ============================================ */
.content.about-content {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  padding: 0 !important;
  margin: 0 !important;
}
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 100rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8rem, 14vh, 11rem) clamp(1.25rem, 8vw, 8rem) clamp(4rem, 8vh, 6rem);
}
.about-hero-copy {
  width: min(100%, 43rem);
}
.about-hero h1 {
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 1rem;
}
.about-hero p {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.74);
  margin: 0.15rem 0;
}
.about-hero a,
.about-details a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.18em;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.about-hero a:hover,
.about-details a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration-color: rgba(255, 255, 255, 0.95);
}
.about-hero-links {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  margin-top: 1.5rem;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
}
.about-hero-links span {
  color: rgba(255, 255, 255, 0.52);
  margin-right: 0.1rem;
}
.about-scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 8vw, 8rem);
  bottom: clamp(2rem, 5vh, 4rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  box-shadow: none !important;
}
.about-scroll-cue:hover {
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.5) !important;
}
.about-scroll-line {
  display: block;
  width: 0.0625rem;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), transparent);
  transform-origin: top;
  animation: about-scroll-pulse 2.1s ease-in-out infinite;
}
@keyframes about-scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}
.about-details {
  width: min(calc(100% - clamp(2rem, 8vw, 8rem)), 88rem);
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 10rem) 0 clamp(5rem, 10vh, 8rem);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.18);
}
.about-details-heading {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.about-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-details-heading h2 {
  max-width: 54rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.about-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.about-story {
  max-width: 48rem;
}
.about-bio {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 1.5rem;
}
.about-bio strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}
.about-funfact {
  font-style: italic;
  color: rgba(255, 255, 255, 0.52);
}
.about-section {
  width: 100%;
}
.about-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
}
.about-edu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-edu-item {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 1.25rem 1.4rem;
}
.about-edu-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.about-edu-school {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.about-edu-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.about-edu-degree {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.67);
}

/* ============================================
   Shared page layout (Projects, Extras)
   Editorial — left-aligned, typographic, no cards
   ============================================ */
.content.page-content {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Page hero --- */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.25rem, 8vw, 6rem) clamp(3rem, 6vh, 5rem);
}
.page-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}
.page-title {
  text-align: left;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1rem;
}
.page-subtitle {
  text-align: left;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 36rem;
}
.page-hero-cue {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero-cue span {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  transform-origin: top;
  animation: page-cue-pulse 2.4s ease-in-out infinite;
}
@keyframes page-cue-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-cue span { animation: none; }
}

/* ============================================
   Projects — editorial list rows
   ============================================ */
.proj-list {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 8vw, 6rem) 6rem;
}
.proj-row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.proj-row:last-child {
  border-bottom: none;
}
.proj-row:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

/* Ghost number */
.proj-row-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.proj-row:hover .proj-row-num {
  color: rgba(255, 255, 255, 0.16);
}

/* Body */
.proj-row-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proj-row-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.proj-row-name {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.proj-row:hover .proj-row-name {
  color: rgba(255, 255, 255, 1);
}
.proj-row-date {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.proj-row-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 38rem;
}
.proj-row-desc strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.proj-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.proj-row-tags span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 0.2rem 0.7rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.proj-row-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.25rem;
}
.proj-row-links a {
  font-size: 0.85rem;
  text-decoration: none;
}
.proj-row-links a:active {
  transform: scale(0.97);
}

/* ============================================
   Extras — editorial sections
   ============================================ */
.ext-section {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 8vw, 6rem);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}
.ext-section:last-child {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

/* Label column */
.ext-section-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: sticky;
  top: 6rem;
  align-self: start;
}
.ext-section-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}
.ext-section-title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  margin: 0;
}

/* Body column */
.ext-section-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Skills --- */
.skill-cluster {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.skill-cluster-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.skill-tags span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
  transition: border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.skill-tags span:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

/* --- Achievements list --- */
.ext-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ext-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}
.ext-list-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
}
.ext-list p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.ext-list strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* --- Research block --- */
.research-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.25rem;
  border-left: 0.125rem solid rgba(255, 255, 255, 0.15);
}
.research-block-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
}
.research-block-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}
.research-block-link {
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0.25rem;
  align-self: flex-start;
}
.research-block-link:active {
  transform: scale(0.97);
}

/* --- Positions of responsibility --- */
.por-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.06);
}
.por-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.por-row-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.por-row-role {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.por-row-org {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.por-row-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
  white-space: nowrap;
}
.por-row-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* --- Contact --- */
.ext-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}
.ext-contact a {
  font-size: 0.95rem;
  text-decoration: none;
}
.ext-contact a:active {
  transform: scale(0.97);
}

/* ============================================
   Site footer — consistent across all pages
   ============================================ */
.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
}
.ft-bar {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 8vw, 6rem);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}
.ft-connect {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ft-connect a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.15);
  margin-left: 0.9rem;
  transition: color 0.3s ease, box-shadow 0.3s ease !important;
}
.ft-connect a:first-of-type {
  margin-left: 1.8rem;
}
.ft-connect a:hover {
  color: rgba(255, 255, 255, 1);
  box-shadow: inset 0 -23px 0 rgba(255, 255, 255, 0.18);
}
.ft-built {
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  user-select: none;
}
.footer-since-num {
  font-family: "CB", monospace;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}
.ft-built:hover .footer-since-num {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bin-char {
  display: inline-block;
}

/* ============================================
   Responsive — About & page content
   ============================================ */

/* Tablet — tighten grids and padding */
@media screen and (max-width: 64rem) {
  .about-details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-story {
    max-width: 52rem;
  }
  /* Extras: collapse label column to inline */
  .ext-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ext-section-label {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }
}

/* Mobile — single column, compact padding */
@media screen and (max-width: 48rem) {
  body {
    font-size: 1.05em;
  }

  .page-hero {
    padding: 1.25rem 1.25rem 3rem;
    min-height: 100svh;
    justify-content: center;
  }
  .page-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Projects: number goes inline */
  .proj-list {
    padding: 0 1.25rem 4rem;
  }
  .proj-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2.5rem 0;
  }
  .proj-row-num {
    font-size: 2rem;
  }

  /* Extras: compact spacing */
  .ext-section {
    padding: 2.5rem 1.25rem;
  }
  .ext-section-label {
    padding-bottom: 0.75rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
  }
  .ext-section-num {
    font-size: 0.7rem;
  }
  .ext-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
  }
  .ext-list li {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
  }
  .por-row-date {
    margin-left: 0;
  }

  /* Footer: stack on mobile */
  .ft-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem;
  }
  .ft-connect {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.8;
  }
  .ft-connect a {
    margin-left: 0;
    margin-right: 0.6rem;
  }
  .ft-connect a:first-of-type {
    margin-left: 1.8rem;
  }

  .about-hero {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100svh;
    padding: 1.25rem 1.25rem 5rem;
  }
  .about-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }
  .about-hero p {
    font-size: 0.95rem;
  }
  .about-hero-links {
    font-size: 0.88rem;
  }
  .about-scroll-cue {
    right: 1.25rem;
    bottom: 1.5rem;
  }
  .about-details {
    width: calc(100% - 2.5rem);
    padding: 5rem 0 4rem;
  }
  .about-details-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .about-details-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.75rem);
  }
  .about-details-grid {
    gap: 2.5rem;
  }
  .about-bio {
    font-size: 1rem;
  }
  .about-section-title {
    font-size: 0.72rem;
  }
  .about-edu-item {
    padding: 1rem 1.25rem;
  }

  .about-hero-links {
    gap: 0.3rem 0.65rem;
  }
  .about-scroll-cue span:first-child {
    display: none;
  }
}

/* Small phones — extra compaction */
@media screen and (max-width: 30rem) {
  body {
    font-size: 0.95em;
  }

  .about-hero {
    padding-inline: 1rem;
  }
  .about-details {
    width: calc(100% - 2rem);
  }

  .about-hero-links {
    gap: 0.3rem 0.65rem;
  }
  .about-scroll-cue span:first-child {
    display: none;
  }
}
