/* OutrightSite wizard — premium dark theme (matches the homepage). */
:root {
  --bg: #0b0e15; --bg2: #0f1420;
  --panel: rgba(255,255,255,.05); --panel2: rgba(255,255,255,.08); --line: rgba(255,255,255,.11);
  --ink: #ecebe4; --mut: #9aa1ad;
  --gold1: #f2d693; --gold2: #c9962f; --cyan: #41d3cb; --err: #e0554d;
  --disp: 'Space Grotesk','Segoe UI',system-ui,sans-serif;
  --body: 'Inter',system-ui,sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--body); color: var(--ink); min-height: 100vh;
  display: grid; grid-template-columns: 320px 1fr;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(201,150,47,.16), transparent 60%),
    radial-gradient(760px 520px at 0% 60%, rgba(65,211,203,.10), transparent 55%),
    var(--bg);
}
h1 { font-family: var(--disp); font-weight: 700; font-size: 2rem; margin: 0 0 .5rem; letter-spacing: -.02em; }
.lead { color: var(--mut); font-size: 1.05rem; margin: 0 0 1.75rem; }

/* Rail */
.rail {
  background: repeating-radial-gradient(circle at 25% 22%, rgba(242,214,147,.045) 0 1px, transparent 1px 5px), repeating-radial-gradient(circle at 75% 78%, rgba(65,211,203,.04) 0 1px, transparent 1px 6px), linear-gradient(180deg, #0e1420, #0a0d13);
  border-right: 1px solid var(--line);
  padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; font-family: var(--disp); font-weight: 700; font-size: 1.6rem; letter-spacing: -.01em; text-shadow: 0 0 12px rgba(65,211,203,.38); text-decoration: none; color: inherit; width: fit-content; }
.brand .s, .brand span.s { color: var(--ink); }
.brand:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 8px; }
.fieldhead { display: block; font-weight: 500; font-size: .92rem; margin: .2rem 0 -.2rem; }
.fieldhead small { color: var(--mut); font-weight: 400; }
.hint { display: block; color: var(--mut); font-weight: 400; font-size: .82rem; line-height: 1.45; margin-top: .3rem; }
.hint a { color: var(--cyan); text-decoration: none; }
.hint a:hover { text-decoration: underline; }
.socialsblock { display: flex; flex-direction: column; gap: 1.1rem; }
.tagline { color: var(--mut); font-size: .9rem; line-height: 1.5; margin: 0 0 1rem; }
.steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.steps li {
  display: flex; align-items: center; gap: .75rem; padding: .6rem .75rem; border-radius: .6rem;
  color: var(--mut); font-weight: 500; font-size: .95rem; transition: background .2s, color .2s;
}
.steps li span {
  width: 1.6rem; height: 1.6rem; flex: none; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.06); color: var(--mut); font-size: .8rem; font-weight: 600; border: 1px solid var(--line);
}
.steps li.active { background: rgba(242,214,147,.10); color: var(--ink); }
.steps li.active span { background: linear-gradient(180deg, var(--gold1), var(--gold2)); color: #1a1205; border: 0; }
.steps li.complete { color: #cfd3da; }
.steps li.complete span { background: rgba(65,211,203,.18); color: var(--cyan); border-color: rgba(65,211,203,.4); }
.reassure { margin-top: auto; color: var(--mut); font-size: .85rem; line-height: 1.5; }
.reassure strong { color: var(--gold1); }

/* Stage */
.stage { padding: 3.5rem 3rem; max-width: 760px; }
.panel[hidden] { display: none; }

/* Forms */
.form { display: flex; flex-direction: column; gap: 1.1rem; max-width: 560px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
label { display: flex; flex-direction: column; gap: .4rem; font-weight: 500; font-size: .92rem; }
label small { color: var(--mut); font-weight: 400; }
.req { color: var(--gold1); }
input, textarea {
  font: inherit; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: .55rem;
  background: rgba(255,255,255,.05); color: var(--ink); width: 100%;
}
input::placeholder, textarea::placeholder { color: #6b727e; }
input:focus, textarea:focus { outline: none; border-color: var(--gold2); box-shadow: 0 0 0 3px rgba(201,150,47,.18); }
textarea { resize: vertical; }

.btn {
  align-self: flex-start; margin-top: .5rem; font-family: var(--disp);
  background: linear-gradient(180deg, var(--gold1), var(--gold2)); color: #1a1205; border: 0; cursor: pointer;
  font-weight: 600; padding: .8rem 1.7rem; border-radius: 2rem;
  box-shadow: 0 12px 30px -14px rgba(201,150,47,.6); transition: transform .05s, box-shadow .2s;
}
.btn:hover { box-shadow: 0 14px 34px -12px rgba(201,150,47,.75); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: default; box-shadow: none; }
/* Neutral option button (used by the domain question gate). */
.btn.ghost {
  background: var(--panel2); color: var(--ink); border: 1px solid var(--line);
  box-shadow: none; font-weight: 500;
}
.btn.ghost:hover { background: rgba(255,255,255,.13); box-shadow: none; }

/* Domain step question gate. */
.dq { margin: 0 0 1.25rem; }
.dqq { font-family: var(--disp); font-weight: 600; color: var(--ink); font-size: 1.05rem; margin: 0 0 .9rem; }
.dqbtns { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.dqbtns .btn { margin-top: 0; }
.rec {
  display: inline-block; margin-left: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--cyan); background: rgba(65,211,203,.14);
  border: 1px solid rgba(65,211,203,.4); border-radius: 1rem; padding: .1rem .5rem; vertical-align: middle;
}
.dqback {
  background: none; border: 0; color: var(--mut); cursor: pointer; font-family: var(--body);
  font-size: .85rem; padding: .4rem .2rem; margin-top: .6rem;
}
.dqback:hover { color: var(--ink); text-decoration: underline; }
.freshsteps { margin: .25rem 0 1.25rem; padding-left: 1.2rem; color: var(--mut); line-height: 1.6; }
.freshsteps a { color: var(--cyan); text-decoration: none; }
.dqstop {
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--cyan);
  border-radius: .6rem; padding: 1.1rem 1.35rem; margin: 0 0 1.25rem;
}
.dqstop h2 { font-family: var(--disp); font-size: 1.15rem; margin: 0 0 .7rem; color: var(--ink); }
.dqstop p { color: var(--mut); line-height: 1.6; margin: 0 0 .7rem; }
.dqstop p b { color: var(--ink); }
.dqstop .dqbtns { margin-top: 1rem; }
.dqnote { color: var(--mut); font-size: .85rem; line-height: 1.5; margin: -.4rem 0 .9rem; }
.dqnote b { color: var(--ink); font-weight: 600; }
/* Plain warning + consent for the safe bring-your-own path. */
.dqwarn {
  background: var(--panel); border: 1px solid rgba(224,85,77,.4); border-left: 3px solid var(--err);
  border-radius: .6rem; padding: 1.1rem 1.35rem; margin: 0 0 1.25rem;
}
.dqwarn h2 { font-family: var(--disp); font-size: 1.15rem; margin: 0 0 .7rem; color: var(--ink); }
.dqwarn p { color: var(--mut); line-height: 1.6; margin: 0 0 .7rem; }
.dqwarn p b { color: var(--ink); }
.dqconsent { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: .92rem; line-height: 1.5; margin: 1rem 0 .3rem; cursor: pointer; }
.dqconsent input { margin-top: .2rem; flex: 0 0 auto; }
/* Domain-not-on-Cloudflare guidance. */
.dqzone {
  background: var(--panel); border: 1px solid rgba(242,214,147,.4); border-left: 3px solid var(--gold1);
  border-radius: .6rem; padding: 1.1rem 1.35rem; margin: 0 0 1.25rem;
}
.dqzone h2 { font-family: var(--disp); font-size: 1.15rem; margin: 0 0 .7rem; color: var(--ink); }
.dqzone p { color: var(--mut); line-height: 1.6; margin: 0 0 .7rem; }
.dqzone p b { color: var(--ink); }
.dqzone .freshsteps { margin: .25rem 0 .9rem; }
.dqzone .dqbtns { margin-top: .6rem; }
/* The gate toggles these with the hidden attribute; a class rule (e.g. .form
   display:flex) would otherwise beat the attribute, so force it off. */
#dq1[hidden], #dq2[hidden], #dqFresh[hidden], #dqStop[hidden], #dqWarn[hidden], #dqZone[hidden], #domainForm[hidden] { display: none !important; }

.ok { margin-top: 1.25rem; color: var(--cyan); font-weight: 600; }
.muted { color: var(--mut); }
.note { color: var(--cyan); font-size: .85rem; }

.code {
  font-family: ui-monospace, Menlo, monospace; font-size: 2rem; font-weight: 700; letter-spacing: .25em;
  background: rgba(255,255,255,.05); color: var(--gold1); border: 1px solid var(--line);
  padding: 1rem 1.25rem; border-radius: .6rem; display: inline-block; margin: .5rem 0 1rem;
}

.help { margin-bottom: 1.25rem; background: var(--panel); border: 1px solid var(--line); border-radius: .6rem; padding: .5rem 1rem; }
.help summary { cursor: pointer; font-weight: 600; padding: .5rem 0; font-family: var(--disp); }
.help ol { margin: .5rem 0 1rem; padding-left: 1.2rem; color: var(--mut); line-height: 1.6; }
.help a { color: var(--cyan); }

.summary { background: var(--panel); border: 1px solid var(--line); border-radius: .7rem; padding: 1.25rem 1.5rem; margin: 0 0 1.5rem; }
.summary div { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.summary div:last-child { border-bottom: 0; }
.summary dt { color: var(--mut); }
.summary dd { margin: 0; font-weight: 600; text-align: right; font-family: var(--disp); }

.price { margin: 0 0 1.25rem; font-size: 1.1rem; }
.price strong { font-family: var(--disp); color: var(--gold1); font-size: 1.5rem; }

/* Build experience */
.build-scene { max-width: 620px; }
.build-scene h1 { margin-bottom: .35rem; }
.build-scene .lead { margin-bottom: 1.5rem; min-height: 2.6em; transition: opacity .3s; }
.build-visual { display: flex; justify-content: center; margin: .5rem 0 2rem; }
.build-canvas {
  width: 100%; max-width: 500px; height: auto; image-rendering: pixelated; image-rendering: crisp-edges;
  border: 1px solid var(--line); border-radius: .7rem;
  box-shadow: 0 30px 60px -40px #000, 0 0 0 1px rgba(65,211,203,.22) inset, 0 0 30px -12px rgba(65,211,203,.16);
}
.build-progress { height: .55rem; background: rgba(255,255,255,.07); border-radius: 1rem; overflow: hidden; margin-bottom: 1.5rem; }
#buildBar { display: block; height: 100%; width: 1%; border-radius: 1rem; background: linear-gradient(90deg, var(--gold2), var(--gold1)); position: relative; overflow: hidden; }
#buildBar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); transform: translateX(-100%); animation: bar-sheen 1.6s ease-in-out infinite; }
@keyframes bar-sheen { to { transform: translateX(100%); } }

.build-stages { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.build-stages li { display: flex; align-items: center; gap: .8rem; color: var(--mut); font-size: .98rem; transition: color .3s; }
.build-stages .dot { width: 1.15rem; height: 1.15rem; flex: none; border-radius: 50%; border: 2px solid var(--line); background: transparent; position: relative; }
.build-stages li.active { color: var(--ink); font-weight: 600; }
.build-stages li.active .dot { border-color: var(--gold1); border-top-color: transparent; animation: spin .7s linear infinite; }
.build-stages li.done { color: #cfd3da; }
.build-stages li.done .dot { background: var(--cyan); border-color: var(--cyan); animation: none; }
.build-stages li.done .dot::after { content: ''; position: absolute; left: 50%; top: 46%; width: .3rem; height: .55rem; border: solid #0b0e15; border-width: 0 .13rem .13rem 0; transform: translate(-50%, -55%) rotate(45deg); }
@keyframes spin { to { transform: rotate(360deg); } }

.build-tip { color: var(--cyan); font-size: .9rem; margin: 1.6rem 0 0; transition: opacity .3s; min-height: 1.3em; }
.build-error { margin-top: 1.5rem; }
.build-error p { color: var(--err); font-weight: 500; margin: 0 0 .9rem; }
.build-details { margin-top: 1.75rem; }
.build-details summary { cursor: pointer; color: var(--mut); font-size: .85rem; }
.build-details .log { margin-top: .75rem; }
.log {
  background: #06080d; color: #8fb9c4; font-family: ui-monospace, Menlo, monospace; font-size: .82rem; line-height: 1.5;
  padding: 1.25rem; border: 1px solid var(--line); border-radius: .6rem; margin-top: 1.5rem; max-height: 340px; overflow-y: auto; white-space: pre-wrap;
}

.cards { display: grid; gap: 1rem; max-width: 520px; }
.card {
  display: flex; flex-direction: column; gap: .3rem; text-decoration: none;
  background: var(--panel); border: 1px solid var(--line); border-radius: .7rem;
  padding: 1.1rem 1.35rem; color: var(--ink); transition: border-color .2s, transform .05s; cursor: pointer;
}
.card:hover { border-color: rgba(242,214,147,.5); transform: translateY(-1px); }
.card span { color: var(--mut); font-size: .85rem; }
.card strong { color: var(--gold1); word-break: break-all; font-family: var(--disp); }

@media (prefers-reduced-motion: reduce) {
  #buildBar::after, .build-stages li.active .dot, .btn::after { animation: none; }
}

/* Logo swap + illumination (matches homepage) */
.logobox { position: relative; display: inline-block; width: 26px; height: 26px; vertical-align: -5px; margin-right: 7px; transition: transform .3s cubic-bezier(.2,1.4,.4,1); transform-origin: left center; }
.logobox svg { position: absolute; inset: 0; transition: opacity .25s; }
.logobox .pix { opacity: 0; }
.logobox.pixel { transform: scale(1.32); }
.logobox.pixel .vec { opacity: 0; } .logobox.pixel .pix { opacity: 1; }
.card { position: relative; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: .7rem; padding: 1px; background: linear-gradient(145deg, rgba(242,214,147,.4), transparent 45%, rgba(65,211,203,.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .5; transition: opacity .3s; }
.card:hover::before { opacity: 1; }
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg); animation: sweep 5s ease-in-out infinite; }
@keyframes sweep { 0%,72% { left: -70%; } 86%,100% { left: 150%; } }
@media (max-width: 820px) {
  body { grid-template-columns: 1fr; }
  .rail { flex-direction: row; flex-wrap: wrap; align-items: center; gap: .75rem; padding: 1.25rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .rail .tagline, .rail .reassure { display: none; }
  .steps { flex-direction: row; flex-wrap: wrap; }
  .stage { padding: 2rem 1.5rem; }
  .form .row { grid-template-columns: 1fr; }
}

/* Step 2: choose your look */
.lookrow { margin: 1.4rem 0; }
.lookhead { display: block; font-family: var(--disp); font-weight: 600; font-size: .82rem; margin-bottom: .6rem; color: var(--ink); }
.lookhead small { color: var(--mut); font-weight: 400; }
.lookcards { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .6rem; }
.lookcard { text-align: left; cursor: pointer; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: .7rem; padding: .7rem .8rem; transition: border-color .15s, background .15s; }
.lookcard:hover { background: rgba(255,255,255,.05); }
.lookcard.active { border-color: var(--cyan); background: rgba(65,211,203,.08); }
.lookcard b { display: block; font-family: var(--disp); font-weight: 600; font-size: .92rem; color: var(--ink); }
.lookcard span { display: block; font-size: .72rem; color: var(--mut); margin-top: 2px; line-height: 1.3; }
.lookswatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.lookswatches .sw { cursor: pointer; background: none; border: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.lookswatches .chips { display: flex; width: 52px; height: 28px; border-radius: .4rem; overflow: hidden; border: 2px solid transparent; }
.lookswatches .chips i { flex: 1; }
.lookswatches .sw.active .chips { border-color: var(--cyan); }
.lookswatches .sw small { font-size: .6rem; color: var(--mut); max-width: 60px; text-align: center; line-height: 1.1; }
.lookswatches .sw.active small { color: var(--ink); }
.lookswatches .sw.rec small::after { content: " ★"; color: var(--gold1); }
.lookfonts { display: flex; flex-wrap: wrap; gap: .5rem; }
.lookfonts .fp { cursor: pointer; border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--mut); border-radius: 999px; padding: .45rem .9rem; font-size: .85rem; }
.lookfonts .fp.active { border-color: var(--cyan); color: var(--ink); background: rgba(65,211,203,.08); }
.lookfonts .fp.rec::after { content: " ★"; color: var(--gold1); font-size: .7rem; }
.lookpreview { margin: 1.4rem 0; border: 1px solid var(--line); border-radius: .8rem; overflow: hidden; background: #0e131c; }
.lpbar { display: flex; align-items: center; gap: .4rem; padding: .55rem .8rem; border-bottom: 1px solid var(--line); }
.lpbar i { width: 9px; height: 9px; border-radius: 50%; background: #2a3140; }
.lpbar em { flex: 1; text-align: center; font-family: var(--disp); font-size: .72rem; color: var(--mut); font-style: normal; }
.lookpreview iframe { display: block; width: 100%; height: 520px; border: 0; background: #fff; }

/* Checkout consent + cooling-off waiver */
.consent { display: flex; gap: .6rem; align-items: flex-start; max-width: 560px; margin: 1.25rem 0 .5rem; font-size: .85rem; color: var(--mut); line-height: 1.5; cursor: pointer; }
.consent input { width: auto; margin-top: .2rem; flex: none; }
.optin { display: flex; gap: .6rem; align-items: flex-start; margin: 1rem 0 .2rem; font-size: .9rem; color: var(--ink); line-height: 1.45; cursor: pointer; }
.optin input { width: auto; margin-top: .25rem; flex: none; }
.optin small { display: block; color: var(--mut); font-size: .8rem; margin-top: 3px; }
.consent a { color: var(--cyan); text-decoration: none; }
.consent a:hover { text-decoration: underline; }
.customcol { display: block; margin-top: .9rem; }
.customcol .cclabel { display: block; font-size: .82rem; color: var(--mut); font-weight: 500; margin-bottom: .5rem; }
.customcol.active .cclabel { color: var(--ink); }
.ccrow { display: flex; align-items: flex-end; gap: .55rem; flex-wrap: wrap; }
.ccpick { display: flex; flex-direction: column; align-items: center; gap: .25rem; font-size: .62rem; color: var(--mut); text-transform: uppercase; letter-spacing: .04em; }
.ccpick input[type=color] { width: 44px; height: 32px; padding: 2px; border: 1px solid var(--line); border-radius: .45rem; background: none; cursor: pointer; }
.ccclear { align-self: center; background: none; border: 1px dashed var(--line); color: var(--mut); font-family: var(--disp); font-size: .76rem; font-weight: 600; border-radius: .45rem; padding: .42rem .7rem; cursor: pointer; }
.ccclear:hover { border-color: var(--cyan); color: var(--cyan); }
.cchint { display: block; font-size: .72rem; color: var(--mut); margin-top: .5rem; line-height: 1.4; }

/* Mobile "finish on a computer" gate, shown on the connect steps on small screens. */
.pcgate { margin: 1.4rem 0; border: 1px solid rgba(242,214,147,.5); background: linear-gradient(180deg, rgba(242,214,147,.10), transparent); border-radius: 14px; padding: 18px 20px; }
.pcgate-in { display: flex; gap: 15px; align-items: flex-start; }
.pcgate-ic { font-size: 1.8rem; line-height: 1; flex: none; }
.pcgate-body b { font-family: var(--disp); font-size: 1.05rem; display: block; margin-bottom: 6px; color: var(--ink); }
.pcgate-body p { color: var(--mut); margin: 0 0 14px; font-size: .95rem; line-height: 1.55; }
.pcgate-body .btn { font-size: .85rem; padding: 9px 18px; background: transparent; color: var(--ink); border: 1px solid var(--line); }
.pcgate-body .btn:hover { border-color: var(--cyan); }
/* Two-pane look step: selections on the left, the live preview stuck alongside so
   both are visible at once (stacks on narrow screens). */
.looklayout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 1.6rem; align-items: start; margin: 1.4rem 0; }
.lookcontrols .lookrow { margin: 0 0 1.4rem; }
.lookcontrols .lookrow:last-child { margin-bottom: 0; }
/* The picker column scrolls on its own so the page (and the preview) stay put. */
.looklayout .lookcontrols { max-height: calc(100vh - 200px); overflow-y: auto; overflow-x: hidden; padding-right: .6rem; scrollbar-width: thin; }
.looklayout .lookpreview { position: sticky; top: 1rem; margin: 0; }
.looklayout .lookpreview iframe { height: calc(100vh - 220px); min-height: 440px; }
/* "Full view": hide the picker and let the preview fill the space. Toggled on .looklayout. */
.lpfull { margin-left: auto; display: inline-flex; align-items: center; gap: .4em; background: rgba(65,211,203,.12); border: 1px solid rgba(65,211,203,.5); color: var(--cyan); font-family: var(--disp); font-weight: 600; font-size: .8rem; letter-spacing: .02em; border-radius: 999px; padding: .36rem .9rem; cursor: pointer; white-space: nowrap; transition: background .2s; }
.lpfull::before { content: "\2922"; font-size: 1em; line-height: 1; }
.lpfull:hover { background: rgba(65,211,203,.22); }
#lookOpenFull::before { content: "\2197"; }
.looklayout.previewonly { grid-template-columns: 1fr; }
.looklayout.previewonly .lookcontrols { display: none; }
.looklayout.previewonly .lookpreview iframe { height: calc(100vh - 170px); min-height: 340px; pointer-events: auto; }
@media (max-width: 900px) {
  /* On a phone: pin a compact preview to the TOP so choices update in view, and let
     the selections scroll beneath it. pointer-events:none stops the iframe trapping
     touch scroll (the whole page scrolls instead). */
  .looklayout { grid-template-columns: 1fr; gap: 1rem; }
  .looklayout .lookcontrols { max-height: none; overflow: visible; padding-right: 0; }
  .looklayout .lookpreview { order: -1; position: sticky; top: .5rem; z-index: 5; margin: 0; box-shadow: 0 12px 30px -18px rgba(0,0,0,.55); }
  .looklayout .lookpreview iframe { height: 42vh; min-height: 240px; pointer-events: none; }
}

/* Look step: animated video-hero opt-in toggle */
.videohero { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: .95rem; color: var(--ink); }
.videohero input { margin-top: .3rem; flex: none; }
.videohero small { display: block; color: var(--mut); font-size: .8rem; line-height: 1.45; margin-top: .25rem; font-weight: 400; }

/* Video-hero pick-from-a-few (wizard) */
.vidopts{margin-top:10px}
.vidopts-hint{display:block;font-size:.82rem;color:var(--muted,#667);margin-bottom:6px}
.vidopts-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.vidopt{position:relative;padding:0;border:2px solid transparent;border-radius:8px;overflow:hidden;cursor:pointer;background:none;aspect-ratio:16/9}
.vidopt img{display:block;width:100%;height:100%;object-fit:cover}
.vidopt span{position:absolute;right:4px;bottom:4px;background:rgba(0,0,0,.65);color:#fff;font-size:.68rem;padding:1px 5px;border-radius:6px;line-height:1.4}
.vidopt.sel{border-color:var(--accent,#c9962f)}
.vidopt:hover{border-color:var(--accent,#c9962f);opacity:.92}
@media(max-width:560px){.vidopts-grid{grid-template-columns:repeat(2,1fr)}}
