/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/welcome.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
/* SelectAgent — welcome.css
   Post-signup education screen. Cream canvas, single-column flow,
   prominent claim-code card, 3 honest education steps.
   Loaded on top of colors_and_type.css + site.css. */

.welcome-page {
  background: var(--neutral-25);
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--fg-1);
}

/* ----- Slim nav: just wordmark + skip link ----- */
.welcome-nav {
  border-bottom: 1px solid var(--border-subtle);
  background: rgb(250 247 239 / 0.9);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 10;
}
.welcome-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.welcome-nav-right {
  display: flex; align-items: center; gap: 18px;
}
.welcome-nav-right .progress {
  font-size: 13px;
  color: var(--fg-3);
  display: inline-flex; align-items: center; gap: 8px;
}
.welcome-nav-right .progress .check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--success-500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}

/* ----- Page container ----- */
.welcome-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
@media (max-width: 640px) {
  .welcome-wrap { padding: 40px 20px 64px; }
}

.welcome-head {
  margin-bottom: 48px;
}
.welcome-head .h1 {
  margin-top: 18px;
  font-size: clamp(34px, 4.4vw, 50px);
}
.welcome-head .lede {
  margin-top: 18px;
  font-size: 18px;
}

/* ----- Claim-code card ----- */
.claim-card {
  background: var(--neutral-0);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.claim-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-400) 0%, var(--brand-600) 100%);
}
.claim-card .label {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--brand-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.claim-card .label .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-500);
}
.claim-card .heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--fg-1);
  margin: 12px 0 8px;
}
.claim-card .desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 580px;
  margin: 0 0 24px;
}
.claim-code-row {
  display: flex; align-items: stretch; gap: 10px;
  flex-wrap: wrap;
}
.claim-code-box {
  flex: 1;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: var(--neutral-50);
  border: 1.5px solid var(--brand-100);
  border-radius: 12px;
  min-width: 280px;
}
.claim-code-box .pre {
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}
.claim-code-box .code {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: 0.01em;
  line-height: 1;
}
.btn-copy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--neutral-900);
  color: #fff;
  border: 1px solid var(--neutral-900);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}
.btn-copy:hover { background: var(--neutral-700); }
.btn-copy:active { background: var(--neutral-800); }
.btn-copy.copied {
  background: var(--success-500);
  border-color: var(--success-500);
}

.honest-note {
  display: flex; gap: 12px;
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--neutral-50);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-3);
}
.honest-note .ico {
  flex-shrink: 0; color: var(--fg-4); margin-top: 1px;
}
.honest-note b { color: var(--fg-2); font-weight: 600; }

/* ----- Step cards ----- */
.step-card {
  background: var(--neutral-0);
  border: 1px solid var(--border-default);
  border-radius: 18px;
  padding: 28px 32px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
/* Step 2 anchor: the claim-code step is the centerpiece of the page,
   so it gets a top hairline gradient and a heavier shadow to draw the eye. */
.step-card.anchor {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-100);
}
.step-card.anchor::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-400) 0%, var(--brand-600) 100%);
}
.step-card.anchor .step-num-lg {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
}
@media (max-width: 640px) {
  .step-card { grid-template-columns: 1fr; padding: 24px; gap: 12px; }
}
.step-num-lg {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.02em;
  display: flex; align-items: center; justify-content: center;
}
.step-body .step-eyebrow {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3);
}
.step-body .step-h {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--fg-1);
  margin: 6px 0 10px;
}
.step-body .step-p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
  max-width: 580px;
}

/* Inline mini-chat (no phone bezel — sits on the cream card) */
.mini-chat {
  margin-top: 20px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #F0E8D5 0%, #F6F0E0 100%);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 6px;
}
.mini-chat .tg-header-mini {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgb(0 0 0 / 0.04);
}
.mini-chat .tg-avatar-mini {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #FAF7EF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
}
.mini-chat .tg-meta {
  display: flex; flex-direction: column;
}
.mini-chat .tg-meta .n { font-size: 13px; font-weight: 600; color: var(--fg-1); line-height: 1.2; }
.mini-chat .tg-meta .h { font-size: 11px; color: var(--fg-3); margin-top: 2px; line-height: 1.2; }
.mini-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.4;
}
.mini-bubble.bot {
  background: #fff;
  color: var(--fg-1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 1px rgb(26 24 18 / 0.05);
}
.mini-bubble.me {
  background: var(--brand-600);
  color: #FAF7EF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.mini-bubble.me.owner { background: var(--brand-700); }
.mini-bubble code {
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.try-block {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.try-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--neutral-50);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--fg-1);
}
.try-row .label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}

/* ----- "What's next" footer card ----- */
.next-card {
  background: var(--neutral-900);
  border-radius: 20px;
  padding: 36px;
  margin-top: 32px;
  color: #fff;
}
.next-card .label {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--brand-300);
}
.next-card .h {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.018em;
  margin: 12px 0 8px;
  color: #fff;
}
.next-card .p {
  font-size: 15.5px;
  color: var(--neutral-300);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 520px;
}
.next-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.next-actions .btn-primary {
  background: var(--brand-600);
}
.next-actions .btn-dark-secondary {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: #fff;
  padding: 14px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.next-actions .btn-dark-secondary:hover {
  background: rgb(255 255 255 / 0.14);
  border-color: rgb(255 255 255 / 0.3);
}

/* ----- Bot handle pill (clickable) ----- */
.bot-handle {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--neutral-50);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--brand-700);
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.bot-handle:hover {
  border-color: var(--brand-300);
  background: var(--brand-50);
}
.bot-handle .ico {
  color: var(--fg-3);
}

