@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

:root {
  --page-top: 20px;
  --page-side: 40px;
  --page-bottom: 20px;
  --page-top-mobile: 18px;
  --page-side-mobile: 18px;
  --header-offset: 56px;
  --header-offset-mobile: 46px;
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

html,
body {
  cursor: auto !important;
}

a,
button,
input,
textarea,
select,
summary,
label,
[role="button"] {
  cursor: pointer !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.2s ease, height 0.2s ease;
  will-change: transform, width, height;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: invert(1);
  backdrop-filter: invert(1);
}

.custom-cursor.is-hovering {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 749px) {
  .footer-center {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  .email-hide-mobile {
    display: none !important;
  }
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: "Geist", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
min-height: 100svh;
  padding: var(--page-top) var(--page-side) var(--page-bottom) var(--page-side);
  padding-top: var(--header-offset);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: fixed;
  top: var(--page-top);
  left: var(--page-side);
  right: var(--page-side);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 0 0 auto;
  z-index: 1000;
  mix-blend-mode: difference;
}

.logo,
.clock,
.footer,
.footer a {
  font-size: calc(0.00569620253164557 * 100vw + 19px) !important;
  line-height: 1.2;
  font-weight: normal;
  text-decoration: none;
}

.logo,
.clock {
  color: #ffffff;
}

.footer,
.footer a {
  color: #000000;
}

.main-content {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.main-content h1 {
  margin: 0;
  max-width: 1600px;
  font-size: clamp(34px, 2.5vh + 2.3vw, 72px) !important;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0em;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 0 0 auto;
}

.footer-left {
  white-space: nowrap !important;
}

.footer-center {
  text-align: center;
}

.footer-right {
  white-space: nowrap !important;
}

.footer a:hover {
  text-decoration: none;
}

@media screen and (max-width: 640px) {
  .page {
    padding: var(--page-top-mobile) var(--page-side-mobile) var(--page-top-mobile) var(--page-side-mobile);
    padding-top: var(--header-offset-mobile);
  }

  .topbar {
    top: var(--page-top-mobile);
    left: var(--page-side-mobile);
    right: var(--page-side-mobile);
  }

  .main-content h1 {
    max-width: 100%;
  }

  .footer-center {
    display: none;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.9s ease forwards;
  animation-delay: 0.15s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}


