/* Namoosa — tokens lifted from the app's theme so the site and the app agree. */
:root {
  --bg: #0e1d1c;
  --surface: #16302e;
  --line: #27423f;
  --text: #e4edeb;
  --text-dim: #c6d6d3;
  --muted: #93a9a6;
  --faint: #6e8582;
  --amber: #e0a21a;
  --dusk: #3e6f68;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dim);
  font-family:
    "IBM Plex Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

header.site {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

header.site a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

.wordmark {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--text);
  text-transform: uppercase;
}

h1 {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
  text-wrap: balance;
}

h2 {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  margin: 2.5rem 0 0.6rem;
}

h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 1.8rem 0 0.4rem;
}

p,
li {
  margin: 0 0 0.9rem;
}

ul {
  padding-left: 1.1rem;
}

li::marker {
  color: var(--dusk);
}

a {
  color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lede {
  font-size: 1.1rem;
  color: var(--text-dim);
}

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.9rem;
}

.meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--faint);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 0.9rem;
}

.steps li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.8rem;
  margin: 0;
}

.steps .n {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--amber);
  padding-top: 0.22rem;
}

.disclaimer {
  border-left: 2px solid var(--dusk);
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  margin: 2rem 0;
}

footer.site {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  align-items: baseline;
  font-size: 0.9rem;
}

footer.site .meta {
  margin-left: auto;
}

@media (max-width: 30rem) {
  footer.site .meta {
    margin-left: 0;
    width: 100%;
  }
}

/* ---- landing ---- */
.wrap.wide {
  max-width: 56rem;
  padding-top: 2rem;
}

.hero {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 2.5rem;
}

.center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}

/* Not links yet: no listing exists, and a dead link is worse than a label. */
.store {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  cursor: default;
}

.store-mark {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--faint);
}

.store-text {
  display: grid;
  line-height: 1.25;
}

.store-small {
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--faint);
}

.store-big {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.page-link {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  text-decoration: none;
}

.page-link:hover {
  border-color: var(--amber);
}

.page-title {
  font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--amber);
}

.page-sub {
  font-size: 0.92rem;
  color: var(--muted);
}
