/* web/local-access/reset.css */
*,
::before,
::after {
  box-sizing: border-box;
}
html,
body,
#root {
  min-height: 100%;
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* web/local-access/styles.css */
:root {
  color-scheme: dark;
  font-family:
    Inter,
    "Segoe UI",
    system-ui,
    sans-serif;
  background: #091114;
  color: #edf4ed;
}
.access-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(
      circle at 10% 0%,
      #1b4638 0,
      transparent 37%),
    radial-gradient(
      circle at 100% 100%,
      #15324c 0,
      transparent 42%),
    #091114;
}
.access-shell {
  width: min(100%, 620px);
  padding: clamp(24px, 7vw, 52px);
  border: 1px solid #486156;
  background: #102019e8;
  box-shadow: 0 24px 80px #0008;
  border-radius: 24px;
  display: grid;
  gap: 20px;
}
.access-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9cabd;
}
.access-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #d7f3c7;
  color: #102019;
  font-weight: 800;
}
.access-brand p {
  font-size: 12px;
  margin: 0;
}
.access-brand strong {
  font-size: 14px;
}
.eyebrow {
  color: #bce9a9;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
}
.access-shell h1 {
  font-size: clamp(29px, 7vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0;
}
.access-shell h2 {
  font-size: 18px;
  margin: 0;
}
.lead,
.intent-card p {
  color: #c9d7cd;
  line-height: 1.65;
  margin: 0;
}
.question {
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
}
.access-form {
  display: grid;
  gap: 17px;
}
.answer,
.inline-form input {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #74917c;
  background: #0a1510;
  color: #fff;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  font-size: 17px;
}
.answer-area {
  resize: vertical;
  min-height: 120px;
}
.primary,
.quiet,
.link-button {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 13px 17px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.primary,
.link-button {
  background: #d7f3c7;
  color: #102019;
}
.quiet {
  background: transparent;
  color: #d9eadb;
  border: 1px solid #74917c;
}
.access-shell :is(button, a, input, textarea):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.access-shell button:disabled {
  opacity: .55;
  cursor: wait;
}
.alert {
  padding: 13px;
  border-left: 3px solid #f4bd85;
  background: #38281d;
  color: #fff1e3;
}
.intent-card {
  border: 1px solid #496151;
  padding: 18px;
  border-radius: 15px;
  display: grid;
  gap: 9px;
}
.disabled-action {
  color: #d6e9d5;
  font-size: 14px;
}
.synthetic-list {
  margin: 0;
  padding-left: 20px;
  color: #d6e7d7;
  display: grid;
  gap: 9px;
}
.inline-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.inline-form input {
  min-width: 0;
  font-size: 15px;
  padding: 12px;
}
.synthetic {
  background: #14211a;
}
@media (max-width: 430px) {
  .access-page {
    padding: 12px;
    place-items: start;
  }
  .access-shell {
    border-radius: 18px;
    min-height: calc(100dvh - 24px);
  }
  .inline-form {
    align-items: stretch;
    flex-direction: column;
  }
  .inline-form button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.decoy-chat {
  display: grid;
  gap: 10px;
  border-top: 1px solid #29392f;
  padding-top: 18px;
}
.decoy-chat-log {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}
.decoy-message {
  margin: 0;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 88%;
}
.decoy-message.assistant {
  background: #16261e;
  color: #dcefdd;
  justify-self: start;
}
.decoy-message.user {
  background: #233a2c;
  color: #f2fbee;
  justify-self: end;
  text-align: right;
}
