/* "Price the website your business actually needs." — pricing section */
.pr-sec { position: relative; overflow: hidden; }
.pr-sec .wrap { position: relative; z-index: 1; }

/* intro */
.pr-hero { max-width: 1216px; }
.pr-eyebrow { color: #B49AFF; }
.pr-eyebrow .dot { background: #B49AFF; }
.pr-h2 { max-width: 860px; color: #E9E9E9; }
.pr-sub { max-width: 720px; color: #B9B1AA; }

/* value props — simple floating icon (left) + label (right), all in one row */
.pr-vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 44px; }
.pr-vp-item { display: flex; align-items: center; gap: 13px; }
.pr-vp-item .orb, .pr-vp-item [class*="orb-"] { flex-shrink: 0; }
.pr-vp-item .wc-label { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.35; letter-spacing: -0.01em; color: var(--fg1); text-wrap: balance; }

/* estimate module */
.pe-module { margin-top: 51px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.014)); border: 1px solid var(--border-default); border-radius: 24px; padding: 32px;
  box-shadow: 0 24px 60px -40px rgba(0,0,0,0.8); }
/* the two estimate steps are layout-transparent on desktop; on phones (mobile.css)
   they become sticky-header containers for the build → payment flow. */
.pe-flowstep { display: contents; }
.pe-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pe-title { font-family: var(--font-display); font-weight: 600; font-size: 31px; line-height: 1.2; letter-spacing: -0.02em; color: #E9E9E9; margin: 0; }
.pe-sub { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.45; color: #B9B1AA; margin: 10px 0 0; max-width: 780px; }
.pe-stat-pill { position: relative; overflow: hidden; flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 9px 17px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 500; font-size: 14px; color: #B49AFF; white-space: nowrap;
  background: rgba(140,107,240,0.06); border: 1px solid rgba(140,107,240,0.5);
  box-shadow: 0 0 18px rgba(140,107,240,0.3), inset 0 1px 0 rgba(255,255,255,0.08); }
.pe-stat-pill::before { content: ""; position: absolute; top: 0; left: 14px; right: 14px; height: 5px; border-radius: 3px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24) 50%, transparent); }
.pe-stat-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #8C6BF0; }

.pe-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }

.pe-q-title { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: #E9E9E9; margin: 0; }
.pe-q-sub { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.4; color: #B9B1AA; margin: 8px 0 0; }

/* selector layout */
.pe-selector { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; margin-top: 16px; }
.pe-types { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.pe-landing-wrap { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 32px; }

/* selectable cards — gradient stroke ring (light at top), a light streak inside
   the top edge, transparent interior, and an orange bloom + outer glow when selected. */
.pe-card { position: relative; overflow: hidden; border-radius: 12px; padding: 16px; cursor: pointer;
  background: rgba(255,255,255,0.012); transition: background .18s var(--ease), box-shadow .18s var(--ease); outline: none; }
.pe-card-main, .pe-card-stepper, .pe-land-divider, .pe-land-desc { position: relative; z-index: 1; }
/* gradient border ring (mask keeps interior transparent) */
.pe-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.08) 42%, rgba(255,255,255,0.03) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
/* light streak inside, touching the top stroke */
.pe-card::after { content: ""; position: absolute; top: 1.5px; left: 11px; right: 11px; height: 2px; z-index: 2; pointer-events: none; border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24) 42%, rgba(255,255,255,0.1) 70%, transparent); }
.pe-card:hover::before { background: linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.12) 42%, rgba(255,255,255,0.05) 100%); }
.pe-card:focus-visible { box-shadow: 0 0 0 3px rgba(242,100,34,0.3); }
.pe-card.is-on {
  background: radial-gradient(150px 130px at 42px 40px, rgba(242,100,34,0.18), transparent 70%), rgba(242,100,34,0.03); }
.pe-card.is-on::before { background: linear-gradient(180deg, rgba(255,233,212,0.95) 0%, #F26422 30%, #C2500F 66%, #6E3214 100%); }
.pe-card.is-on::after { background: linear-gradient(90deg, transparent, rgba(255,236,216,0.55) 28%, rgba(255,184,134,0.24) 62%, transparent); }
.pe-card-main { display: flex; align-items: flex-start; gap: 12px; }
.pe-card-body { flex: 1; }
.pe-card-t { font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.2; color: #E9E9E9; }
.pe-card-d { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.25; color: #B9B1AA; margin-top: 3px; }

/* radio + checkbox indicators */
.pe-radio { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: #1F1B2A; border: 1.5px solid #7B7B7B; position: relative; transition: border-color .18s, box-shadow .18s; }
.pe-card.is-on .pe-radio { border: 2px solid #F26422; box-shadow: 0 0 18px 5px rgba(242,100,34,0.5), 0 0 5px rgba(242,100,34,0.9); }
.pe-card.is-on .pe-radio::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: #F26422; transform: translate(-50%,-50%); }
.pe-checkbox { flex-shrink: 0; width: 28px; height: 28px; border-radius: 6px; background: #1F1B2A; border: 1.5px solid #7B7B7B; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: border-color .18s, background .18s, box-shadow .18s; }
.pe-checkbox i { opacity: 0; transition: opacity .12s; }
.pe-card.is-on .pe-checkbox { border: 2px solid #F26422; background: #F26422; box-shadow: 0 0 10px rgba(242,100,34,0.55); }
.pe-card.is-on .pe-checkbox i { opacity: 1; }

/* stepper row inside a selected card */
.pe-card-stepper { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; }
.pe-step-lbl { font-family: var(--font-ui); font-weight: 700; font-size: 11px; color: #B9B1AA; }
.pe-step { display: inline-flex; align-items: center; background: #121218; border: 1px solid rgba(58,51,55,0.9); border-radius: 12px; overflow: hidden; }
.pe-step-btn { width: 38px; height: 36px; border: none; background: transparent; color: #F7F3EF; font-family: var(--font-ui); font-weight: 700; font-size: 20px; line-height: 1; cursor: pointer; transition: background .15s, opacity .15s; }
.pe-step-btn:hover:not(:disabled) { background: rgba(255,255,255,0.06); }
.pe-step-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pe-step-val { min-width: 46px; text-align: center; background: #1D1B22; align-self: stretch; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: #F7F3EF; }

.pe-land-divider { height: 1px; background: rgba(58,51,55,0.72); margin: 14px 0; }
.pe-land-desc { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.2; color: #B9B1AA; margin: 0; }

/* payment options */
.pe-pay-title { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: -0.02em; color: #E9E9E9; margin: 40px 0 0; }
.pay-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.pay-card { position: relative; border-radius: 22px; display: flex; flex-direction: column; }
/* orange→purple gradient stroke on both payment cards */
.pay-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(145deg, #F26422 0%, #F26422 30%, #8C6BF0 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 5;
}
.pay-card--monthly { background: #08090E; border: 1px solid transparent; padding: 24px; box-shadow: 0 0 40px -22px rgba(242,100,34,0.5); }
.pay-card--year { border: 1px solid transparent; background: linear-gradient(182.58deg, #2A1E4D -60%, #08070C 70%); box-shadow: 0 6px 44px rgba(140,107,240,0.5); overflow: hidden; }

/* cursor-following orange glow — subtle, year card only */
.pay-card--year::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0; pointer-events: none;
  background: radial-gradient(300px circle at var(--hx, 50%) var(--hy, 50%),
    rgba(242,100,34,0.10), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.pay-card--year:hover::after { opacity: 1; }
.pay-card--year .pay-card-inner { position: relative; z-index: 1; padding: 24px; display: flex; flex-direction: column; height: 100%; }
.pay-year-glow { position: absolute; width: 280px; height: 260px; left: 20px; bottom: 24px; border-radius: 50%; z-index: 0;
  background: linear-gradient(180deg, #F26422 0%, #8C6BF0 100%); opacity: 0.4; filter: blur(120px); pointer-events: none; }

.pay-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pay-card-title { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: -0.02em; color: #F7F3EF; margin: 0; }
.pay-badge { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; padding: 0 17px; height: 34px; border-radius: 999px; font-family: var(--font-display); font-weight: 500; font-size: 14px; white-space: nowrap; }
.pay-badge::before { content: ""; position: absolute; top: 0; left: 14px; right: 14px; height: 5px; border-radius: 3px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24) 50%, transparent); }
.pay-badge-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; }
.pay-badge--violet { color: #B49AFF; background: rgba(140,107,240,0.06); border: 1px solid rgba(140,107,240,0.5); box-shadow: 0 0 16px rgba(140,107,240,0.3), inset 0 1px 0 rgba(255,255,255,0.08); }
.pay-badge--violet .pay-badge-dot { background: #8C6BF0; }
.pay-badge--orange { color: #FF8A4D; background: rgba(242,100,34,0.06); border: 1px solid rgba(242,100,34,0.5); box-shadow: 0 0 16px rgba(242,100,34,0.32), inset 0 1px 0 rgba(255,255,255,0.08); }
.pay-badge--orange .pay-badge-dot { background: #F26422; }

.pay-price-label { font-family: var(--font-display); font-weight: 600; font-size: 11px; color: #86828A; margin-top: 22px; }
.pay-price { font-family: var(--font-display); font-weight: 600; font-size: 49px; line-height: 1.2; letter-spacing: -0.02em; color: #F7F3EF; margin-top: 8px; }
.pay-desc { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.2; color: #EFE7FF; margin: 14px 0 0; }
.pay-card--monthly .pay-desc { color: #B9B1AA; }

.pay-rows { margin-top: 22px; margin-bottom: 24px; }
.pay-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid rgba(58,51,55,0.72); }
.pay-row:first-child { border-top: none; }
.pay-row-k { font-family: var(--font-ui); font-weight: 400; font-size: 12px; color: #B9B1AA; }
.pay-row-v { font-family: var(--font-ui); font-weight: 700; font-size: 13px; color: #F7F3EF; text-align: right; }
.pay-row-v--orange { color: #E75E1E; }
.pay-row--total { padding: 12px 0 2px; }
.pay-row--total .pay-row-k { font-weight: 700; font-size: 14px; color: #F7F3EF; }
.pay-row--total .pay-row-v { font-size: 18px; }

.pay-cta { margin-top: auto; width: 100%; height: 48px; border-radius: 10px; cursor: pointer; font-family: var(--font-ui); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; transition: filter .15s, transform .1s, background .15s; }
.pay-cta:active { transform: scale(0.99); }
.pay-cta i { font-size: 17px; }
.pay-cta--ghost { margin-top: 28px; color: #F6F4F8; background: linear-gradient(93.54deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.1) 100%); border: 1px solid rgba(255,255,255,0.2); }
.pay-cta--ghost:hover { background: rgba(255,255,255,0.12); }
.pay-cta--primary { margin-top: 28px; color: #fff; border: none; background: linear-gradient(91.82deg, #B8480C 0%, #F26422 50%, #B8480C 100%); box-shadow: 0 8px 30px rgba(242,100,34,0.36); }
.pay-cta--primary:hover { filter: brightness(1.07); }

.pe-fineprint { font-family: var(--font-ui); font-weight: 400; font-size: 12px; line-height: 1.5; color: #86828A; margin: 22px 0 0; }

/* request form */
.pr-request { margin-top: 72px; }
.pr-request-head .h-section { margin: 0; }
.pr-form-shell { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; margin-top: 32px; align-items: start; }
.pr-summary { position: sticky; top: 96px; padding: 24px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-default); }
.pr-summary-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--fg1); }
.pr-summary-sub { font-family: var(--font-body); font-weight: 300; font-size: 13px; line-height: 1.5; color: var(--fg3); margin: 8px 0 16px; }
.pr-summary-box { font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.55; color: var(--fg2); padding: 16px; border-radius: 10px; background: rgba(0,0,0,0.22); border: 1px dashed var(--border-strong); }
.pr-summary-box.is-set { color: var(--fg1); border-style: solid; border-color: var(--border-brand); background: rgba(242,100,34,0.06); }
.pr-summary-tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-family: var(--font-ui); font-weight: 600; font-size: 12px; color: var(--magenta-200); padding: 6px 12px; border-radius: 999px; background: rgba(242,100,34,0.12); border: 1px solid var(--border-brand); }
.pr-summary-tag i { font-size: 14px; }

.pr-form { padding: 26px; border-radius: 12px; background: rgba(255,255,255,0.025); border: 1px solid var(--border-default); }
.pr-fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pr-field { display: flex; flex-direction: column; gap: 7px; }
.pr-field--full { margin-top: 16px; }
.pr-field > span { font-family: var(--font-ui); font-weight: 600; font-size: 12px; color: var(--fg2); }
.pr-field input, .pr-field select, .pr-field textarea { font-family: var(--font-body); font-weight: 300; font-size: 14px; color: var(--fg1); background: rgba(0,0,0,0.25); border: 1px solid var(--border-default); border-radius: 8px; padding: 11px 13px; width: 100%; transition: border-color .15s, box-shadow .15s; }
.pr-field input::placeholder, .pr-field textarea::placeholder { color: var(--neutral-500); }
.pr-field input:focus, .pr-field select:focus, .pr-field textarea:focus { outline: none; border-color: var(--border-brand); box-shadow: 0 0 0 3px rgba(242,100,34,0.16); }
.pr-field textarea { resize: vertical; min-height: 76px; }
.pr-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8392' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
.pr-submit { margin-top: 22px; }
.pr-estimate-note { font-family: var(--font-body); font-weight: 300; font-size: 12px; line-height: 1.55; color: var(--fg3); margin: 16px 0 0; }

.pr-sent { text-align: center; padding: 30px 10px; }
.pr-sent-ic { width: 54px; height: 54px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(47,211,122,0.14); border: 1px solid rgba(47,211,122,0.4); color: var(--success); font-size: 28px; }
.pr-sent-t { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--fg1); margin-top: 16px; }
.pr-sent-d { font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.55; color: var(--fg2); margin: 8px auto 0; max-width: 44ch; }

/* ── Sol concept chat (replaces the request form) ───────────────────────── */
.pr-chat { margin-top: 64px; }
.chat-shell {
  display: grid; grid-template-columns: 0.82fr 1.18fr; grid-template-rows: minmax(0, 1fr); margin-top: 30px;
  height: min(680px, calc(100vh - 130px));
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%), linear-gradient(180deg, rgba(16,14,20,0.66) 0%, rgba(11,10,15,0.66) 100%);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 10px 36px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(0,0,0,0.2);
}
.chat-context { padding: 34px; border-right: 1px solid var(--border-subtle); display: flex; flex-direction: column; min-height: 0; overflow-y: auto; }
.chat-main { display: flex; flex-direction: column; min-height: 0; background: rgba(0,0,0,0.22); }

/* shared eyebrow pill */
.ctx-eyebrow { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-400); }
.ctx-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-500); box-shadow: 0 0 12px rgba(140,107,240, calc(0.9 * var(--glow-mult))); }
.ctx-eyebrow--steps { margin-top: 30px; }
.ctx-title { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; color: var(--fg1); margin: 16px 0 0; }
.ctx-sub { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.55; color: var(--fg2); margin: 12px 0 0; }
.ctx-estimate { margin-top: 22px; border-radius: 16px; border: 1px solid rgba(242,100,34,0.4);
  background: rgba(242,100,34,0.05); padding: 18px 20px;
  font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--fg2); }
.ctx-estimate.is-set { color: var(--fg1); }
.ctx-lines { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.ctx-lines b { font-weight: 600; color: var(--fg1); }
.ctx-steps { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.ctx-steps li { display: flex; align-items: center; gap: 14px; font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--fg1); }
.ctx-num { flex-shrink: 0; width: 27px; height: 27px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--magenta-200); border: 1px solid rgba(242,100,34,0.45); background: rgba(242,100,34,0.08); }

/* chat header */
.chat-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 28px; border-bottom: 1px solid var(--border-subtle); background: rgba(255,255,255,0.015); }
.chat-head-id { display: flex; align-items: flex-start; gap: 14px; }
.chat-head-ctl { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.chat-expand { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-default); cursor: pointer;
  background: rgba(255,255,255,0.03); color: var(--fg2); font-size: 17px; display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s, color .15s; }
.chat-expand:hover { border-color: rgba(140,107,240,0.5); background: rgba(140,107,240,0.12); color: var(--fg1); }
.sol-avatar { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #2a1404;
  background: radial-gradient(circle at 34% 28%, #FFE0B0, #F8A24E 38%, #E8551B 82%); box-shadow: 0 0 18px rgba(242,100,34, calc(0.34 * var(--glow-mult))); }
.sol-avatar--sm { width: 34px; height: 34px; font-size: 14px; }
.chat-assistant-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-400); }
.chat-assistant-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-500); box-shadow: 0 0 12px rgba(140,107,240, calc(0.9 * var(--glow-mult))); }
.chat-title { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; color: var(--fg1); margin: 9px 0 0; }
.chat-subtitle { font-family: var(--font-body); font-weight: 300; font-size: 14px; color: var(--fg2); margin: 4px 0 0; }
.chat-state-badge { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-ui); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--violet-300); padding: 6px 13px; border-radius: 999px; background: rgba(140,107,240,0.12); border: 1px solid rgba(140,107,240,0.45); }
.chat-state-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-400); }

/* thread */
.chat-thread { flex: 1 1 auto; min-height: 0; padding: 28px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
.chat-msg { display: flex; gap: 14px; align-items: flex-start; }
.chat-bubble { min-width: 0; }
.chat-sender { display: block; font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet-400); margin-bottom: 8px; }
.chat-bubble p { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--fg1); margin: 0 0 14px; }
.chat-bubble p:last-child { margin-bottom: 0; }
.chat-estimate-card { border-radius: 14px; border: 1px solid rgba(242,100,34,0.42);
  background: linear-gradient(180deg, rgba(242,100,34,0.06), rgba(140,107,240,0.05)); padding: 18px 20px; margin: 8px 0 16px; }
.cec-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg1); margin-bottom: 4px; }
.cec-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; border-top: 1px solid var(--border-subtle);
  font-family: var(--font-ui); font-size: 14px; color: var(--fg2); }
.cec-title + .cec-row { border-top: none; }
.cec-row b { color: var(--fg1); font-weight: 700; text-align: right; }

/* ── Beacon image avatars ── */
.beacon-av { flex-shrink: 0; border-radius: 50%; overflow: hidden; position: relative; background: #08080c;
  box-shadow: 0 0 16px rgba(242,100,34, calc(0.30 * var(--glow-mult))), inset 0 0 0 1px rgba(255,255,255,0.07); }
.beacon-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.beacon-av--head { width: 52px; height: 52px; }
.beacon-av--head img { object-position: center; }
.beacon-av--sm { width: 34px; height: 34px; }

/* user message — right aligned */
.chat-msg--you { flex-direction: row-reverse; }
.chat-msg--you .chat-you-bubble { max-width: 78%; padding: 12px 16px; border-radius: 16px 16px 4px 16px;
  background: linear-gradient(150deg, rgba(242,100,34,0.16), rgba(242,100,34,0.10)); border: 1px solid rgba(242,100,34,0.34);
  font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.55; color: var(--fg1); }
.chat-you-av { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg2); background: rgba(255,255,255,0.06); border: 1px solid var(--border-subtle); }

/* ── Beacon thinking indicator (mirrors the reference motion) ── */
.beacon-think .beacon-av--sm { box-shadow: 0 0 18px rgba(242,100,34, calc(0.42 * var(--glow-mult))), inset 0 0 0 1px rgba(255,255,255,0.08); }
.beacon-think-frames { position: absolute; inset: 0; }
.beacon-think-frames img { position: absolute; inset: 0; opacity: 0; transition: opacity .45s var(--ease); }
.beacon-think-frames img.is-on { opacity: 1; }
.beacon-think-body { padding-top: 1px; }
.beacon-think-label { font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-400); margin-bottom: 11px; transition: color .3s; }
.beacon-dots { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--border-subtle); background: rgba(255,255,255,0.025); }
.beacon-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.beacon-dots span.on { background: #F8A24E; box-shadow: 0 0 10px rgba(242,100,34,0.8); transform: scale(1.12); }
.beacon-dots span.done { background: #8C6BF0; box-shadow: 0 0 10px rgba(140,107,240,0.85); }
.beacon-dots i { font-size: 15px; line-height: 1; color: #8C6BF0; margin-left: -2px; filter: drop-shadow(0 0 7px rgba(140,107,240,0.8)); }

/* input */
.chat-input { display: flex; align-items: center; gap: 10px; margin: 0 24px 14px; padding: 9px 12px; border-radius: 999px;
  border: 1px solid var(--border-default); background: rgba(255,255,255,0.03); }
.chat-input:focus-within { border-color: var(--violet-500); box-shadow: 0 0 0 3px rgba(140,107,240,0.18); }
.chat-attach { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: none; background: transparent; color: var(--fg2); font-size: 23px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: color .2s, background .2s; }
.chat-attach:hover { color: var(--fg1); background: rgba(255,255,255,0.06); }
.chat-field { flex: 1 1 auto; background: transparent; border: none; outline: none; color: var(--fg1); font-family: var(--font-body); font-size: 16px; padding: 0 6px; min-width: 0; }
.chat-field::placeholder { color: var(--fg3); }
.chat-send { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  font-size: 21px; color: #2a1404; background: radial-gradient(circle at 34% 28%, #FFE0B0, #F8A24E 40%, #E8551B 84%); box-shadow: 0 6px 18px -6px rgba(242,100,34, calc(0.42 * var(--glow-mult))); transition: transform .15s var(--ease); }
.chat-send:hover { transform: translateY(-1px) scale(1.04); }
.chat-send:disabled { opacity: 0.5; cursor: default; transform: none; }
.chat-foot-note { font-family: var(--font-body); font-weight: 300; font-size: 13px; color: var(--fg3); margin: 0 28px 20px; }
.chat-status { font-family: var(--font-ui); font-weight: 500; font-size: 12px; color: var(--fg3); margin: 0 28px 10px; }
.typing-caret { display: inline-block; width: 7px; height: 1.15em; margin-left: 3px; vertical-align: -0.18em; border-radius: 999px; background: rgba(248,162,78,0.9); animation: chat-caret 0.9s steps(2, start) infinite; }
.stream-in { animation: chat-stream-in .22s var(--ease) both; }
.chat-bubble ul { margin: 0 0 14px 20px; padding: 0; color: var(--fg1); font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.6; }
.chat-bubble li { margin: 4px 0; }
.chat-bubble strong, .chat-you-bubble strong { color: var(--fg1); font-weight: 700; }
.chat-quick-actions, .chat-handoff-actions { display: flex; flex-wrap: wrap; gap: 10px; padding-left: 48px; }
.chat-quick-actions button { font-family: var(--font-ui); font-weight: 600; font-size: 13px; color: var(--fg1); padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border-default); background: rgba(255,255,255,0.035); cursor: pointer; transition: border-color .18s, background .18s, transform .18s; }
.chat-quick-actions button:hover { transform: translateY(-1px); border-color: rgba(140,107,240,0.55); background: rgba(140,107,240,0.13); }
.chat-handoff-actions { align-items: center; }
.chat-handoff-actions .btn { min-height: 42px; }
.chat-booking-card { width: min(100%, 640px); align-items: stretch; justify-content: space-between; gap: 18px; margin-top: 2px; padding: 18px; border: 1px solid rgba(242,100,34,0.36); border-radius: 18px; background:
  radial-gradient(circle at 18% 0%, rgba(242,100,34,0.24), transparent 42%),
  linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
  rgba(16,14,22,0.82);
  box-shadow: 0 18px 48px -30px rgba(242,100,34, calc(0.9 * var(--glow-mult))), inset 0 1px 0 rgba(255,255,255,0.08);
}
.chat-booking-copy { flex: 1 1 260px; min-width: 0; }
.chat-booking-kicker { display: block; margin-bottom: 7px; font-family: var(--font-ui); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-400); }
.chat-booking-copy strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 22px); line-height: 1.15; color: var(--fg1); }
.chat-booking-copy p { margin: 8px 0 0; max-width: 38em; font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.5; color: var(--fg2); }
.chat-booking-btn { align-self: center; white-space: nowrap; }
.chat-handoff-actions--docked { padding-left: 0; margin: -2px 28px 18px; }
.bcf-foot .chat-handoff-actions--docked { max-width: 720px; margin: -2px auto 16px; padding: 16px 28px; }
.chat-handoff-actions--docked.chat-booking-card { width: auto; border-radius: 16px; }
.chat-attachment-tray, .message-files { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-attachment-tray { margin: 0 28px 10px; }
.message-files { margin-top: 10px; }
.file-chip { display: inline-flex; align-items: center; gap: 7px; max-width: 100%; padding: 7px 10px; border-radius: 999px; border: 1px solid var(--border-subtle); background: rgba(255,255,255,0.045); color: var(--fg2); font-family: var(--font-ui); font-weight: 600; font-size: 12px; line-height: 1.2; }
.file-chip button { width: 18px; height: 18px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); color: var(--fg3); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.file-chip button:hover { background: rgba(255,255,255,0.16); color: var(--fg1); }
@keyframes chat-caret { 0%, 46% { opacity: 1; } 47%, 100% { opacity: 0; } }
@keyframes chat-stream-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .chat-shell { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .chat-context { border-right: none; border-bottom: 1px solid var(--border-subtle); overflow: visible; }
  .chat-main { min-height: 0; }
  .chat-thread { max-height: 56vh; }
}


/* responsive */
@media (max-width: 1000px) {
  .pr-vp-grid { grid-template-columns: 1fr 1fr; }
  .pe-selector { grid-template-columns: 1fr; gap: 24px; }
  .pe-landing-wrap { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-top: 24px; }
  .pr-form-shell { grid-template-columns: 1fr; }
  .pr-summary { position: static; }
}
@media (max-width: 760px) {
  .pay-cards { grid-template-columns: 1fr; }
  .pay-card--year { order: -1; }
  .pe-types { grid-template-columns: 1fr; }
  .pr-fgrid { grid-template-columns: 1fr; }
  .pe-module { padding: 20px; }
  .chat-booking-card { flex-direction: column; padding-left: 18px; }
  .chat-booking-btn { width: 100%; justify-content: center; }
}
