/* Tenth — dot-grid paper, floating tiles, one yellow. */

:root {
  --paper: #FFFFFF;
  --dot: rgba(16, 29, 51, 0.10);
  --ink: #101D33;
  --ink-soft: #55606F;
  --sun: #FFE100;
  --deep: #D69E00;
  --hairline: rgba(16, 29, 51, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(var(--dot) 1.1px, transparent 1.1px);
  background-size: 26px 26px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- The stage ---------- */

.stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.centre { text-align: center; max-width: 640px; position: relative; z-index: 2; }

/* Letter dots — T E N T H */
.letters { display: flex; justify-content: center; gap: 6px; margin-bottom: 40px; }
.dot {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-family: "Wittgenstein", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  opacity: 0;
  animation: pop 0.5s cubic-bezier(0.3, 1.4, 0.5, 1) forwards;
}
.da { background: #FFF3B0; animation-delay: 0.05s; }
.db { background: #FFD9E1; animation-delay: 0.13s; }
.dc { background: #DDEFC8; animation-delay: 0.21s; }
.dd { background: #E7E1FB; animation-delay: 0.29s; }
.de { background: #FFE3C2; animation-delay: 0.37s; }
@keyframes pop { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }

h1 {
  font-family: "Wittgenstein", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.lede {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.soon {
  display: inline-block;
  font-family: "Wittgenstein", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  background: var(--sun);
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(214, 158, 0, 0.30);
  margin-bottom: 18px;
}
.mail {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}
.mail:hover { color: var(--ink); text-decoration: underline; }

.down {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 20px;
  animation: nudge 2.4s ease-in-out infinite;
}
@keyframes nudge { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* Floating tiles */
.tilefield { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.fl {
  position: absolute;
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 15px;
  font-family: "Wittgenstein", Georgia, serif;
  font-size: 24px;
  box-shadow: 0 10px 26px rgba(16, 29, 51, 0.16);
  animation: bob 6s ease-in-out infinite alternate;
}
.t10   { top: 22%; left: 16%; background: var(--sun); color: var(--ink); transform: rotate(-7deg); }
.ttick { top: 30%; right: 14%; background: #101D33; color: #fff; transform: rotate(5deg); animation-delay: 1.2s; }
.theart{ bottom: 24%; left: 22%; background: #7C2D2D; color: #FFD9E1; transform: rotate(4deg); animation-delay: 2.1s; font-size: 20px; }
.tga   { bottom: 18%; right: 20%; background: #4A5D23; color: #EAF3C8; transform: rotate(-4deg); animation-delay: 0.6s; font-size: 15px; font-style: italic; }
@keyframes bob {
  from { translate: 0 -7px; }
  to   { translate: 0 7px; }
}

/* ---------- Below the fold ---------- */

.more {
  max-width: 620px;
  margin: 0 auto;
  padding: 88px 24px 40px;
}
.more h2 {
  font-family: "Wittgenstein", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 40px;
}
.fact {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 26px 28px;
  margin-bottom: 16px;
}
.fact h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.fact p { color: var(--ink-soft); font-size: 15.5px; }
.fact a { color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */

footer {
  max-width: 620px;
  margin: 0 auto;
  padding: 24px 24px 72px;
  text-align: center;
}
footer p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; margin-bottom: 10px; }
footer a { color: var(--ink-soft); }
.foot-links { font-weight: 500; }

/* ---------- Motion & small screens ---------- */

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; opacity: 1; }
  .fl, .down { animation: none; }
}

@media (max-width: 720px) {
  .fl { width: 52px; height: 52px; font-size: 19px; }
  .t10   { top: 12%; left: 8%; }
  .ttick { top: 16%; right: 8%; }
  .theart{ bottom: 10%; left: 10%; }
  .tga   { bottom: 8%; right: 10%; }
}

/* ---------- Privacy page ---------- */

.nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mark { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.tile {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--sun);
  font-family: "Wittgenstein", Georgia, serif;
  font-size: 19px; color: var(--ink);
}
.wordmark { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.navlink { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.navlink:hover { color: var(--ink); }

.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  background: var(--paper);
}
.prose h1 { font-size: 36px; margin-bottom: 24px; }
.prose h2 { font-size: 19px; font-weight: 600; margin: 28px 0 8px; font-family: inherit; }
.prose p, .prose li { color: var(--ink-soft); font-size: 16px; margin-bottom: 12px; }
.prose ul { padding-left: 20px; }
.foot-inner { max-width: 680px; margin: 0 auto; padding: 0 24px 64px; }
.foot-inner p { color: var(--ink-soft); font-size: 13px; }
