@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  font-family: 'Playfair Display', 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  color: #0a0a0a;
  line-height: 1.75;
  background: #fff;
  --ink: #050505;
  --soft-ink: #2f2f2f;
  --muted: #6a6a6a;
  --paper: #ffffff;
  --rule: #050505;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(0, 0, 0, 0.04) 24px);
  font-family: 'IM Fell English', 'Playfair Display', 'Times New Roman', serif;
  color: var(--ink);
}

.site-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px double var(--rule);
}

.site-nav .brand a {
  text-decoration: none;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant: small-caps;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover {
  text-decoration: underline double;
}

.hub {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--rule);
}

.hub-hero {
  background: var(--paper);
  padding: 3rem 2.5rem;
  border: 2px solid var(--rule);
  border-top: 6px double var(--rule);
  border-bottom: 6px double var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.hub-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lede {
  margin-top: 0;
  margin-bottom: 1.4rem;
  color: var(--soft-ink);
  font-size: 1.1rem;
  text-align: justify;
  text-indent: 1.75rem;
}

.lede::first-letter {
  font-size: 3.2rem;
  float: left;
  line-height: 0.9;
  padding-right: 0.3rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  text-transform: uppercase;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 2px solid var(--rule);
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  font-variant: small-caps;
  letter-spacing: 0.1em;
}

.cta.primary {
  background: var(--ink);
  color: #fff;
}

.hero-card {
  background: var(--paper);
  padding: 1.5rem 1.75rem;
  border: 2px solid var(--rule);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-card h2 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-card ol {
  padding-left: 1.35rem;
  font-family: 'IM Fell English', 'Times New Roman', serif;
}

.hero-card li {
  margin-bottom: 0.5rem;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.module-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.module-card {
  background: var(--paper);
  border: 2px solid var(--rule);
  border-top: 6px double var(--rule);
  padding: 1.75rem;
  position: relative;
}

.module-card ul {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
}

.label {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.label.live {
  background: var(--ink);
}

.label.soon {
  background: var(--soft-ink);
}

.cta-link {
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline double;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.how-it-works {
  margin-top: 3rem;
  background: var(--paper);
  padding: 1.75rem;
  border: 2px solid var(--rule);
}

.how-it-works ol {
  padding-left: 1.3rem;
}

@media (max-width: 640px) {
  .hub {
    padding: 1.5rem 1rem 2.5rem;
  }
  .hub-hero {
    padding: 1.75rem;
    border-top: 4px double var(--rule);
    border-bottom: 4px double var(--rule);
  }
}
