/* Design Park BD — staff sign in. Same editorial language as the public site. */
:root {
  --deep: #052f34;
  --teal: #0b656b;
  --yellow: #ffd100;
  --ink: #0e1214;
  --body: #55636a;
  --faint: #8a969c;
  --hair: #dfe4e5;
  --paper: #f6f7f6;
}
* { box-sizing: border-box; }
body {
  margin: 0; color: var(--body); background: #fff;
  font-family: "Inter", "Helvetica Neue", Helvetica, "Segoe UI", ui-sans-serif, system-ui, Arial, sans-serif;
  font-size: 16px; line-height: 1.6; letter-spacing: -.004em; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
::selection { background: var(--yellow); color: var(--ink); }

.signin { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); min-height: 100vh; }

/* ── form side ────────────────────────────────────────────────────────── */
.panel { display: flex; flex-direction: column; padding: 26px clamp(24px, 5vw, 66px) 24px; }
.back { color: var(--faint); font-size: 13px; font-weight: 550; text-decoration: none; align-self: flex-start; padding: 6px 0; }
.back:hover { color: var(--teal); }
.panel-in { margin: auto 0; width: 100%; max-width: 400px; padding: 34px 0; }

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 40px; }
.logo-mark { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text strong { display: block; color: var(--ink); font-size: 15.5px; font-weight: 800; letter-spacing: .04em; line-height: 1.1; }
.logo-text small { display: block; color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .16em; margin-top: 3px; }

h1 { color: var(--ink); font-size: clamp(26px, 3vw, 34px); font-weight: 780; letter-spacing: -.045em; line-height: 1.1; margin: 0 0 12px; }
.lede { color: var(--faint); font-size: 14.5px; margin: 0 0 34px; }

.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { color: var(--faint); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
input[type="text"], input[type="password"] {
  width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--hair); border-radius: 2px;
  background: #fff; color: var(--ink); font-size: 16px; transition: border-color .16s ease, box-shadow .16s ease;
}
input[type="text"]:focus, input[type="password"]:focus {
  border-color: var(--teal); box-shadow: inset 0 0 0 1px var(--teal); outline: none;
}
.password-wrap { position: relative; }
.password-wrap input { padding-right: 78px; }
.peek {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--hair); border-radius: 2px; color: var(--teal);
  font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; padding: 8px 11px; cursor: pointer;
}
.peek:hover { background: var(--paper); border-color: var(--teal); }

.remember { display: flex; align-items: center; gap: 11px; font-size: 14px; color: #46545a; cursor: pointer; margin: 6px 0 26px; }
.remember input { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }

.error {
  background: #fdf1f1; border-left: 3px solid #c33d47; color: #93313a;
  font-size: 14px; font-weight: 550; margin: 0 0 18px; padding: 12px 14px;
}
.error[hidden] { display: none; }

.submit {
  width: 100%; min-height: 54px; border: 0; border-radius: 2px; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.submit:hover:not(:disabled) { background: var(--teal); transform: translateY(-2px); }
.submit:disabled { opacity: .6; cursor: progress; }

.hint { border-top: 1px solid var(--hair); color: var(--faint); font-size: 13px; margin: 28px 0 0; padding: 16px 0 0; }
.hint b { color: var(--ink); font-weight: 750; }

.panel-foot { display: flex; justify-content: space-between; gap: 14px; color: var(--faint); font-size: 12px; letter-spacing: .04em; padding-top: 16px; border-top: 1px solid var(--hair); }
.panel-foot a { color: var(--faint); text-decoration: none; }
.panel-foot a:hover { color: var(--teal); }

/* ── showcase side ────────────────────────────────────────────────────── */
.showcase {
  position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden;
  background: radial-gradient(880px 460px at 78% 0%, #0b656b, transparent 62%), linear-gradient(158deg, #052f34, #084249 60%, #0b656b 140%);
  color: #a9c4c5; padding: 60px clamp(30px, 4.5vw, 64px) 0;
}
.showcase::after {
  content: ""; position: absolute; right: -130px; top: -110px; width: 450px; height: 450px;
  border: 38px solid rgba(255, 209, 0, .09); border-radius: 50%;
}
.showcase-in { position: relative; margin-top: auto; }
.kicker { display: flex; align-items: center; gap: 12px; color: var(--yellow); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 22px; }
.kicker i { width: 28px; height: 2px; background: var(--yellow); display: block; }
.showcase h2 { color: #fff; font-size: clamp(30px, 3.5vw, 44px); font-weight: 800; letter-spacing: -.05em; line-height: 1.06; margin: 0 0 34px; }
.showcase h2 span { color: var(--yellow); }
.showcase-points { list-style: none; margin: 0 0 48px; padding: 0; display: grid; max-width: 420px; }
.showcase-points li { border-left: 2px solid var(--yellow); padding: 14px 18px; font-size: 13.5px; line-height: 1.55; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.showcase-points li:last-child { border-bottom: 0; }
.showcase-points b { display: block; color: #fff; font-size: 14.5px; font-weight: 750; letter-spacing: -.01em; margin-bottom: 2px; }
.showcase-strip { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin: 0 clamp(-64px, -4.5vw, -30px); }
.showcase-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; opacity: .8; }

@media (max-width: 940px) {
  .signin { grid-template-columns: 1fr; }
  .showcase { order: -1; padding: 40px 26px 0; }
  .showcase-in { margin-top: 0; }
  .showcase h2 { font-size: 30px; margin-bottom: 24px; }
  .showcase-points { margin-bottom: 34px; }
  .showcase-strip { margin: 0 -26px; }
  .showcase-strip img { aspect-ratio: 1.7; }
  .panel-in { max-width: none; padding: 28px 0 34px; }
}
@media (max-width: 560px) {
  .panel { padding: 18px 20px 20px; }
  .showcase { padding: 32px 20px 0; }
  .showcase-points li:nth-child(n+3) { display: none; }
  .showcase-strip { margin: 0 -20px; }
}
