.hero {
  position: relative;
  background-color: #ff4d26;
  color: #eee9e7;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
}
.hero__header {
  height: 4rem;
  color: #eee9e7;
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid #ede8e0;
  padding: 0 2rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .hero__header {
    height: 6rem;
  }
}
.hero__ascii-photo {
  position: absolute;
  bottom: 0px;
  left: -150px;
  margin: -100px;
  font-family: monospace;
  font-size: 4.5px;
  line-height: 1;
  letter-spacing: 0;
  white-space: pre;
  color: rgba(238, 233, 231, 0.5333333333);
  transform-origin: bottom left;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 414px) {
  .hero__ascii-photo {
    font-size: 5.25px;
  }
}
@media (min-width: 768px) {
  .hero__ascii-photo {
    font-size: 6px;
  }
}
@media (min-width: 1024px) {
  .hero__ascii-photo {
    font-size: 8px;
    left: -200px;
    bottom: -150px;
  }
}
.hero__logo {
  position: absolute;
  bottom: 10px;
  right: 0px;
  margin: 0px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 4.8rem;
}
@media (min-width: 414px) {
  .hero__logo {
    font-size: 5.2rem;
  }
}
@media (min-width: 768px) {
  .hero__logo {
    font-size: 6rem;
  }
}
@media (min-width: 1024px) {
  .hero__logo {
    font-size: 8rem;
  }
}
.hero__heading {
  text-transform: uppercase;
  font-weight: lighter;
  width: 60%;
  padding-top: 1rem;
  padding-left: 1.5rem;
}
@media (min-width: 414px) {
  .hero__heading {
    padding-top: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero__heading {
    margin-left: 4rem;
    margin-top: 4rem;
  }
}
.hero__paragraph {
  width: 75%;
  font-size: 0.8rem;
  padding-left: 1.5rem;
}
.hero__paragraph--highlight {
  font-style: italic;
  font-weight: bold;
  color: #1a1a1a;
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
}
@media (min-width: 414px) {
  .hero__paragraph {
    width: 55%;
    font-size: 1.2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .hero__paragraph {
    width: 40%;
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .hero__paragraph {
    width: 50%;
    padding-left: 2rem;
    margin-left: 4rem;
    margin-top: 2rem;
  }
}

.projects {
  min-height: 100dvh;
}
.projects__grid {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  min-height: 100dvh;
}
@media (min-width: 768px) {
  .projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.projects__expand-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: "Roboto Mono";
  font-size: 0.6rem;
  pointer-events: none;
  opacity: 0;
}
@media (min-width: 768px) {
  .projects__expand-hint {
    font-size: 0.8rem;
  }
}
.projects__item:hover .projects__expand-hint {
  opacity: 1;
  color: #1a1a1a;
}
.projects__item {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 100%;
  cursor: pointer;
  background-color: #1a1a1a;
  position: relative;
  padding: 0;
  border: 0.5px solid rgba(159, 159, 159, 0.12);
  --mx: 50%;
  --my: 50%;
  --dot-color: rgba(238, 233, 231, 0.5333333333);
  --dot-gap: 16px;
  --reveal: 250px;
  --reveal-near: 100px;
}
.projects__item::before, .projects__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.projects__item::before {
  background-image: radial-gradient(circle, var(--dot-color) 1px, transparent 1.5px);
  background-size: var(--dot-gap) var(--dot-gap);
  mask-image: radial-gradient(circle var(--reveal) at var(--mx) var(--my), #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle var(--reveal) at var(--mx) var(--my), #000 0%, transparent 100%);
}
.projects__item::after {
  background-image: radial-gradient(circle, var(--dot-color) 2.2px, transparent 2.7px);
  background-size: var(--dot-gap) var(--dot-gap);
  mask-image: radial-gradient(circle var(--reveal-near) at var(--mx) var(--my), #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle var(--reveal-near) at var(--mx) var(--my), #000 0%, transparent 100%);
}
.projects__item:hover::before, .projects__item:hover::after {
  opacity: 0.75;
}
.projects__item > div {
  position: relative;
  z-index: 1;
}
.projects__item:hover {
  background-color: #ff4d26;
}
.projects__item:hover .projects__title {
  color: #1a1a1a;
}
.projects__item:hover .projects__detail {
  color: #eee9e7;
}
.projects__item:hover .projects__expand-hint {
  color: #eee9e7;
}
.projects__title {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 0px;
  margin: 0px;
  transition: color 0.2s;
  font-size: 1.3rem;
  color: #ff4d26;
  font-weight: bold;
}
@media (min-width: 414px) {
  .projects__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .projects__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 3.5rem;
  }
}
.projects__description {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  padding-left: 1rem;
  font-size: 0.8rem;
  color: #eee9e7;
  width: 80%;
  margin-top: 12px;
  min-height: 80px;
}
@media (min-width: 414px) {
  .projects__description {
    width: 80%;
    font-size: 1.3rem;
    padding-top: 1rem;
    padding-left: 1rem;
    min-height: 130px;
  }
}
@media (min-width: 768px) {
  .projects__description {
    width: 80%;
    min-height: 90px;
    padding-left: 1.5rem;
  }
}
.projects__detail {
  padding-left: 1rem;
  font-size: 0.6rem;
  color: #eee9e7;
  width: 70%;
  font-weight: lighter;
}
@media (min-width: 414px) {
  .projects__detail {
    font-size: 0.9rem;
    padding-top: 1rem;
    padding-left: 1.5rem;
    color: #8a8782;
  }
}
@media (min-width: 768px) {
  .projects__detail {
    font-size: 1.2rem;
    padding-left: 1.5rem;
  }
}
.projects__tech {
  list-style-type: none;
}

.modal {
  height: 100dvh;
  width: 100%;
  margin: 0;
  padding: 2rem 2rem;
  max-width: none;
  max-height: none;
  border: 0.5px solid rgba(159, 159, 159, 0.12);
  background-color: #1a1a1a;
  color: #eee9e7;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .modal {
    max-width: 60rem;
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  .modal {
    width: min(90vw, 56rem);
    height: auto;
    max-height: 85dvh;
    margin: auto;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  }
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 32px;
  color: #eee9e7;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  cursor: pointer;
}
.modal__close:hover {
  color: #ff4d26;
  transition: color 0.2s;
}
.modal__title {
  text-transform: uppercase;
  color: #ff4d26;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
}
@media (min-width: 414px) {
  .modal__title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .modal__title {
    font-size: 5rem;
  }
}
.modal__tagline {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #8a8782;
  margin-top: 0.75rem;
}
@media (min-width: 414px) {
  .modal__tagline {
    font-size: 1rem;
  }
}
.modal__year {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6rem;
  color: #8a8782;
  margin-top: 0.25rem;
}
@media (min-width: 414px) {
  .modal__year {
    font-size: 0.9rem;
  }
}
.modal__text {
  max-width: 60ch;
  font-size: 0.75rem;
  line-height: 1.6;
  margin-top: 1.25rem;
}
@media (min-width: 414px) {
  .modal__text {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .modal__text {
    font-size: 1.25rem;
  }
}
.modal__spec {
  max-width: 60ch;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2rem;
}
.modal__spec dt {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #8a8782;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(238, 233, 231, 0.15);
}
@media (min-width: 414px) {
  .modal__spec dt {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .modal__spec dt {
    font-size: 1.25rem;
  }
}
.modal__spec dd {
  font-size: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(238, 233, 231, 0.15);
  overflow-wrap: anywhere;
}
.modal__spec dd a {
  color: #ff4d26;
  text-decoration: none;
}
.modal__spec dd a:hover {
  text-decoration: underline;
}
@media (min-width: 414px) {
  .modal__spec dd {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .modal__spec dd {
    font-size: 1.25rem;
  }
}

.about {
  height: 100dvh;
  width: 100%;
  margin: 0;
  padding: 2rem 2rem;
  max-width: none;
  max-height: none;
  border: none;
  background-color: #1a1a1a;
  color: #eee9e7;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.about__header {
  text-transform: uppercase;
  color: #ff4d26;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
}
@media (min-width: 414px) {
  .about__header {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .about__header {
    font-size: 5rem;
  }
}
@media (min-width: 1024px) {
  .about__header {
    padding: 0;
  }
}
.about__descriptions {
  max-width: 60ch;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2rem;
}
.about__descriptions dt {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #8a8782;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(238, 233, 231, 0.15);
}
@media (min-width: 414px) {
  .about__descriptions dt {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .about__descriptions dt {
    font-size: 1.25rem;
  }
}
.about__descriptions dd {
  font-size: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(238, 233, 231, 0.15);
  overflow-wrap: anywhere;
}
.about__descriptions dd a {
  color: #ff4d26;
  text-decoration: none;
}
.about__descriptions dd a:hover {
  text-decoration: underline;
}
@media (min-width: 414px) {
  .about__descriptions dd {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .about__descriptions dd {
    font-size: 1.25rem;
  }
}
.about__footer {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}
@media (min-width: 1024px) {
  .about__footer {
    flex-grow: 0;
  }
}
.about__links {
  max-width: 60ch;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2rem;
}
.about__links dt {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #8a8782;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(238, 233, 231, 0.15);
}
@media (min-width: 414px) {
  .about__links dt {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .about__links dt {
    font-size: 1.25rem;
  }
}
.about__links dd {
  font-size: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(238, 233, 231, 0.15);
  overflow-wrap: anywhere;
}
.about__links dd a {
  color: #ff4d26;
  text-decoration: none;
}
.about__links dd a:hover {
  text-decoration: underline;
}
@media (min-width: 414px) {
  .about__links dd {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .about__links dd {
    font-size: 1.25rem;
  }
}
.about__copyright {
  font-family: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #8a8782;
  text-align: center;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .about {
    align-items: center;
    justify-content: space-around;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-snap-type: y mandatory;
}

section {
  scroll-snap-align: start;
  min-height: 100dvh;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/*# sourceMappingURL=output.css.map */
