/* styles/base.css — app header + input area
   Part of the former single style.css, split by source order so the cascade is
   unchanged (loaded in sequence: tokens→base→landing→auth→portfolio→research→pages). */
/* ---------- Header ---------- */
.masthead {
  text-align: center;
  margin-bottom: 64px;
}

.enso {
  width: 66px;
  height: 66px;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 24px;
}

.title {
  font-size: 40px;
  font-weight: 300;          /* light and airy */
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.subtitle {
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- Input area ---------- */
.inputzone {
  margin-bottom: 48px;
}
/* Once an account is loaded the inputzone is emptied — collapse its reserved
   space so the card sits up near the navbar instead of below an empty band. */
.inputzone--collapsed { margin-bottom: 0; }

.inputzone__label {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.inputzone__box {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; /* monospace suits raw data */
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inputzone__box::placeholder { color: #b7b6ae; }

/* A gentle ring when the box is active, instead of a harsh outline */
.inputzone__box:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78, 97, 87, 0.15);
}

.inputzone {
  text-align: center;
}

/* A small, quiet status line under the button */
.status {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* A text button that looks like a link (used for "Forget") */
.linkbtn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}

/* A minimalist text button */
.btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;       /* fully rounded pill */
  color: var(--ink-soft);
  font-size: 14px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* The primary call-to-action: a calm filled sage pill (used on the welcome page).
   It's an <a> styled as a button, so a few resets keep it looking like one. */
.btn--primary {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  padding: 12px 28px;
  font-size: 15px;
}
.btn--primary:hover {
  background: var(--accent-strong);          /* a touch darker on hover */
  border-color: var(--accent-strong);
  color: var(--on-accent);
}

