@charset "UTF-8";
/**
 * Nonfunctional Turf Assistant — page styles (standalone export)
 *
 * Scoped under `.nft-*` so the assistant can be lifted into any site shell
 * without colliding with global selectors. Ported verbatim from the VoyageAI
 * build output (wwwroot/css/page/nonfunctionalturf/nonfunctionalturf.css).
 */
/* ----- Page-shell stand-in ------------------------------------------------ */
.nft-body {
  margin: 0;
  background: #f3f3f2;
  min-height: 100vh;
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a; }

.nft-page {
  max-width: 75rem;
  margin: 0 auto;
  padding: 1rem 3.125rem 0;
  min-height: calc(100vh - 4rem); }

@media (max-width: 40rem) {
  .nft-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem; } }

/* ----- Assistant container ------------------------------------------------ */
.nft-assistant {
  /* Local design tokens */
  --nft-bg: #f3f3f2;
  --nft-surface: #fff;
  --nft-border: #cfd3d8;
  --nft-text: #1a1a1a;
  --nft-text-muted: #6b6b6b;
  --nft-text-meta: #8a8a88;
  --nft-primary: #46678e;
  --nft-primary-dark: #385272;
  --nft-accent: #038178;
  --nft-accent-dark: #047168;
  --nft-radius-bubble: 1.25rem;
  --nft-radius-card: 1rem;
  --nft-radius-pill: 50rem;
  --nft-shadow-card: 0 2px 6px rgba(0, 0, 0, 0.06);
  --nft-shadow-bubble: 0 1px 2px rgba(0, 0, 0, 0.04);
  --nft-shadow-input: 0 4px 14px rgba(0, 0, 0, 0.08);
  --nft-avatar-size: 2.25rem;
  position: relative;
  background: var(--nft-bg);
  color: var(--nft-text); }

/* ----- Header ------------------------------------------------------------- */
.nft-assistant__header {
  padding: 2rem 0 1rem;
  max-width: 60rem; }

.nft-assistant__title {
  font-size: 2.375rem;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--nft-text); }

@media (min-width: 48rem) {
  .nft-assistant__title {
    font-size: 3rem; } }

.nft-assistant__subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--nft-text);
  max-inline-size: 42rem;
  margin: 0; }

/* ----- Conversation thread ------------------------------------------------ */
.nft-thread {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.5rem 0 9rem;
  max-width: 70rem;
  list-style: none;
  margin: 0; }

.nft-message {
  display: grid;
  grid-template-columns: var(--nft-avatar-size) 1fr;
  gap: 0.75rem;
  align-items: start; }

.nft-message--user {
  grid-template-columns: 1fr var(--nft-avatar-size);
  justify-items: end; }

.nft-message__avatar {
  width: var(--nft-avatar-size);
  height: var(--nft-avatar-size);
  border-radius: 50%;
  background: var(--nft-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none; }

.nft-message__avatar svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block; }

.nft-message--user .nft-message__avatar {
  grid-column: 2;
  grid-row: 1; }

.nft-message__body {
  min-width: 0; }

.nft-message__body--past {
  color: #5a5a5a; }

.nft-message--user .nft-message__body {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end; }

.nft-message__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nft-text-meta);
  margin: 0.5rem 0 0.5rem 0.25rem; }

.nft-message--user .nft-message__role {
  margin: 0.5rem 0.25rem 0.5rem 0; }

/* ----- Bubbles & cards ---------------------------------------------------- */
.nft-bubble {
  display: inline-block;
  max-width: 36rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.875rem 1.25rem;
  background: var(--nft-surface);
  color: var(--nft-text);
  border: 1px solid var(--nft-border);
  border-radius: 0.375rem var(--nft-radius-bubble) var(--nft-radius-bubble) var(--nft-radius-bubble);
  font-size: 1.0625rem;
  line-height: 1.5;
  box-shadow: var(--nft-shadow-bubble);
  word-wrap: break-word; }

.nft-bubble p {
  margin: 0 0 0.75rem; }

.nft-bubble p:last-child {
  margin-bottom: 0; }

.nft-bubble ul,
.nft-bubble ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem; }

.nft-bubble strong {
  font-weight: 700; }

.nft-bubble--user {
  background: var(--nft-primary);
  color: #fff;
  border-color: var(--nft-primary);
  font-weight: 400;
  border-radius: var(--nft-radius-bubble) 0.375rem var(--nft-radius-bubble) var(--nft-radius-bubble); }

.nft-card {
  background: var(--nft-surface);
  border: 1px solid var(--nft-border);
  border-radius: 0.375rem var(--nft-radius-card) var(--nft-radius-card) var(--nft-radius-card);
  padding: 1.5rem;
  box-shadow: var(--nft-shadow-card);
  max-width: 44rem; }

.nft-card__intro {
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--nft-text); }

.nft-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--nft-text); }

.nft-card__prompt {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--nft-text); }

.nft-card__body {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.55; }

.nft-card__body p {
  margin: 0 0 0.75rem; }

.nft-card__body p:last-child {
  margin-bottom: 0; }

.nft-card__body ul,
.nft-card__body ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem; }

/* ----- Multiple choice ---------------------------------------------------- */
.nft-choices {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none; }

.nft-choice {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font: inherit;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.125rem;
  background: var(--nft-surface);
  color: var(--nft-text);
  border: 1px solid #cfd3d8;
  border-radius: 0.625rem;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
  /* Freeform "Type your own answer" choice */ }

.nft-choice:hover {
  border-color: var(--nft-primary);
  background: #f6f8fb; }

.nft-choice:focus-visible {
  outline: none;
  border-color: var(--nft-primary);
  box-shadow: 0 0 0 3px rgba(70, 103, 142, 0.25); }

.nft-choice[aria-pressed="true"],
.nft-choice.is-selected {
  border-width: 2px;
  border-color: #000;
  box-shadow: none; }

.nft-choice:disabled {
  cursor: not-allowed; }

.nft-choice--freeform {
  color: var(--nft-text-muted);
  background: #f5f6f7;
  border-style: dashed;
  border-color: #d2d5d9; }

.nft-choice--freeform::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--nft-text-muted);
  flex: none; }

.nft-choice--freeform:hover {
  background: #eef0f2;
  border-color: var(--nft-primary);
  color: var(--nft-text); }

.nft-choice--freeform:hover::before {
  color: var(--nft-text); }

.nft-choice--freeform.is-editing {
  background: var(--nft-surface);
  border-style: solid;
  border-color: var(--nft-primary);
  box-shadow: 0 0 0 3px rgba(70, 103, 142, 0.18);
  padding: 0.75rem 1rem;
  cursor: text; }

.nft-choice--freeform.is-editing::before {
  display: none; }

.nft-choice__textarea {
  flex: 1;
  width: 100%;
  resize: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--nft-text);
  line-height: 1.4;
  padding: 0;
  outline: none;
  min-height: 1.4em;
  max-height: 12rem;
  overflow: auto; }

.nft-choice__submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: var(--nft-primary);
  color: #fff;
  border-radius: 50rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  margin-left: 0.5rem;
  align-self: flex-end; }

.nft-choice__submit:hover {
  background: var(--nft-primary-dark); }

.nft-choice__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed; }

/* ----- Multiple choice ---------------------------------------------------- */
.nft-img-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.75rem;
  margin-block: 2rem; }
  .nft-img-grid__item {
    flex: 1 1 40%; }
  .nft-img-grid__img {
    width: 100%;
    aspect-ratio: 33/17;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px; }
  .nft-img-grid__p {
    font-size: 1.125rem;
    line-height: 1.22; }

/* ----- Tree result callouts ---------------------------------------------- */
.nft-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: solid 1px #67d66e;
  margin: -1.5625rem;
  margin-block-end: 1rem;
  padding: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  background-color: #efffeb;
  border-radius: 0.375rem var(--nft-radius-card) 0 0; }

.nft-result__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background-color: #3fa345; }

.nft-result__status {
  color: #3fa345;
  text-transform: uppercase;
  font-weight: bold; }

.nft-result__title {
  line-height: 1.25;
  font-size: 2rem; }

.nft-result--success {
  border: solid 1px #67d66e;
  background-color: #efffeb; }
  .nft-result--success .nft-result__icon {
    background-color: #3fa345; }
  .nft-result--success .nft-result__status {
    color: #3fa345; }

.nft-result--warning {
  border: solid 1px #ffc834;
  background-color: #fffbef; }
  .nft-result--warning .nft-result__icon {
    background-color: #c49700; }
  .nft-result--warning .nft-result__status {
    color: #c49700; }

.nft-result--danger {
  border: solid 1px #fdc0a4;
  background-color: #fff3ef; }
  .nft-result--danger .nft-result__icon {
    background-color: #c14213; }
  .nft-result--danger .nft-result__status {
    color: #c14213; }

/* ----- Loading indicator -------------------------------------------------- */
.nft-thinking {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 1.25rem;
  background: var(--nft-surface);
  border: 1px solid var(--nft-border);
  border-radius: 0.375rem var(--nft-radius-bubble) var(--nft-radius-bubble) var(--nft-radius-bubble);
  color: var(--nft-text-muted);
  font-size: 0.9375rem; }

.nft-thinking span {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: var(--nft-primary);
  opacity: 0.4;
  animation: nft-pulse 1.2s infinite ease-in-out; }

.nft-thinking span:nth-child(2) {
  animation-delay: 0.15s; }

.nft-thinking span:nth-child(3) {
  animation-delay: 0.3s; }

@keyframes nft-pulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.85); }
  40% {
    opacity: 1;
    transform: scale(1); } }

/* ----- Property-type selector (initial screen) --------------------------- */
.nft-property-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none; }

.nft-property-btn {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font: inherit;
  text-align: left;
  width: 100%;
  background: var(--nft-surface);
  color: var(--nft-text);
  border: 1px solid #cfd3d8;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.125rem;
  align-items: center;
  transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, transform 120ms ease; }

.nft-property-btn:hover {
  border-color: var(--nft-primary);
  background: #f8fafc; }

.nft-property-btn:focus-visible {
  outline: none;
  border-color: var(--nft-primary);
  box-shadow: 0 0 0 3px rgba(70, 103, 142, 0.25); }

.nft-property-btn:active {
  transform: translateY(1px); }

.nft-property-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed; }

.nft-property-btn:disabled .nft-property-btn__icon {
  background: #7a7d83; }

.nft-property-btn__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #46668d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none; }

.nft-property-btn__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
  display: block; }

.nft-property-btn__text {
  min-width: 0; }

.nft-property-btn__label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.125rem; }

.nft-property-btn__desc {
  display: block;
  font-size: 0.9375rem;
  color: var(--nft-text-muted);
  line-height: 1.45; }

/* ----- Sticky composer ---------------------------------------------------- */
.nft-composer {
  position: sticky;
  bottom: 0;
  padding: 4.5rem 0 1.75rem;
  background: linear-gradient(to bottom, rgba(243, 243, 242, 0) 0%, rgba(243, 243, 242, 0.85) 35%, #f3f3f2 60%);
  pointer-events: none;
  z-index: 5; }

.nft-composer__inner {
  pointer-events: auto;
  max-width: 60rem;
  margin: 0 auto; }

.nft-composer__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--nft-surface);
  border: 1px solid #d6dae0;
  border-radius: var(--nft-radius-pill);
  padding: 0.4rem 0.5rem 0.4rem 1.25rem;
  box-shadow: var(--nft-shadow-input);
  transition: border-color 120ms ease, box-shadow 120ms ease; }

.nft-composer__field:focus-within {
  border-color: var(--nft-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(70, 103, 142, 0.18); }

.nft-composer__icon {
  color: var(--nft-accent);
  flex: none;
  display: inline-flex; }

.nft-composer__icon svg {
  width: 1.125rem;
  height: 1.125rem; }

.nft-composer__input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.25rem;
  color: var(--nft-text);
  min-width: 0; }

.nft-composer__input::-moz-placeholder {
  color: var(--nft-text-muted); }

.nft-composer__input::placeholder {
  color: var(--nft-text-muted); }

.nft-composer__send {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: var(--nft-accent);
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
  transition: background-color 120ms ease, transform 120ms ease; }

.nft-composer__send:hover {
  background: var(--nft-accent-dark); }

.nft-composer__send:active {
  transform: scale(0.97); }

.nft-composer__send:disabled {
  background: #c9c6c0;
  cursor: not-allowed; }

.nft-composer__send svg {
  width: 1.25rem;
  height: 1.25rem; }

.nft-composer__disclosure {
  margin: 0.875rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--nft-text-muted);
  max-width: 60rem; }

.nft-composer__disclosure a {
  color: var(--nft-text-muted);
  text-decoration: underline; }

.nft-composer__disclosure a:hover {
  color: var(--nft-text); }

/* ----- Visually hidden ---------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

/* ----- Small screens ------------------------------------------------------ */
@media (max-width: 35.9375rem) {
  .nft-assistant__title {
    font-size: 2rem; }
  .nft-card {
    padding: 1.25rem; }
  .nft-bubble {
    font-size: 1rem;
    padding: 0.75rem 1rem; }
  .nft-composer {
    padding: 3rem 0 1.25rem; }
  .nft-composer__send {
    width: 2.5rem;
    height: 2.5rem; }
  .nft-composer__field {
    padding-left: 1rem; } }

/*# sourceMappingURL=nft-assistant.css.map */
