@font-face {
  font-family: "InterLocal";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Inter-Regular.woff2?ease") format("woff2");
}

@font-face {
  font-family: "InterLocal";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/Inter-Medium.woff2?ease") format("woff2");
}

@font-face {
  font-family: "InterLocal";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/Inter-ExtraBold.woff2?ease") format("woff2");
}

@font-face {
  font-family: "InterLocal";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/Inter-Black.woff2?ease") format("woff2");
}

:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.55);
  --accent: #ff2bd6;
  --accent-trace: #ffb000;
  --maxw: 1100px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "InterLocal", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  min-height: 100%;
  padding: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
}

.top {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.week,
.trace-link,
.next {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--muted);
  white-space: nowrap;
}

.hero {
  flex: 1;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(16px, 3vh, 28px);
}

.line {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(44px, 7.2vw, 112px);
  color: var(--accent);
}

.line-2 {
  font-weight: 800;
  font-size: clamp(36px, 6.2vw, 92px);
  letter-spacing: -0.015em;
}

.trace .line {
  color: var(--accent-trace);
}

.trace .line-2 {
  font-weight: 700;
}

.foot {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

@media (max-width: 520px) {
  .line {
    line-height: 1.15;
  }
}

::selection {
  background: rgba(0, 0, 0, 0.08);
}
