@font-face {
  font-family: "SuisseIntl";
  src: url("./Fonttypes/SuisseIntl-Medium.otf") format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: "SuisseIntl";
  src: url("./Fonttypes/SuisseIntl-Regular%20(1).otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "SuisseIntl";
  src: url("./Fonttypes/SuisseIntl-Light%20(1).otf") format("opentype");
  font-weight: 300;
}

@font-face {
  font-family: "Oxanium";
  src: url("./Fonttypes/Oxanium-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
}

:root {
  --bg: #101112;
  --panel: #18181a;
  --text: #fff8f0;
  --muted: #8a8785;
  --dim: #272628;
  --accent: #3300ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: "SuisseIntl", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-nav {
  padding: 32px 0 0;
}

.hero,
.link-section,
.foot-inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 24px;
}

.nav-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--dim);
}

.wordmark {
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-label,
.nav-clock,
.kicker,
.section-heading {
  font-family: "Oxanium", monospace;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-clock {
  color: var(--muted);
  font-size: 11px;
}

.nav-clock {
  flex-shrink: 0;
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 34px;
  height: 28px;
  flex-shrink: 0;
}

.share-button {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--dim);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.share-button:hover,
.share-button:focus-visible {
  border-color: var(--muted);
  background: var(--panel);
  outline: none;
}

.share-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-feedback {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  color: var(--muted);
  font-family: "Oxanium", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-family: "Oxanium", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  outline: none;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}

.has-dropdown > a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(45deg) translateY(-1px);
  transition: border-color 0.18s, transform 0.18s;
}

.has-dropdown.open > a::after {
  border-color: var(--text);
  transform: rotate(-135deg) translateY(1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 148px;
  border: 1px solid var(--dim);
  border-radius: 2px;
  background: #18181a;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-family: "SuisseIntl", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  border: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--muted);
  transition: background 0.2s;
}

.nav-menu-btn:hover span {
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 110px 32px 0;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.5s;
}

.mobile-menu.open {
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.mobile-menu-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
}

.mobile-menu-close {
  padding: 4px;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  line-height: 0;
  transition: color 0.18s;
}

.mobile-menu-close:hover {
  color: var(--text);
}

.mobile-menu > a,
.mobile-menu-legal summary {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-family: "Oxanium", monospace;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.18s;
}

.mobile-menu > a:hover,
.mobile-menu-legal summary:hover,
.mobile-menu-legal[open] summary {
  opacity: 1;
}

.mobile-menu-legal {
  width: 100%;
}

.mobile-menu-legal summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.mobile-menu-legal summary::-webkit-details-marker {
  display: none;
}

.legal-chevron {
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-legal[open] .legal-chevron {
  transform: rotate(180deg);
}

.legal-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-content-inner {
  overflow: hidden;
}

.mobile-menu-legal[open] .legal-content {
  grid-template-rows: 1fr;
}

.mobile-menu .sub-link {
  display: block;
  padding: 7px 0 7px 2px;
  color: var(--text);
  font-family: "Oxanium", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.18s;
}

.mobile-menu .sub-link:hover {
  opacity: 1;
}

.mobile-menu-cta {
  position: absolute;
  right: 32px;
  bottom: 40px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 12px 22px;
  border: 0;
  border-radius: 2px;
  font-family: "Oxanium", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-fill {
  background: var(--accent);
  color: var(--text);
}

.btn-fill:hover {
  background: #2200cc;
}

.btn-outline {
  border: 1px solid var(--dim);
  background: transparent;
  color: var(--muted);
}

.btn-outline:hover {
  border-color: var(--muted);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

.hero {
  padding-top: 80px;
  padding-bottom: 72px;
}

.hero--compact {
  padding-top: 64px;
  padding-bottom: 56px;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 1024 / 577;
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: 3px;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 50% 15%;
  transform: scale(1.4);
}

.hero-image[hidden] {
  display: none;
}

.hero-intro {
  max-width: 600px;
  margin: 0;
  color: var(--text);
  font-family: "SuisseIntl", "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(22px, 3.8vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.featured-event {
  margin-top: 42px;
}

.featured-event[hidden] {
  display: none;
}

.featured-event-skeleton {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background: #151617;
}

.skeleton-image {
  aspect-ratio: 1;
  border-radius: 3px;
}

.skeleton-copy {
  display: flex;
  flex-direction: column;
  padding: 20px 64px 20px 26px;
}

.skeleton-line {
  border-radius: 3px;
}

.skeleton-line--label {
  width: 42%;
  height: 11px;
  margin-bottom: 14px;
}

.skeleton-line--title {
  width: 82%;
  height: 26px;
  margin-bottom: 8px;
}

.skeleton-line--title-2 {
  width: 58%;
}

.skeleton-line--cta {
  width: 92px;
  height: 26px;
  margin-top: 14px;
}

.skeleton-image,
.skeleton-line {
  background: linear-gradient(100deg, #1c1d1f 30%, #26282a 50%, #1c1d1f 70%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-image,
  .skeleton-line {
    animation: none;
  }
}

.featured-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background: #151617;
  color: var(--text);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.featured-event-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 3px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.featured-event-overlay {
  display: none;
}

.featured-event-card:not(:has(.featured-event-image)) {
  grid-template-columns: 1fr;
  min-height: 140px;
}

.featured-event-copy {
  min-width: 0;
  padding: 20px 64px 20px 26px;
}

.featured-event-copy small {
  display: block;
}

.featured-event-copy small {
  margin-bottom: 10px;
  font-family: "Oxanium", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-event-copy strong {
  display: block;
  font-size: clamp(24px, 3.8vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.featured-event-cta {
  display: inline-flex;
  width: max-content;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid #343638;
  border-radius: 3px;
  font-family: "Oxanium", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.featured-event-cta:hover,
.featured-event-card:focus-visible .featured-event-cta {
  border-color: var(--muted);
  background: #1d1e20;
}

.featured-event-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  transition: transform 180ms ease;
}

.featured-event-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-event-image:hover,
.featured-event-card:focus-visible .featured-event-image {
  transform: scale(1.025);
}

.featured-event-card:hover .featured-event-arrow,
.featured-event-card:focus-visible .featured-event-arrow {
  transform: translate(3px, -3px);
}

.featured-event-card:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.038em;
  font-weight: 500;
}

.intro {
  max-width: 410px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
}

.link-section {
  padding-bottom: 88px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  margin: 0;
  font: inherit;
}

.link-list {
  border-top: 1px solid var(--dim);
}

.link-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 94px;
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--dim);
  text-decoration: none;
  transition: background-color 180ms ease, padding 180ms ease;
}

.link-item:hover,
.link-item:focus-visible {
  padding-left: 20px;
  background: var(--panel);
  outline: none;
}

.link-copy {
  display: block;
}

.link-copy strong {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.link-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.arrow,
.link-logo {
  margin-left: 28px;
  color: var(--muted);
  font-family: "Oxanium", sans-serif;
  font-size: 17px;
  transition: transform 180ms ease, color 180ms ease;
}

.link-logo {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.link-logo svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-item:hover .arrow,
.link-item:focus-visible .arrow,
.link-item:hover .link-logo,
.link-item:focus-visible .link-logo {
  transform: translate(3px, -3px);
  color: var(--text);
}

footer {
  border-top: 1px solid var(--dim);
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}

.foot-copy {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.foot-links {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-links a {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.foot-links a:hover,
.foot-links a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 560px) {
  .site-nav {
    padding-top: 20px;
  }

  .share-button {
    flex-shrink: 0;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .hero--compact {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .featured-event {
    margin-top: 32px;
  }

  .featured-event-card {
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
    align-items: start;
    padding: 14px;
  }

  .featured-event-skeleton {
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
    align-items: start;
    padding: 14px;
  }

  .skeleton-copy {
    padding: 5px 40px 9px 20px;
  }

  .skeleton-line--label {
    height: 9px;
    margin-bottom: 10px;
  }

  .skeleton-line--title {
    height: 18px;
  }

  .featured-event-copy {
    align-self: start;
    padding: 5px 40px 9px 20px;
  }

  .featured-event-copy small {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .featured-event-copy strong {
    font-size: clamp(16px, 4.7vw, 20px);
    line-height: 1.12;
  }

  .featured-event-cta {
    margin-top: 12px;
    padding: 7px 9px;
    font-size: 8px;
  }

  .featured-event-arrow {
    top: 19px;
    right: 19px;
  }

  .featured-event-arrow svg {
    width: 19px;
    height: 19px;
  }

  .link-section {
    padding-bottom: 64px;
  }

  .link-item {
    grid-template-columns: 1fr auto;
    min-height: 86px;
    padding-right: 14px;
  }

  .link-item:hover,
  .link-item:focus-visible {
    padding-left: 14px;
  }

  .arrow,
  .link-logo {
    margin-left: 12px;
  }

  .foot-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .foot-links {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
