/* ============================================================
 * movebook.tech — the umbrella brand site. Ink + movebook cyan,
 * dark-locked. Accent mirrors the app tokens (--mb-accent in
 * ../movebook app/assets/css/styles.css); change there first.
 * Static on purpose, like its siblings: no build step, no JS.
 * ============================================================ */

@font-face { font-family: 'Space Mono'; font-weight: 400; font-display: swap; src: url('/fonts/SpaceMono-400.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-weight: 700; font-display: swap; src: url('/fonts/SpaceMono-700.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-weight: 600; font-display: swap; src: url('/fonts/SpaceGrotesk-600.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-weight: 700; font-display: swap; src: url('/fonts/SpaceGrotesk-700.woff2') format('woff2'); }
@font-face { font-family: 'Hanken Grotesk'; font-weight: 400; font-display: swap; src: url('/fonts/HankenGrotesk-400.woff2') format('woff2'); }
@font-face { font-family: 'Hanken Grotesk'; font-weight: 600; font-display: swap; src: url('/fonts/HankenGrotesk-600.woff2') format('woff2'); }

:root {
  --bg:     #071013;   /* movebook deep-teal ink */
  --text:   #eef4f5;   /* movebook paper */
  --dim:    #93a4a7;
  --faint:  #5f6e71;
  --line:   #223033;
  --accent:       #36dcec;   /* movebook cyan, mirrors --mb-accent (dark) */
  --accent-press: #6ee8f4;
  --accent-soft:  #0d2b30;
  --mono:    'Space Mono', ui-monospace, monospace;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;
}

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

html { color-scheme: dark; }

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(60% 42% at 50% 108%, rgba(54, 220, 236, 0.10), transparent 70%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding: 28px 24px 40px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 100%;
  max-width: 560px;
}

/* ── Logo lockup ─────────────────────────────────────────── */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.logo .word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 31px;
  letter-spacing: -0.02em;
}
.logo .word em { font-style: normal; color: var(--accent); }

/* ── Type ────────────────────────────────────────────────── */

.kicker {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  text-wrap: balance;
  line-height: 1.6;
}
h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 7vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.sub { color: var(--dim); font-size: 17px; line-height: 1.55; max-width: 44ch; }

/* Longer-form mission prose reads better ragged-left. */
.prose {
  text-align: left;
  display: grid;
  gap: 14px;
  color: var(--dim);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 54ch;
}
.prose strong { color: var(--text); font-weight: 600; }

.fine {
  font-size: 13px;
  line-height: 1.5;
  color: var(--dim);
  max-width: 400px;
}

/* ── Sections ────────────────────────────────────────────── */

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

/* ── Value cards (label stacked over body) ───────────────── */

.vals {
  display: grid;
  gap: 10px;
  width: 100%;
  list-style: none;
  text-align: left;
}
.vals li {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
}
.vals .k {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.vals .v { color: var(--dim); font-size: 14.5px; line-height: 1.5; }

/* ── App family cards ────────────────────────────────────── */

.apps {
  display: grid;
  gap: 10px;
  width: 100%;
  list-style: none;
  text-align: left;
}
.apps a, .apps .app {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.12s ease;
}
.apps a:hover { border-color: var(--accent-soft); }
.apps .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.apps .name .dom {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-left: 8px;
}
/* Each app keeps its own accent so the family reads as a family. */
.apps .name.hang  { color: #e4322b; }
.apps .name.quiet { color: #8b5cf6; }
.apps .name.tilt  { color: #8b9cf7; }  /* tiltcheck indigo 275, dark ramp */
.apps .name.mb    { color: var(--accent); }
.apps .v { color: var(--dim); font-size: 14.5px; line-height: 1.5; }
.apps .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--faint);
}

/* ── Footer ──────────────────────────────────────────────── */

footer {
  margin-top: 34px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--faint);
}
footer a { color: var(--dim); text-decoration: none; }
footer a:hover { color: var(--text); }

/* ── Staggered load reveal ───────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--d, 0) * 120ms);
}
@keyframes reveal { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}
