@font-face {
  font-family: "Lausanne";
  src: url("/fonts/TWKLausanne-300.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lausanne";
  src: url("/fonts/TWKLausanne-400.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lausanne";
  src: url("/fonts/TWKLausanne-500.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  min-height: 100%;
  background: #fff;
}
html::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60vh;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(100, 200, 255, 0.3) 0%, transparent 70%);
  mask-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
    linear-gradient(to top, black, black);
  mask-composite: intersect;
  -webkit-mask-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
    linear-gradient(to top, black, black);
  -webkit-mask-composite: source-in;
}
body {
  font-family: "Lausanne", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
}
header {
  margin-bottom: 64px;
}
h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
.subtitle {
  color: #666;
}
section {
  margin-bottom: 48px;
}
h2 {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  margin-left: 86px;
}
.entry {
  margin-bottom: 24px;
}
.entry-header {
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
}
.year {
  color: #aaa;
  width: 70px;
  flex-shrink: 0;
  text-align: right;
}
.title {
  font-weight: 500;
  position: relative;
}
.title a {
  color: inherit;
  text-decoration: none;
}
.title .favicon {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 6px;
  border-radius: 3px;
}
.preview-card {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 8px;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.title a:hover + .preview-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.preview-card {
  pointer-events: none;
}
.preview-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.preview-card .preview-info {
  padding: 12px;
}
.preview-card .preview-url {
  font-size: 12px;
  color: #999;
  word-break: break-word;
}
.role {
  color: #aaa;
  font-weight: 400;
}
.separator {
  color: #aaa;
  margin: 0 4px;
}
.description {
  color: #666;
  margin-left: 86px;
  margin-top: 4px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.contact-icon {
  width: 70px;
  flex-shrink: 0;
  margin-top: 3px;
  text-align: right;
}
.contact-icon svg {
  width: 16px;
  height: 16px;
  color: #aaa;
}
.contact-icon svg.x-icon {
  width: 15px;
  height: 15px;
}
.contact-icon svg.map-icon {
  width: 18px;
  height: 18px;
}
.contact-item a,
.contact-item span {
  color: #1a1a1a;
  text-decoration: none;
}
.contact-item .address {
  color: #666;
}
.contact-link {
  position: relative;
}
.contact-link a:hover + .preview-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.email-preview {
  background: linear-gradient(180deg, #1e90ff 0%, #00bfff 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.email-preview svg {
  width: 48px;
  height: 48px;
  color: white;
}
