:root {
  /* palette handed over by Lime 2026-07-19 (from his other Claude session) */
  --ink: rgb(253, 251, 248);            /* warm white text */
  --ink-soft: rgba(253, 251, 248, 0.85);
  --ink-mid: rgba(253, 251, 248, 0.6);
  --ink-dim: rgba(253, 251, 248, 0.55);
  --surface: #0b0a09;                   /* warm near-black bg */
  --sheet: #131211;                     /* floating sheet */
  --panel: #1b1a18;                     /* panels */
  --ghost: #1a1918;                     /* queued ghost card */
  --ring: rgba(255, 255, 255, 0.07);    /* hairline borders */
  --coral: #d97757;                     /* brand accent */
  --amber: #ffb454;                     /* "needs you" moments only */

  /* roundness tokens — Lime will supply reference radii; swap here only */
  --r-input: 10px;
  --r-btn: 12px;
  --r-card: 14px;
  --r-panel: 18px;
}

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

body {
  background: var(--surface);
  color: var(--ink);
  /* Inter until Lime hands over the final font */
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- auth form column (layout lives in auth.css) ---------- */

.form-col { width: 100%; max-width: 405px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 28px;
}
.back-link:hover { color: var(--ink); }
.back-link svg { width: 13px; height: 13px; }

h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.subtitle {
  color: var(--ink-dim);
  font-size: 15px;
  margin-bottom: 36px;
}

label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 9px;
}

input {
  width: 100%;
  background: var(--sheet);
  border: 1px solid var(--ring);
  border-radius: var(--r-input);
  color: var(--ink);
  font-size: 14.5px;
  font-family: inherit;
  padding: 14px 16px;
  margin-bottom: 24px;
  outline: none;
}
input::placeholder { color: rgba(253, 251, 248, 0.35); }
input:focus { border-color: rgba(253, 251, 248, 0.25); }

/* Chrome autofill paints inputs pale blue — force the dark theme back */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--sheet) inset;
  caret-color: var(--ink);
  transition: background-color 9999s ease-in-out 0s;
}

.password-wrap { position: relative; margin-bottom: 24px; }
.password-wrap input { padding-right: 46px; margin-bottom: 0; }
.eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(253, 251, 248, 0.45);
  cursor: pointer;
  padding: 2px;
  display: flex;
}
.eye svg { width: 19px; height: 19px; display: block; }
.eye:hover { color: var(--ink); }

.cta {
  width: 100%;
  background: var(--coral);
  color: var(--surface);
  border: none;
  border-radius: var(--r-btn);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  padding: 15px;
  margin-top: 4px;
  cursor: pointer;
}
.cta:hover { filter: brightness(1.06); }
.cta:active { transform: scale(0.995); }

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--ink-dim);
  font-size: 13px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ring);
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sheet);
  border: 1px solid var(--ring);
  border-radius: var(--r-btn);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  font-family: inherit;
  padding: 14px;
  cursor: pointer;
}
.google-btn:hover { background: var(--panel); }

.signin-line {
  text-align: center;
  color: var(--ink-dim);
  font-size: 14px;
  margin-top: 26px;
}
.signin-line a { color: var(--coral); text-decoration: none; }
.signin-line a:hover { text-decoration: underline; }

.logo-mark {
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sheet);
  border: 1px solid var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}
.logo-mark--img {
  background: none;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.logo-mark--img img { width: 100%; height: 100%; display: block; }

/* the old cloned-reference art panel + fake testimonials were deleted when the
   auth pages were redesigned into the site language (auth.css owns layout now) */
