/* ── LOCAL FONT FALLBACKS ────────────────────────────── */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi/WEB/fonts/Satoshi-Variable.woff2') format('woff2'),
       url('fonts/Satoshi/WEB/fonts/Satoshi-Variable.woff') format('woff');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DM_Mono/DMMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── THEME ───────────────────────────────────────────── */
:root {
  --bg:     #f5f2ee;
  --text:   #1a1a1a;
  --accent: #2961F6;
  --sub:    rgba(26,26,26,0.4);
  --border: rgba(26,26,26,0.12);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  --font-sans: 'Satoshi', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --w-scale:    0.75;
  --w-tracking: 0.04em;
  --w-weight:   800;
  --w-lh:       1.2;
  --h-scale:    0.95;
  --h-tracking: -0.02em;
  --h-weight:   450;
  --h-lh:       1.15;
  --s-scale:    1.2;
  --s-tracking: -0.01em;
  --s-weight:   400;
  --s-lh:       1.5;
  --list-scale:   0.9;
  --list-weight:  500;
  --label-scale:  1;
  --label-weight: 500;
  --copy-weight:  300;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  cursor: none;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ── CURSOR ─────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.18s, width 0.22s, height 0.22s;
}
#cursor.on-link {
  width: 36px; height: 36px;
  background: #ffffff;
  mix-blend-mode: difference;
}

/* ── PAGE ───────────────────────────────────────────── */
.page {
  padding: 0 40px 32px;
}

/* ── HERO GRID ──────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 80px;
  align-items: start;
  margin-bottom: 80px;
}

.hero-left { padding-top: 0.1em; }

.wordmark {
  font-size: calc(0.85rem * var(--w-scale));
  font-weight: var(--w-weight);
  letter-spacing: var(--w-tracking);
  line-height: var(--w-lh);
  text-transform: uppercase;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-primary {
  font-size: calc(clamp(1.5rem, 2.4vw, 2.3rem) * var(--h-scale));
  font-weight: var(--h-weight);
  line-height: var(--h-lh);
  letter-spacing: var(--h-tracking);
}

.hero-list {
  font-size: calc(clamp(1.5rem, 2.4vw, 2.3rem) * var(--h-scale));
  font-weight: var(--h-weight);
  line-height: var(--h-lh);
  letter-spacing: var(--h-tracking);
}

.hero-secondary {
  font-size: calc(clamp(1.5rem, 2.4vw, 2.3rem) * var(--h-scale));
  font-weight: var(--h-weight);
  line-height: var(--h-lh);
  letter-spacing: var(--h-tracking);
}

/* ── LISTS ──────────────────────────────────────────── */
.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 120px;
  align-items: start;
}

.list-label {
  font-family: var(--font-mono);
  font-size: calc(0.58rem * var(--label-scale));
  font-weight: var(--label-weight);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

hr.div {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1px;
}

.li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.n {
  font-family: var(--font-mono);
  font-size: calc(0.57rem * var(--label-scale));
  color: var(--accent);
  min-width: 16px;
  flex-shrink: 0;
  transition: opacity 0.12s;
}

.t {
  font-size: calc(0.85rem * var(--list-scale));
  font-weight: var(--list-weight);
  flex: 1;
  transition: opacity 0.12s;
}

.s {
  font-family: var(--font-mono);
  font-size: calc(0.7rem * var(--label-scale));
  color: var(--accent);
  flex-shrink: 0;
}

div.li .t,
div.li .s { color: var(--sub); }

a.li:hover .t,
a.li:hover .n,
a.li:hover .s { opacity: 0.6; }

/* used in mock B + C */
.hero-arrival {
  color: var(--sub);
}

.hero-attribution {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.hero-attribution a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ── ABOUT ──────────────────────────────────────────── */
.about {
  margin-top: 80px;
}

.about p {
  font-size: calc(1.05rem * var(--s-scale));
  font-weight: var(--s-weight);
  line-height: var(--s-lh);
  letter-spacing: var(--s-tracking);
  color: var(--sub);
}

.about a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

footer span,
footer a {
  font-family: var(--font-mono);
  font-size: calc(0.58rem * var(--label-scale));
  font-weight: var(--copy-weight);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
}

footer a { transition: opacity 0.12s; }
footer a:hover { opacity: 0.6; }

/* ── MOBILE ─────────────────────────────────────────── */
@media (pointer: coarse) {
  #cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 680px) {
  .page { padding: 28px 28px 120px; }
  .wordmark { top: 28px !important; left: 28px !important; }
  .hero-attribution { font-size: 0.95rem !important; }
  .list-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .about { margin-top: 48px; }
  footer {
    left: 0 !important;
    right: 0 !important;
    padding: 0 28px !important;
    bottom: 28px !important;
  }
  .spin-badge { width: 80px; height: 80px; right: 28px !important; top: 28px !important; }
}
