:root {
  --norb-ink: #101216;
  --norb-paper: #f7f5f0;
  --norb-yellow: #ffc928;
  --norb-emerald: #14884b;
  --norb-mist: #e9f4ed;
  --norb-muted: #aeb9b2;
  --norb-rule: rgba(247, 245, 240, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
.ask-norb-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(20, 136, 75, 0.22),
      transparent 31%
    ),
    var(--norb-ink);
  color: var(--norb-paper);
  font-family: Manrope, Arial, sans-serif;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 16px;
  padding: 12px 16px;
  background: var(--norb-yellow);
  color: #101216;
  font-weight: 850;
}
.skip-link:focus {
  top: 16px;
}
.ask-norb-site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--norb-rule);
  background: rgba(16, 18, 22, 0.93);
  backdrop-filter: blur(18px);
}
.ask-norb-brand img {
  display: block;
  width: 110px;
  height: auto;
}
.ask-norb-site-header nav,
.ask-norb-footer {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ask-norb-site-header a,
.ask-norb-footer a {
  color: #dce4df;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
}
.ask-norb-site-header a:hover,
.ask-norb-site-header a:focus-visible,
.ask-norb-footer a:hover,
.ask-norb-footer a:focus-visible {
  color: var(--norb-yellow);
}
.ask-norb-main {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 58px) 0 64px;
}
.ask-norb-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}
.ask-norb-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--norb-yellow);
  font:
    750 10px/1.3 "DM Mono",
    monospace;
  letter-spacing: 1.2px;
}
.ask-norb-eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--norb-yellow);
}
.ask-norb-intro h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(50px, 6.3vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}
.ask-norb-intro h1 em {
  color: var(--norb-yellow);
  font-style: normal;
}
.ask-norb-lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #c1cbc5;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
}
.ask-norb-boundary {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-top: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 201, 40, 0.28);
  border-radius: 14px;
  background: rgba(255, 201, 40, 0.055);
}
.ask-norb-boundary b {
  color: var(--norb-yellow);
  font:
    750 9px/1.3 "DM Mono",
    monospace;
  letter-spacing: 0.9px;
}
.ask-norb-boundary span {
  color: #bdc7c1;
  font-size: 12px;
  line-height: 1.6;
}
.ask-norb-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 136, 75, 0.44);
  border-radius: 220px 220px 28px 28px;
  background: radial-gradient(
    circle at 50% 43%,
    rgba(20, 136, 75, 0.33),
    rgba(8, 24, 18, 0.88) 58%,
    rgba(16, 18, 22, 0.95)
  );
}
.ask-norb-portrait .norb-living-float {
  position: relative;
  z-index: 2;
  width: min(70%, 275px);
}
.ask-norb-portrait img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.34));
}
.ask-norb-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 201, 40, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(20, 136, 75, 0.22);
}
.ask-norb-portrait figcaption {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 13px;
  border: 1px solid var(--norb-rule);
  border-radius: 11px;
  background: rgba(10, 13, 14, 0.92);
}
.ask-norb-portrait figcaption span {
  color: var(--norb-yellow);
  font:
    750 9px "DM Mono",
    monospace;
  letter-spacing: 0.8px;
}
.ask-norb-portrait figcaption b {
  font-size: 11px;
  text-align: right;
}
.ask-norb-conversation-shell {
  margin-top: clamp(30px, 4vw, 48px);
}
.ask-norb-footer {
  padding: 30px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--norb-rule);
  color: #87948c;
  font-size: 11px;
}
.ask-norb-footer span {
  margin-left: auto;
}

.norb-chat {
  overflow: hidden;
  border: 1px solid rgba(247, 245, 240, 0.17);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(24, 34, 30, 0.98),
    rgba(10, 13, 14, 0.99)
  );
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}
.norb-chat__header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--norb-rule);
}
.norb-chat__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(20, 136, 75, 0.18);
}
.norb-chat__avatar img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.norb-chat__identity {
  display: grid;
  gap: 2px;
}
.norb-chat__identity strong {
  font-size: 17px;
}
.norb-chat__identity span {
  color: var(--norb-muted);
  font-size: 11px;
}
.norb-chat__status {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--norb-muted);
  font: 600 12px/1.4 Manrope, Arial, sans-serif;
}
.norb-chat__close {
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  border: 1px solid var(--norb-rule);
  border-radius: 50%;
  background: transparent;
  color: var(--norb-paper);
  font-size: 24px;
  cursor: pointer;
}
.norb-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 180px;
  max-height: 410px;
  padding: 18px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.norb-chat__message {
  max-width: min(78%, 720px);
  padding: 12px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.58;
  white-space: pre-wrap;
}
.norb-chat__message--norb {
  align-self: flex-start;
  border: 1px solid rgba(233, 244, 237, 0.12);
  border-bottom-left-radius: 5px;
  background: rgba(233, 244, 237, 0.09);
  color: #edf2ef;
}
.norb-chat__message--user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: var(--norb-yellow);
  color: #101216;
  font-weight: 700;
}
.norb-chat__message--error {
  border-color: rgba(255, 201, 40, 0.35);
}
.norb-chat__retry {
  display: block;
  margin-top: 12px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--norb-rule);
  border-radius: 10px;
  background: #116c40;
  color: #fff;
  font: 750 14px/1.4 Manrope, Arial, sans-serif;
  cursor: pointer;
}
.norb-chat__retry:focus-visible, .norb-chat__send:focus-visible, .norb-chat__close:focus-visible {
  outline: 3px solid var(--norb-yellow);
  outline-offset: 3px;
}
.ask-norb-boundary a { color: var(--norb-paper); text-decoration: underline; text-underline-offset: 3px; }
.norb-chat__close { font-family: inherit; }
.norb-chat__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.norb-chat__sources a {
  padding: 6px 8px;
  border: 1px solid rgba(104, 223, 156, 0.28);
  border-radius: 6px;
  color: #85e7ad;
  font:
    700 9px "DM Mono",
    monospace;
  text-decoration: none;
}
.norb-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 18px 14px;
}
.norb-chat__quick button {
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 201, 40, 0.3);
  border-radius: 999px;
  background: rgba(255, 201, 40, 0.06);
  color: var(--norb-paper);
  font:
    750 11px Manrope,
    Arial,
    sans-serif;
  cursor: pointer;
}
.norb-chat__quick button:hover,
.norb-chat__quick button:focus-visible {
  border-color: var(--norb-yellow);
  background: rgba(255, 201, 40, 0.12);
}
.norb-chat__composer {
  padding: 13px 18px 12px;
  border-top: 1px solid var(--norb-rule);
  background: rgba(6, 9, 10, 0.56);
}
.norb-chat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.norb-chat__input {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(247, 245, 240, 0.19);
  border-radius: 12px;
  background: rgba(247, 245, 240, 0.07);
  color: var(--norb-paper);
  font:
    14px Manrope,
    Arial,
    sans-serif;
  outline: none;
}
.norb-chat__input:focus {
  border-color: var(--norb-yellow);
  box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.11);
}
.norb-chat__send {
  min-width: 106px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--norb-emerald);
  color: #fff;
  font: 850 14px Manrope, Arial, sans-serif;
  cursor: pointer;
}
.norb-chat__send:hover,
.norb-chat__send:focus-visible {
  background: #116c40;
}
.norb-chat__send:disabled {
  cursor: wait;
  opacity: 0.55;
}
.norb-chat__fine-print {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 7px 1px 0;
  color: #8f9c94;
  font-size: 10px;
  line-height: 1.45;
}
.norb-chat__fine-print a {
  color: #cfd8d2;
}

.ask-norb-launcher {
  position: fixed;
  z-index: 9990;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  min-height: 52px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(255, 201, 40, 0.38);
  border-radius: 999px;
  background: rgba(12, 16, 16, 0.96);
  color: var(--norb-paper);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.34);
  font:
    850 13px Manrope,
    Arial,
    sans-serif;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}
.ask-norb-launcher img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.ask-norb-launcher__label {
  display: grid;
  line-height: 1.08;
  text-align: left;
}
.ask-norb-launcher__label small {
  margin-bottom: 4px;
  color: #ffc928;
  font: 750 8px/1 "DM Mono", "Roboto Mono", monospace;
  letter-spacing: 0.09em;
}
.ask-norb-launcher__label strong {
  font: inherit;
}
.ask-norb-launcher:hover,
.ask-norb-launcher:focus-visible {
  border-color: rgba(32, 184, 114, 0.72);
  background: rgba(12, 25, 19, 0.98);
  color: #20b872;
  box-shadow:
    0 0 9px 2px rgba(32, 184, 114, 0.5),
    0 0 24px 7px rgba(32, 184, 114, 0.3),
    inset 0 0 12px rgba(32, 184, 114, 0.2),
    0 15px 45px rgba(0, 0, 0, 0.34);
  text-shadow:
    0 0 6px rgba(32, 184, 114, 0.98),
    0 0 15px rgba(32, 184, 114, 0.82),
    0 0 30px rgba(32, 184, 114, 0.62);
  transform: translateY(-2px);
}
.ask-norb-drawer[hidden] {
  display: none;
}
.ask-norb-drawer {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(2, 5, 5, 0.58);
  backdrop-filter: blur(8px);
}
.ask-norb-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100%;
  padding: 16px;
  overflow-y: auto;
  background: #0c1010;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.45);
}
.ask-norb-drawer .norb-chat {
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
}
.ask-norb-drawer .norb-chat__messages {
  flex: 1;
  max-height: none;
}
body.norb-drawer-open {
  overflow: hidden;
}

.ask-norb-invite {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  width: min(1280px, calc(100% - 44px));
  margin: clamp(42px, 6vw, 82px) auto;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(20, 136, 75, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 50%, rgba(20, 136, 75, 0.2), transparent 24%),
    linear-gradient(120deg, rgba(10, 16, 14, 0.98), rgba(18, 26, 22, 0.96));
  color: var(--norb-paper);
}
.ask-norb-invite__portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
}
.ask-norb-invite__portrait span {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 201, 40, 0.34);
  border-radius: 50%;
}
.ask-norb-invite__portrait img {
  position: relative;
  width: 98px;
  height: 98px;
  object-fit: contain;
  animation: norb-float 5s ease-in-out infinite;
}
.ask-norb-invite__copy > p {
  margin: 0 0 8px !important;
  color: var(--norb-yellow) !important;
  font:
    750 9px/1.3 "DM Mono",
    monospace !important;
  letter-spacing: 1px;
}
.ask-norb-invite__copy h2 {
  margin: 0;
  color: var(--norb-paper);
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.ask-norb-invite__copy > span {
  display: block;
  max-width: 690px;
  margin-top: 12px;
  color: #b8c4bd;
  font-size: 14px;
  line-height: 1.6;
}
.ask-norb-invite__actions {
  display: grid;
  justify-items: stretch;
  gap: 10px;
  min-width: 170px;
}
.ask-norb-invite__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  background: var(--norb-emerald);
  color: #fff;
  font:
    850 13px Manrope,
    Arial,
    sans-serif;
  cursor: pointer;
}
.ask-norb-invite__actions button:hover,
.ask-norb-invite__actions button:focus-visible {
  background: #19a45c;
}
.ask-norb-invite__actions a {
  color: #d9e2dc;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}
.ask-norb-invite__actions a:hover,
.ask-norb-invite__actions a:focus-visible {
  color: var(--norb-yellow);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes norb-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 820px) {
  .ask-norb-site-header {
    min-height: 68px;
  }
  .ask-norb-site-header nav {
    gap: 13px;
  }
  .ask-norb-site-header nav a {
    font-size: 11px;
  }
  .ask-norb-main {
    width: min(100% - 30px, 1240px);
    padding-top: 34px;
  }
  .ask-norb-intro {
    grid-template-columns: 1fr;
  }
  .ask-norb-portrait {
    width: min(460px, 100%);
    min-height: 310px;
    margin: 0 auto;
  }
  .ask-norb-footer {
    flex-wrap: wrap;
  }
  .ask-norb-footer span {
    width: 100%;
    margin-left: 0;
  }
  .ask-norb-invite {
    grid-template-columns: 86px 1fr;
  }
  .ask-norb-invite__portrait {
    width: 86px;
    height: 86px;
  }
  .ask-norb-invite__portrait img {
    width: 72px;
    height: 72px;
  }
  .ask-norb-invite__actions {
    grid-column: 1 / -1;
    grid-template-columns: minmax(150px, 220px) 1fr;
    align-items: center;
  }
}
@media (max-width: 520px) {
  .ask-norb-site-header {
    align-items: flex-start;
  }
  .ask-norb-brand img {
    width: 94px;
  }
  .ask-norb-site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 220px;
  }
  .ask-norb-intro h1 {
    font-size: 50px;
  }
  .ask-norb-lead {
    font-size: 16px;
  }
  .ask-norb-portrait {
    min-height: 280px;
  }
  .ask-norb-portrait figcaption {
    display: grid;
  }
  .ask-norb-portrait figcaption b {
    text-align: left;
  }
  .norb-chat {
    border-radius: 20px;
  }
  .norb-chat__messages {
    min-height: 220px;
    padding: 18px;
  }
  .norb-chat__message {
    max-width: 91%;
  }
  .norb-chat__quick {
    padding: 0 18px 18px;
  }
  .norb-chat__form {
    grid-template-columns: 1fr;
  }
  .norb-chat__send {
    width: 100%;
  }
  .norb-chat__fine-print {
    display: grid;
  }
  .ask-norb-launcher {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-width: 0;
  }
  .ask-norb-launcher__label small {
    display: none;
  }
  .ask-norb-drawer__panel {
    padding: 0;
  }
  .ask-norb-drawer .norb-chat {
    min-height: 100%;
    border: 0;
    border-radius: 0;
  }
  .ask-norb-invite {
    grid-template-columns: 66px 1fr;
    width: min(100% - 28px, 1280px);
    padding: 20px 17px;
    border-radius: 18px;
  }
  .ask-norb-invite__portrait {
    width: 66px;
    height: 66px;
  }
  .ask-norb-invite__portrait img {
    width: 57px;
    height: 57px;
  }
  .ask-norb-invite__actions {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html,
  .norb-chat__messages {
    scroll-behavior: auto;
  }
  .ask-norb-portrait img {
    animation: none;
  }
  .ask-norb-launcher:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .ask-norb-launcher,
  .norb-chat,
  .norb-chat__input,
  .norb-chat__quick button {
    border: 1px solid CanvasText;
  }
}

/* Human experience iteration 2: help has its own space on small screens. */
.ask-norb-help{display:contents}.ask-norb-help__human{display:none}
@media(max-width:700px){
 .ask-norb-help{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:8px 24px;border-bottom:1px solid #3c4942;background:#101216;position:relative;z-index:1}
 .ask-norb-help .ask-norb-launcher{position:static!important;inset:auto!important;transform:none!important;margin:0!important;min-height:44px;padding:6px 10px;box-shadow:none;flex:0 1 auto}
 .ask-norb-help .ask-norb-launcher img{width:25px;height:28px;object-fit:contain}
 .ask-norb-help .ask-norb-launcher__label small{display:none}
 .ask-norb-help .ask-norb-launcher__label strong{font-size:13px}
 .ask-norb-help__human{display:inline-flex;align-items:center;min-height:44px;color:#f7f5f0;font:600 13px/1.4 Manrope,Arial,sans-serif;text-decoration:underline;text-underline-offset:4px}
 .ask-norb-help__human:focus-visible{outline:3px solid #ffc928;outline-offset:3px}
}
