/* THE STUDIO: the door and the workspace.
   Calm, architectural, almost no chrome. One accent, used sparingly, on the
   thing you are meant to press. Everything else is type, rule and space. */

.studio-body{--paper:#F5EFE4;--ink:#2B2620;--graphite:#3B342A;--soft:#6C6456;--faint:#736B5D;--rule:#E7DECE;--rule-soft:#EFE8DA;--act:#2F7355;--act-dark:#265E45;--known:#1B6B40;--guess:#7E5514;--panel:#FCFAF4;background:var(--paper);color:var(--ink)}
.studio-body .site-header{background:rgba(245,239,228,.9);border-bottom:1px solid var(--rule)}
.studio-body main{min-height:calc(100dvh - 72px)}
/* hidden must win: .door has display:grid, so the plain [hidden] attribute
   left an empty full-height door pushing the workspace, and its reply box,
   below the fold. */
.studio-body [hidden]{display:none!important}
/* In the workspace the page IS the tool: it fills the screen under the header
   and does not scroll, so the reply box is always where the eye already is. */
.studio-body.in-studio{display:flex;flex-direction:column;height:100dvh;overflow:hidden}
.studio-body.in-studio .site-header{flex:none}
.studio-body.in-studio main{flex:1 1 auto;min-height:0;display:flex;flex-direction:column}
.studio-body.in-studio .workspace{flex:1 1 auto;height:auto;min-height:0}

/* ---------- the door ---------- */
.door{display:grid;place-items:center;min-height:calc(100dvh - 72px);padding:clamp(24px,6vh,80px) 20px}
.door-inner{width:min(100%,720px);text-align:center}
.ask{margin:0;font-size:clamp(38px,6.4vw,74px);font-weight:640;letter-spacing:-.045em;line-height:.98;text-wrap:balance}
.ask-sub{margin:18px 0 0;color:var(--soft);font-size:clamp(17px,2vw,21px);letter-spacing:-.01em}
.entry{position:relative;margin:clamp(28px,5vh,48px) 0 0;display:flex;align-items:flex-end;gap:10px;background:var(--panel);border:1px solid var(--rule);border-radius:16px;padding:14px 14px 14px 20px;box-shadow:0 1px 0 rgba(22,24,28,.02),0 18px 44px -32px rgba(22,24,28,.5);transition:border-color .18s,box-shadow .18s}
.entry:focus-within{border-color:#c9c4ba;box-shadow:0 1px 0 rgba(22,24,28,.02),0 26px 60px -34px rgba(22,24,28,.55)}
.entry textarea{flex:1;border:0;background:none;resize:none;font:inherit;font-size:17px;line-height:1.55;color:var(--ink);padding:6px 0;max-height:180px;outline:none}
.entry textarea::placeholder{color:var(--faint)}
.entry-go{flex:none;width:44px;height:44px;border:0;border-radius:11px;background:var(--ink);color:#fff;display:grid;place-items:center;cursor:pointer;transition:background .16s,transform .16s}
.entry-go:hover{background:var(--act)}
.entry-go:disabled{background:var(--rule);color:var(--faint);cursor:default}
.tries{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;align-items:center;margin:18px 0 0}
.tries span{font:600 11px/1 var(--mono,ui-monospace,monospace);letter-spacing:.14em;text-transform:uppercase;color:var(--faint)}
.tries button{border:1px solid var(--rule);background:none;border-radius:999px;padding:7px 14px;font:inherit;font-size:13.5px;color:var(--soft);cursor:pointer;transition:border-color .16s,color .16s}
.tries button:hover{border-color:var(--ink);color:var(--ink)}
.door-foot{margin:clamp(26px,5vh,44px) auto 0;max-width:56ch;color:var(--faint);font-size:13px;line-height:1.7}
@media (prefers-reduced-motion:no-preference){
  .door-inner>*{animation:studio-rise .5s cubic-bezier(.2,.7,.3,1) backwards}
  .ask-sub{animation-delay:.05s}.entry{animation-delay:.1s}.tries{animation-delay:.15s}.door-foot{animation-delay:.2s}
  @keyframes studio-rise{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
}

/* ---------- the workspace ---------- */
.workspace{display:grid;grid-template-columns:minmax(0,44fr) minmax(0,56fr);height:calc(100dvh - 72px)}
.workspace[hidden]{display:none}
.ws-tabs{display:none}
.ws-talk{display:grid;grid-template-rows:1fr auto;min-height:0;border-right:1px solid var(--rule)}
.talk-log{overflow-y:auto;padding:clamp(20px,3vw,36px) clamp(18px,3vw,34px);display:flex;flex-direction:column;gap:20px}
.turn{max-width:34rem;font-size:16px;line-height:1.62}
.turn.you{align-self:flex-end;background:var(--ink);color:#fff;padding:11px 16px;border-radius:16px 16px 4px 16px;max-width:28rem}
.turn.erm{color:var(--ink)}
.turn.erm .who{display:block;font:600 11px/1 var(--mono,ui-monospace,monospace);letter-spacing:.14em;text-transform:uppercase;color:var(--faint);margin-bottom:7px}
.turn.note{align-self:center;color:var(--faint);font-size:13px;text-align:center;max-width:40ch}
.thinking{display:flex;gap:5px;padding:4px 0}
.thinking i{width:6px;height:6px;border-radius:50%;background:#C7BCA6;animation:studio-blink 1.2s infinite}
.thinking i:nth-child(2){animation-delay:.16s}.thinking i:nth-child(3){animation-delay:.32s}
@keyframes studio-blink{0%,60%,100%{opacity:.35}30%{opacity:1}}
.talk-say{display:flex;align-items:flex-end;gap:10px;border-top:1px solid var(--rule);background:var(--paper);padding:14px clamp(18px,3vw,34px) 18px}
.talk-say textarea{flex:1;border:1px solid var(--rule);border-radius:13px;background:var(--panel);resize:none;font:inherit;font-size:16px;line-height:1.5;color:var(--ink);padding:12px 14px;max-height:150px;outline:none}
.talk-say textarea:focus{border-color:#c9c4ba}
.talk-say .entry-go{width:42px;height:42px}
/* PICK A LOOK. Each card is a real miniature in that direction's own palette
   and typefaces, so the choice is made by eye. The card frame stays neutral;
   all the colour inside belongs to the direction, not to Ermaz. */
.dirs{margin:0 0 22px}
.dirs h3{margin:0 0 6px;font-size:14px;font-weight:650;color:var(--ink)}
.dirs-sub{margin:0 0 14px;color:var(--faint);font-size:13px;line-height:1.6}
/* Three abreast wherever they fit. The panel is half a window, not a whole
   one, so this sizes on the space the cards actually have: comparing three
   looks side by side is the entire point, and stacking them loses it. */
.dirs-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(148px,1fr));gap:12px}
.dir{display:flex;flex-direction:column;gap:8px;padding:0;border:1px solid var(--rule);border-radius:12px;background:var(--panel);cursor:pointer;text-align:left;overflow:hidden;font:inherit;transition:border-color .16s,box-shadow .16s}
.dir:hover{border-color:var(--soft)}
.dir.on{border-color:var(--act);box-shadow:0 0 0 2px color-mix(in srgb,var(--act) 22%,transparent)}
.dir-art{display:flex;flex-direction:column;align-items:flex-start;gap:7px;padding:16px 14px;min-height:118px}
.dir-name{font-size:17px;font-weight:700;line-height:1.15;letter-spacing:-.02em}
.dir-line{display:block;width:34px;height:3px;border-radius:2px}
.dir-body{font-size:11.5px;line-height:1.5}
.dir-btn{margin-top:auto;font-size:10.5px;font-weight:700;padding:5px 10px;border-radius:5px}
.dir-name-label{padding:0 12px;font-size:12.5px;font-weight:650;color:var(--ink)}
.dir-why{padding:0 12px 12px;font-size:11.5px;line-height:1.5;color:var(--faint)}
@media (max-width:900px){.dir-art{min-height:96px}}
/* Before you launch: evidence, not a score. "Unknown" looks different from
   "done" on purpose, because a thing nobody measured is not a thing that passed. */
.ready{margin:0 0 18px;padding:16px 0 0;border-top:1px solid var(--rule)}
.ready h3{margin:0 0 12px;font-size:14px;font-weight:650;color:var(--ink)}
.ready ul{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.ready li{display:grid;grid-template-columns:18px minmax(7rem,auto) 1fr;gap:10px;align-items:baseline;font-size:13.5px}
.ready .r-mark{font-weight:800;text-align:center}
.ready .r-label{color:var(--ink);font-weight:550}
.ready .r-detail{color:var(--faint)}
.ready .r-ready .r-mark{color:var(--known,#1f7a3d)}
.ready .r-todo .r-mark{color:var(--act)}
.ready .r-unknown .r-mark{color:var(--faint)}
.ready .r-todo .r-detail{color:var(--soft)}
.ready-verdict{margin:14px 0 0;color:var(--soft);font-size:13px;line-height:1.6}
/* The next useful thing. A quiet observation under the panel head, never a
   nag: when there is nothing worth doing it is not there at all. */
.next-step{margin:0;padding:12px clamp(18px,3vw,30px);background:var(--mist,#f4f7fb);border-bottom:1px solid var(--rule-soft);color:var(--ink);font-size:13.5px;line-height:1.6}
/* The canonical reading of the conversation, folded away until wanted. */
.brief{margin:22px 0 0;padding:14px 0 0;border-top:1px solid var(--rule)}
.brief summary{cursor:pointer;font-size:13px;font-weight:650;color:var(--soft);width:max-content}
.brief summary:hover{color:var(--ink)}
.brief p{margin:10px 0 0;color:var(--soft);font-size:13.5px;line-height:1.7}
/* Current beside Proposed. Two real renderings, not a description of a
   difference: the point is to judge it by eye before it replaces anything. */
.compare{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 0 12px}
.compare figure{margin:0;display:flex;flex-direction:column;gap:6px;min-width:0}
.compare figcaption{font:600 11px/1 var(--mono,ui-monospace,monospace);letter-spacing:.12em;text-transform:uppercase;color:var(--faint)}
.compare figure:last-child figcaption{color:var(--act)}
.compare iframe{width:100%;aspect-ratio:4/3;border:1px solid var(--rule);border-radius:10px;background:#FCFAF4}
.compare figure:last-child iframe{border-color:var(--act)}
.compare-acts{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
@media (max-width:900px){.compare{grid-template-columns:1fr}}
/* The usual answers to the question just asked. Offered, never imposed: the
   composer below still takes anything at all. */
.suggest{display:flex;flex-wrap:wrap;gap:7px;margin:0;padding:10px clamp(18px,3vw,34px) 0}
.suggest button{border:1px solid var(--rule);background:var(--panel);border-radius:999px;padding:7px 13px;font:inherit;font-size:13.5px;color:var(--soft);cursor:pointer;transition:border-color .16s,color .16s}
.suggest button:hover{border-color:var(--ink);color:var(--ink)}
/* What a waiting change will touch, where the instruction names it. */
.impact{font-style:normal;color:var(--faint)}
/* the click-to-chat scope: what you pointed at, above the composer */
.scope{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0;padding:10px clamp(18px,3vw,34px) 0;font-size:13px;color:var(--soft)}
.scope .scope-what{font-weight:650;color:var(--ink)}
.scope .scope-kind{color:var(--faint);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:22rem}
.scope button{margin-inline-start:auto;flex:none;width:22px;height:22px;border:0;border-radius:50%;background:none;color:var(--faint);font-size:17px;line-height:1;cursor:pointer}
.scope button:hover{color:var(--ink);background:var(--rule)}
/* attach: the paperclip that carries the owner's own logo and photos in */
.attach{flex:none;width:40px;height:40px;border:1px solid var(--rule);border-radius:11px;background:none;color:var(--soft);display:grid;place-items:center;cursor:pointer;transition:border-color .16s,color .16s,background .16s}
.attach:hover{border-color:var(--ink);color:var(--ink)}
.talk-say .attach{width:38px;height:38px}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 2px;padding:0}
.entry ~ .chips,.door-inner .chips{margin:16px 0 0;justify-content:center}
.ws-talk .chips{padding:10px clamp(18px,3vw,34px) 0}
.chip{display:inline-flex;align-items:center;gap:8px;max-width:220px;border:1px solid var(--rule);border-radius:999px;background:var(--panel);padding:4px 6px 4px 4px;font-size:13px;color:var(--ink)}
.chip img{width:26px;height:26px;border-radius:50%;object-fit:cover;flex:none;background:var(--rule)}
.chip .chip-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:2px}
.chip.busy{opacity:.7}
.chip.bad{border-color:#d9534f;color:#b23b37}
.chip .chip-x{flex:none;width:20px;height:20px;border:0;border-radius:50%;background:none;color:var(--faint);font-size:17px;line-height:1;cursor:pointer;display:grid;place-items:center}
.chip .chip-x:hover{color:var(--ink);background:var(--rule)}

/* the right-hand panel */
.ws-panel{display:grid;grid-template-rows:auto 1fr;min-height:0;background:var(--panel)}
.panel-head{padding:clamp(18px,2.4vw,26px) clamp(18px,3vw,34px) 0;position:relative}
.panel-mode{margin:0;font:600 11px/1 var(--mono,ui-monospace,monospace);letter-spacing:.16em;text-transform:uppercase;color:var(--act)}
.panel-note{margin:8px 0 16px;color:var(--soft);font-size:14px}
.panel-progress{height:2px;background:var(--rule-soft);border-radius:2px;overflow:hidden}
.panel-progress i{display:block;height:100%;width:0;background:var(--act);transition:width .6s cubic-bezier(.2,.7,.3,1)}
.panel-body{overflow-y:auto;padding:clamp(18px,2.6vw,28px) clamp(18px,3vw,34px) clamp(24px,4vw,40px);min-height:0}

/* understanding */
.facts{margin:0;display:grid;grid-template-columns:minmax(9rem,auto) 1fr;gap:0}
.facts dt,.facts dd{margin:0;padding:12px 0;border-top:1px solid var(--rule-soft);font-size:14.5px;line-height:1.5}
.facts dt{color:var(--soft)}
.facts dd{color:var(--ink);padding-left:18px;word-break:break-word}
.facts .unknown{color:var(--faint)}
.facts .tag{display:inline-block;margin-left:8px;font:600 10px/1 var(--mono,ui-monospace,monospace);letter-spacing:.1em;text-transform:uppercase;padding:3px 6px;border-radius:4px;vertical-align:1px}
.facts .tag.guess{background:#F6EEDC;color:var(--guess)}
.facts .tag.yours{background:#E4EFE8;color:var(--known)}
@media (prefers-reduced-motion:no-preference){.facts dd.fresh{animation:studio-fill .8s ease}@keyframes studio-fill{from{background:#E6EFE8}to{background:transparent}}}
.facts-missing{margin:20px 0 0;color:var(--faint);font-size:13.5px;line-height:1.65}
/* The unknowns inbox: the facts the factory will not invent, answerable at
   leisure. Quiet by design — it is a list of things worth having, not a form
   standing between the owner and their website. */
.inbox{margin:26px 0 0;padding:18px 0 0;border-top:1px solid var(--rule)}
.inbox h3{margin:0;font-size:14px;font-weight:650;letter-spacing:-.01em;color:var(--ink)}
.inbox-sub{margin:6px 0 14px;color:var(--faint);font-size:13px;line-height:1.6}
.inbox ul{list-style:none;margin:0;padding:0;display:grid;gap:14px}
.inbox li{padding:13px 14px;background:var(--panel);border:1px solid var(--rule-soft);border-radius:11px}
.inbox .q-need{font-size:14px;color:var(--ink);font-weight:550}
.inbox .tag.need{display:inline-block;margin-left:8px;font:600 10px/1 var(--mono,ui-monospace,monospace);letter-spacing:.1em;text-transform:uppercase;padding:3px 6px;border-radius:4px;background:#E6EFE8;color:var(--act);vertical-align:1px}
.inbox .q-why{margin:5px 0 0;color:var(--faint);font-size:12.5px;line-height:1.55}
.inbox .q-row{display:flex;gap:8px;align-items:center;margin-top:10px;flex-wrap:wrap}
.inbox .q-row input{flex:1 1 12rem;min-width:0;border:1px solid var(--rule);border-radius:9px;background:var(--paper);font:inherit;font-size:14px;color:var(--ink);padding:9px 11px;outline:none}
.inbox .q-row input:focus{border-color:var(--act)}
.inbox .q-row button{flex:none;border:1px solid var(--ink);border-radius:9px;background:var(--ink);color:#fff;font:inherit;font-size:13px;font-weight:600;padding:9px 14px;cursor:pointer}
.inbox .q-row button:hover{background:var(--act);border-color:var(--act)}
.inbox .q-row .q-skip{background:none;color:var(--faint);border-color:transparent;font-weight:500;padding:9px 6px}
.inbox .q-row .q-skip:hover{background:none;color:var(--ink);border-color:transparent;text-decoration:underline}

/* blueprint */
.bp h3{margin:0 0 4px;font-size:15px;letter-spacing:-.01em}
.bp .bp-block{padding:16px 0;border-top:1px solid var(--rule-soft)}
.bp .bp-block:first-child{border-top:0;padding-top:0}
.bp ul{margin:8px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.bp li{display:flex;gap:10px;font-size:14.5px;line-height:1.5;color:var(--ink)}
.bp li b{font-weight:600}
.bp li span{color:var(--soft)}
.bp li::before{content:"";flex:none;width:6px;height:6px;margin-top:8px;border-radius:1px;background:var(--act)}
.bp .later li::before{background:var(--rule)}
.bp .later li{color:var(--soft)}
.bp-go{margin-top:26px;padding-top:22px;border-top:1px solid var(--rule)}
.bp-email{display:block;margin:0 0 14px}
.bp-email span{display:block;font-size:13px;color:var(--soft);margin-bottom:6px}
.bp-email input{width:100%;box-sizing:border-box;padding:12px 14px;border:1px solid var(--rule);border-radius:11px;font:inherit;font-size:15.5px;background:var(--paper);color:var(--ink)}
.bp-email input:focus{outline:2px solid var(--act);outline-offset:1px;border-color:var(--act)}
.bp-go .button{width:100%;justify-content:center;min-height:52px;font-size:15px;background:var(--ink)}
.bp-go .button:hover{background:var(--act)}
.bp-cost{margin:12px 0 0;color:var(--faint);font-size:12.5px;text-align:center}

/* a way back into a conversation you left */
.resume{display:flex;gap:10px;align-items:center;justify-content:center;flex-wrap:wrap;margin:22px 0 -8px;padding:11px 16px;background:var(--panel);border:1px solid var(--rule);border-radius:12px;font-size:14px;color:var(--soft)}
.resume[hidden]{display:none}
.resume button{border:0;background:none;padding:0;font:inherit;font-size:14px;color:var(--act);text-decoration:underline;cursor:pointer}
.resume button[data-resume-new]{color:var(--faint)}
.ws-resume{margin:0;padding:11px clamp(18px,3vw,34px);border-bottom:1px solid var(--rule);background:var(--panel);color:var(--soft);font-size:13.5px}
.ws-resume[hidden]{display:none}

/* what has been written, as it is written */
.built{margin:24px 0 0;padding-top:18px;border-top:1px solid var(--rule)}
.built[hidden]{display:none}
.built h4{margin:0 0 6px;font:600 11px/1 var(--mono,ui-monospace,monospace);letter-spacing:.14em;text-transform:uppercase;color:var(--faint)}
.built ul{margin:0;padding:0;list-style:none}
.built li{display:flex;justify-content:space-between;gap:14px;align-items:baseline;padding:10px 0;border-top:1px solid var(--rule-soft);font-size:14.5px;color:var(--ink)}
.built li:first-child{border-top:0}
.built li .size{color:var(--faint);font-size:12.5px;font-variant-numeric:tabular-nums;white-space:nowrap}
.built-rest{margin:10px 0 0;color:var(--faint);font-size:12.5px}
@media (prefers-reduced-motion:no-preference){.built li{animation:studio-page .38s cubic-bezier(.2,.7,.3,1) backwards}@keyframes studio-page{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}}

/* manufacturing */
.stages{margin:0;padding:0;list-style:none;display:grid;gap:2px;counter-reset:st}
.stages li{display:flex;gap:12px;align-items:baseline;padding:11px 0;border-top:1px solid var(--rule-soft);color:var(--faint);font-size:14.5px;transition:color .3s}
.stages li:first-child{border-top:0}
.stages li::before{content:"";flex:none;width:7px;height:7px;border-radius:50%;background:var(--rule);transform:translateY(-1px);transition:background .3s,box-shadow .3s}
.stages li.done{color:var(--soft)}
.stages li.done::before{background:var(--known)}
.stages li.now{color:var(--ink);font-weight:560}
.stages li.now::before{background:var(--act);box-shadow:0 0 0 4px rgba(0,103,184,.14)}
.stage-live{margin:20px 0 0;padding:12px 14px;background:var(--paper);border:1px solid var(--rule-soft);border-radius:10px;color:var(--soft);font:13px/1.6 var(--mono,ui-monospace,monospace);word-break:break-word;min-height:44px}

/* the website */
.site-frame{border:1px solid var(--rule);border-radius:12px;overflow:hidden;height:min(64vh,720px);background:var(--paper)}
.site-frame iframe{width:100%;height:100%;border:0;display:block}
.site-acts{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.site-acts .button{min-height:42px;padding:10px 16px;font-size:13.5px}
.site-acts .button.quiet{background:var(--panel);color:var(--ink);border:1px solid var(--rule)}
.site-acts .button.quiet:hover{border-color:var(--ink);background:var(--panel)}

/* ---------- mobile: two views, one thumb ---------- */
@media (max-width:900px){
  .workspace{grid-template-columns:1fr;grid-template-rows:auto 1fr;height:calc(100dvh - 60px)}
  .ws-tabs{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:8px 12px;border-bottom:1px solid var(--rule);background:var(--paper);position:sticky;top:0;z-index:5}
  .ws-tabs button{border:0;background:none;padding:10px 8px;border-radius:9px;font:inherit;font-size:14px;font-weight:560;color:var(--soft);cursor:pointer}
  .ws-tabs button[aria-selected=true]{background:var(--ink);color:#fff}
  .ws-talk,.ws-panel{grid-row:2;grid-column:1;min-height:0;border-right:0}
  .workspace[data-showing=talk] .ws-panel{display:none}
  .workspace[data-showing=panel] .ws-talk{display:none}
  .talk-say{padding-bottom:calc(14px + env(safe-area-inset-bottom))}
  .site-frame{height:56vh}
  .ask{font-size:clamp(34px,9vw,46px)}
}

/* In the workspace the page is the tool: the marketing footer steps aside. */
.in-studio .site-footer{display:none}
.in-studio main{min-height:0}

/* A revision, not an error: stated calmly, with the old wording still legible
   so the owner can tell at a glance which of the two they meant. */
.changed{margin:14px 0 0;padding:12px 14px;border:1px solid var(--line);border-radius:10px;background:var(--surface)}
.changed h3{margin:0 0 8px;font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.changed ul{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:7px}
.changed li{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;font-size:14px}
.c-label{font-weight:600;min-width:98px}
.c-was{color:var(--muted);text-decoration:line-through}
.c-arrow{color:var(--muted)}
.c-now{font-weight:600}

/* The waiting list, grouped the way an owner thinks about their own site. */
.batch{border:1px solid var(--line);border-radius:10px;margin:0 0 8px;overflow:hidden}
.batch-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:7px 11px;background:var(--surface);font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.batch-all{border:0;background:none;color:var(--accent);font:inherit;text-transform:none;letter-spacing:0;cursor:pointer;padding:2px 4px;border-radius:5px}
.batch-all:hover{text-decoration:underline}
.batch ul{margin:0;padding:4px 11px 9px;list-style:none;display:flex;flex-direction:column;gap:5px}
.batch li label{display:flex;gap:9px;align-items:flex-start;font-size:14px;cursor:pointer;line-height:1.45}
.batch li input{margin:3px 0 0;flex:0 0 auto}
.batch-count{margin:2px 0 11px;font-size:13px;color:var(--muted)}
.site-acts button[disabled]{opacity:.5;cursor:not-allowed}

/* The three moments an owner never sees. Deliberately plain: this is the site
   quoted back, so nothing here should look designed by us. */
.cust{margin:14px 0 0;padding:13px 15px;border:1px solid var(--line);border-radius:10px}
.cust h3{margin:0 0 10px;font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.cust-cap{margin:12px 0 6px;font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.cust-cap:first-of-type{margin-top:0}
.serp{display:flex;flex-direction:column;gap:2px;padding:10px 12px;border:1px solid var(--line);border-radius:8px;background:var(--surface);max-width:600px}
.serp-url{font-size:12px;color:var(--muted)}
.serp-title{font-size:17px;line-height:1.3;color:#1a0dab}
.serp-desc{font-size:13px;line-height:1.5;color:var(--muted)}
.serp-desc.none{font-style:italic}
:root:not([data-theme="light"]) .serp-title{color:#8ab4f8}
@media (prefers-color-scheme:light){:root:not([data-theme="dark"]) .serp-title{color:#1a0dab}}
:root[data-theme="dark"] .serp-title{color:#8ab4f8}
.first-screen{display:flex;flex-direction:column;gap:5px;padding:12px 14px;border:1px solid var(--line);border-radius:8px;max-width:390px}
.first-screen b{font-size:16px;line-height:1.3}
.first-screen span{font-size:13px;color:var(--muted);line-height:1.5}
.cust-note{margin:7px 0 0;font-size:13px;color:var(--muted)}
.cust-none{margin:0;font-size:14px;padding:9px 11px;border-radius:8px;background:var(--surface)}
.ways{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:5px}
.ways li{display:flex;gap:8px;align-items:baseline;font-size:14px}
.ways li b{min-width:118px}
.ways li span{color:var(--muted)}
.ready-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.detail-toggle{border:1px solid var(--line);background:none;color:var(--muted);font:inherit;font-size:12px;padding:3px 9px;border-radius:999px;cursor:pointer}
.detail-toggle:hover{color:var(--ink)}
.detail-toggle[aria-pressed="true"]{color:var(--ink);border-color:var(--ink)}


/* THE DOOR, AS A CONVERSATION.
   The pitch on the left, and on the right the real intake dressed as a chat:
   Ez says hello and the very next thing is the actual textarea, so the first
   thing a visitor sees is the product working rather than a picture of it.
   Every hook the controller binds to is unchanged; only the frame is new. */
.door{place-items:center}
.door-inner{width:min(100%,1120px);text-align:left}
.door-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,64px);align-items:center}
.door-pill{display:inline-flex;align-items:center;gap:9px;font-size:14px;font-weight:500;color:var(--act-dark,#265E45);background:var(--green-soft,#E5EDE5);padding:7px 14px;border-radius:30px}
.door-pill i{width:7px;height:7px;border-radius:50%;background:var(--act)}
.door-pitch .ask{margin:22px 0 0;font-size:clamp(34px,4.6vw,58px);font-weight:500;line-height:1.04;letter-spacing:-.025em}
.door-pitch .ask em{font-style:italic;color:var(--act)}
.door-pitch .ask-sub{margin:20px 0 0;max-width:46ch;font-size:clamp(16px,1.7vw,19px);color:var(--soft)}
.door-trust{list-style:none;margin:26px 0 0;padding:0;display:flex;flex-direction:column;gap:13px}
.door-trust li{display:flex;gap:12px;align-items:flex-start;font-size:15.5px;color:var(--soft);line-height:1.5}
.door-trust li svg{flex:none;margin-top:2px;color:var(--act)}
/* the chat card */
.door-chat{background:var(--panel);border:1px solid var(--rule);border-radius:24px;padding:20px 20px 22px;box-shadow:0 1px 0 rgba(43,38,32,.02),0 40px 80px -52px rgba(43,38,32,.55)}
.dc-head{display:flex;align-items:center;gap:11px;padding:0 2px 16px;border-bottom:1px solid var(--rule-soft)}
.dc-av{width:36px;height:36px;flex:none;color:var(--act)}
.dc-who{display:flex;flex-direction:column;line-height:1.25}
.dc-who b{font-size:15px;font-weight:600}
.dc-who small{display:flex;align-items:center;gap:6px;font-size:12.5px;color:var(--faint)}
.dc-who small i{width:7px;height:7px;border-radius:50%;background:var(--act)}
.dc-bub{margin:18px 0 0;padding:14px 17px;background:var(--green-soft,#E5EDE5);color:var(--ink);border-radius:4px 18px 18px 18px;font-size:15.5px;line-height:1.55}
.dc-bub em{font-style:italic;color:var(--act-dark,#265E45)}
.door-chat .entry{margin:16px 0 0;border-radius:18px}
.door-chat .tries{justify-content:flex-start;margin:14px 0 0}
.door-chat .resume{margin:16px 0 0;justify-content:flex-start}
.door-inner .door-chat .chips{margin:14px 0 0;justify-content:flex-start}
.door-foot{margin:clamp(26px,4vh,40px) 0 0;max-width:78ch;text-align:left}
@media (max-width:900px){
  .door-grid{grid-template-columns:1fr;gap:30px}
  .door-pitch .ask{font-size:clamp(31px,7.4vw,40px)}
  .door-foot{text-align:left}
}
