<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/************************************/
/* HEADER */
/************************************/
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;

  height: 7rem;
  padding: 0 4.8rem;

  font-size: 1.6rem;
  background-color: #e1e1e1;
}

.ghost-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 4px;
}

.main-nav {
  display: flex;
  gap: 4.8rem;
  justify-content: center;
  align-items: center;

  list-style: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4.8rem;
  justify-content: center;
  align-items: center;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;

  color: #9f9f9f;
  font-size: 1.4rem;
  font-family: "SF Mono Regular", monospace;
  text-decoration: none;

  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #ff4800;
}

/* Sticky navigation */
.sticky .page-header {
  position: fixed;
  top: 0;

  width: 100%;
  height: 7rem;
  z-index: 999;

  background-color: rgba(33, 33, 33, 0.85);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.sticky .section-hero {
  margin-top: 8rem;
}

/* Mobile navigation */
.btn-mobile-nav {
  display: none;

  padding: 0;
  z-index: 200;

  background: none;
  box-shadow: none;
}

.btn-mobile-nav:hover {
  background: none;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/************************************/
/* HERO */
/************************************/
.section-hero {
  background-color: #e1e1e1;
}

.hero {
  grid-template-columns: 2fr 1fr;
  align-items: center;
  column-gap: 2rem !important;

  height: calc(100vh - 7rem);
}

.hero-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
}

.hero-text-box h1 {
  color: #000;
  margin-bottom: 0.5rem;
}

.hero-text-box h2 {
  color: #5f5f5f;
  margin-bottom: 2rem;
}

.hero-description {
  color: #5f5f5f;
  font-size: 1.6rem;
  line-height: 2.5rem;
  max-width: 48rem;
  margin-bottom: 3.5rem;
}

.hero-cta {
  display: flex !important;
  align-items: center;
  gap: 1rem;

  color: #5f5f5f !important;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.6rem;
  font-weight: 600;

  transition: all 0.3s;
}

.hero-cta::before {
  content: "";
  display: block;
  background-color: #5f5f5f;
  width: 5rem;
  height: 1px;

  transition: all 0.5s;
}

.hero-cta:hover {
  color: #ff4800 !important;
  gap: 0.5rem;
}

.hero-cta:hover::before {
  width: 3rem;
}

.hero-graphic-box {
  width: 100%;
  position: relative;
  justify-self: center;
}

.hero-img-iso-grid {
  width: 100%;

  transition: all 1s;
}

.hero-globe {
  position: absolute;
  top: 25%;
  left: 25%;

  vertical-align: middle;
  width: 50%;
  z-index: 500;

  transition: all 1.5s;
}

.hero-globe:hover {
  scale: 1.8;
  transform: rotate(540deg);
}

.hero-globe:hover + .hero-img-iso-grid {
  transform: scale(0.7);
}

.hero-globe:not(:hover) {
  scale: 1;
  transform: rotate(-540deg);
  transition: all 0.75s;
}

.hero-globe:not(:hover) + .hero-img-iso-grid {
  scale: 1;
  transition: all 0.5s;
}

/************************************/
/* ABOUT ME */
/************************************/
.section-about-me {
  background-color: #212121;
}

.section-about-me h2 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;

  margin-bottom: 5rem;
}

.section-about-me h2::before {
  content: "//01.";
  display: block;

  color: #ff4800;
  font-family: "SF Mono Regular", monospace;
  letter-spacing: -2px;
  font-size: 3rem;
}

.section-about-me h2::after {
  content: "";
  align-self: center;
  display: inline-block;

  width: 30rem;
  height: 1px;
  margin-left: 2rem;

  background-color: #5f5f5f;
}

.about-me {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-me-text-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;

  font-size: 1.6rem;
  line-height: 2.5rem;
}

.tech-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  color: #9f9f9f;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.4rem;
  list-style: none;
}

.tech-list li::before {
  content: "â–¹";
  margin-right: 1rem;
  color: #ff4800;
}

.about-me-image-box {
  position: relative;
  max-width: 30rem;
  max-height: 30rem;
  z-index: 50;
}

.about-me-image-box::before {
  content: "";
  display: inline-block;
  position: absolute;

  width: 100%;
  height: 100%;
  border: 2px solid #ff4800;
  border-radius: 4px;

  top: 2rem;
  left: -2rem;
  z-index: -1;

  transition: all 0.3s;
}

.about-me-image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;

  background-color: #ff4800;
  border-radius: 4px;
  mix-blend-mode: screen;
  opacity: 1;
  transition: all 0.3s;
}

.about-me-image-box:hover::before {
  top: 1rem;
  left: -1rem;
}

.about-me-image-box:hover::after {
  opacity: 0;
}

.profile-pic {
  display: inline-block;

  max-width: 30rem;
  max-height: 30rem;
  border-radius: 4px;
}

/************************************/
/* EXPERIENCE */
/************************************/
.section-experience {
  background-color: #212121;
}

.section-experience h2 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.section-experience h2::before {
  content: "//02.";
  color: #ff4800;
  font-family: "SF Mono Regular", monospace;
  letter-spacing: -2px;
  font-size: 3rem;
}

.section-experience h2::after {
  content: "";
  align-self: center;
  display: inline-block;

  width: 30rem;
  height: 1px;
  margin-left: 2rem;

  background-color: #5f5f5f;
}

.experience {
  padding: 0 2rem;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
}

.timeline::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -2rem;
  top: 4px;

  width: 1px;
  height: 96%;
  margin-top: 1rem;

  background-color: #5f5f5f;
}

.experience-box {
  position: relative;
}

.experience-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -3rem;

  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.6rem;

  background-color: #e1e1e1;
  border: 2px solid #5f5f5f;
  border-radius: 50%;
}

.experience-box header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.experience-box h3 {
  margin-bottom: 0;
}

.experience-location {
  color: #ff4800;
}

.experience-range {
  align-self: center;

  color: #9f9f9f;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.2rem;
}

.experience-points {
  list-style: none;
  font-size: 1.6rem;
}

.experience-point {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

.experience-point::before {
  content: "â–¹";
  position: absolute;
  left: 0;

  color: #ff4800;
}

/************************************/
/* PROJECTS (FEATURED) */
/************************************/
.section-featured-projects {
  background-color: #212121;
}

.section-featured-projects h2 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 10rem;
}

.section-featured-projects h2::before {
  content: "//03.";
  color: #ff4800;
  font-family: "SF Mono Regular", monospace;
  letter-spacing: -2px;
  font-size: 3rem;
}

.section-featured-projects h2::after {
  align-self: center;
  content: "";
  display: inline-block;
  width: 30rem;
  height: 1px;
  background-color: #5f5f5f;
  margin-left: 2rem;
}

.featured-projects {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.featured-project-left,
.featured-project-right {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  align-items: center;
}

.featured-project-left .featured-text-box {
  grid-column: 1/9;
  grid-row: 1;

  text-align: left;
  background-color: rgba(255, 255, 255, 0);
}

.featured-project-left .featured-image-box {
  grid-column: 7/-1;
  grid-row: 1;

  min-height: 100%;

  box-shadow: 0 1rem 3rem -1.5rem rgba(0, 0, 0, 0.5);
}

.featured-project-right .featured-text-box {
  grid-column: 6/-1;
  grid-row: 1;
  text-align: right;
  background-color: rgba(255, 255, 255, 0);
}

.featured-project-right .featured-image-box {
  grid-column: 1/8;
  grid-row: 1;

  min-height: 100%;

  box-shadow: 0 1rem 3rem -1.5rem rgba(0, 0, 0, 0.5);
}

.featured-project-right .tech-stack {
  justify-content: flex-end;
}

.featured-image-box {
  position: relative;
  z-index: 0;
  max-width: 70rem;
}

.featured-image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;

  background-color: #ff4800;
  border-radius: 5px;
  mix-blend-mode: screen;
  opacity: 1;
  transition: all 0.3s;
}

.featured-image-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  max-width: none;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;

  filter: grayscale(100) contrast(1) brightness(50%);
  transition: all 0.3s;
}

.featured-image-box:hover img {
  filter: none;
}

.featured-image-box:hover::after {
  opacity: 0;
}

.featured-project-right .featured-image-box img {
  margin-left: auto;
}

.featured-text-box {
  z-index: 100;
  font-size: 1.6rem;
}

.featured-label {
  display: inline-block;

  padding: 1rem;
  margin-bottom: 0.8rem;

  color: #e1e1e1;
  background-color: #ff4800;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.2rem;
}

.project-name {
  margin-bottom: 2rem;
}

.featured-description-box {
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  z-index: 200;

  color: #9f9f9f;
  background-color: #333134;
  box-shadow: 0 1rem 3rem -1.5rem rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;

  margin-bottom: 1rem;
  line-height: 1.3;

  color: #9f9f9f;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.3rem;
  list-style: none;
}

.tech-stack li {
  margin: 0px 20px 5px 0px;
}

.featured-project-right .tech-stack li {
  margin: 0px 0px 5px 20px;
}

.featured-project-right .featured-external-links {
  justify-content: flex-end;
}

.featured-external-links {
  display: flex;
  gap: 2rem;
}

.featured-external-links ion-icon {
  color: #9f9f9f !important;
  transition: all 0.3s;
}

.featured-external-links ion-icon:hover {
  color: #ff4800 !important;
}

/************************************/
/* PROJECTS (ARCHIVE) */
/************************************/
.section-other-projects {
  background-color: #212121;
}

.section-other-projects h2 {
  text-align: center;
}

.project-nav {
  display: none;
  margin-bottom: 5rem;
}

.project-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;

  padding: 0 10rem;
  list-style: none;
}

.btn--filter {
  padding: 1rem 2rem;
  border-radius: 8px;

  color: #5f5f5f;
  background-color: transparent;
  box-shadow: none;
  font-size: 1.4rem;
}

.btn--filter:hover {
  background-color: #333134;
  color: #e1e1e1;
  cursor: pointer;
}

.active-filter {
  color: #ff4800;
  background-color: #333134;
  cursor: default !important;
}

.active-filter:hover {
  color: #ff4800;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;

  list-style: none;
}

.project {
  color: #9f9f9f;
  background-color: #333134;
  border-radius: 8px;
  box-shadow: 0 1rem 3rem -1.5rem rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  overflow: hidden;
}

.project:hover {
  transform: translateY(-1rem);
}

.project:hover .project-name {
  color: #ff4800;
}

.project-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 3rem;
}

.project-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 3rem;
}

.archive-external-links {
  display: flex;
  gap: 2rem;
}

.project-container .project-name {
  margin-bottom: 1rem;
  transition: all 0.15s;
}

.project-container .project-description {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.tech-stack--archive {
  align-self: flex-end;

  margin-bottom: 0;

  font-family: "SF Mono Regular", monospace;
  font-size: 1.2rem;
}

.tech-stack--archive li {
  padding: 0 0;
  font-size: 1.2rem;

  background-color: transparent;
  color: #5f5f5f;
}

/************************************/
/* CONTACT ME */
/************************************/
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.1rem rgba(253, 242, 233, 0.5);
}

.section-contact-me h2 {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.section-contact-me h2::before {
  content: "//04.";
  display: block;

  color: #ff4800;
  font-family: "SF Mono Regular", monospace;
  letter-spacing: -2px;
  font-size: 3rem;
}

.cta-text {
  margin-bottom: -1rem;

  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
}

.contact-email {
  visibility: hidden;
}

.link-email {
  color: #ff4800 !important;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5rem;
  column-gap: 2rem;
}

.cta-form label {
  display: block;

  margin-bottom: 1rem;

  color: #ff4800;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.4rem;
}

.cta-form input,
textarea {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 2px;

  font-family: inherit;
  font-size: 1.6rem;
  background-color: #333134;
  color: #e1e1e1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 -2px 0 0 rgba(16, 16, 16, 0.2);
}

.cta-form .form-field-email,
.form-field-message {
  grid-column: 1/-1;
}

.cta-form .form-field-message {
  grid-row: 3;
}

.cta-form input::placeholder,
textarea::placeholder {
  color: #5f5f5f;
}

.btn--cta {
  grid-column: 1/-1;

  padding: 1.2rem 2.4rem;
  margin: 0 auto;

  background-color: #ff4800;
}

/************************************/
/* FOOTER */
/************************************/
.side-bar-left {
  position: fixed;
  bottom: 0;
  left: 2rem;
}

.side-bar-left ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

  list-style: none;
}

.side-bar-left ul::after {
  content: "";
  display: block;

  margin: 0 auto;
  background-color: #333134;
  width: 1px;
  height: 10rem;
}

.side-bar-left a:link ion-icon,
a:visited ion-icon {
  transition: all 0.3s;
}

.side-bar-left a:hover ion-icon,
a:active ion-icon {
  color: #ff4800;
  transform: translateY(-0.4rem);
}

.side-bar-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;

  position: fixed;
  bottom: 0;
  right: 2rem;
}

.side-bar-right::after {
  content: "";
  width: 1px;
  height: 10rem;
  background-color: #333134;
}

.side-bar-right a:link,
a:visited {
  color: #5f5f5f;
  font-family: "SF Mono Regular", monospace;
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  text-decoration: none;

  transition: all 0.3s;
}

.side-bar-right a:hover,
a:active {
  color: #ff4800;
  transform: translateY(-0.4rem);
}

.credits {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: #5f5f5f;
  padding: 3rem 0;
}

.credits-contact {
  visibility: hidden;

  display: flex;
  justify-content: center;
  gap: 2.4rem;

  margin-bottom: 0.8rem;
}
</pre></body></html>