/* Capulin funnel brand (Addendum 3).
   These styles are for funnel surfaces only. They must never be applied to a
   generated client site, which carries its own style direction. */

:root {
  --cream: #edede5;
  --brown: #211c1a;
  --orange: #fc8c6b;
  --peach: #ffb8a3;
  --white: #fffefb;
  --line: rgba(33, 28, 26, 0.16);
  --shadow: 0 1px 2px rgba(33, 28, 26, 0.06), 0 8px 24px rgba(33, 28, 26, 0.07);

  --font-head: "ringold-soft", "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-accent: "Fugaz One", Impact, ui-sans-serif, sans-serif;
  --font-body: "Schibsted Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;

  color-scheme: light;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
}

/* ── Progress ──────────────────────────────────────────────────── */
.progress {
  position: sticky;
  top: 0;
  height: 6px;
  background: rgba(33, 28, 26, 0.08);
  z-index: 10;
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--orange);
  border-radius: 0 3px 3px 0;
  transition: width 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Shell ─────────────────────────────────────────────────────── */
.masthead {
  padding: 1.25rem 1.5rem 0;
  display: flex;
  justify-content: center;
}
.wordmark {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(33, 28, 26, 0.55);
  text-decoration: none;
}

main {
  flex: 1;
  width: 100%;
  max-width: 41rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
@media (min-width: 40em) {
  main { padding-top: 3.5rem; }
}

.stepcount {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(33, 28, 26, 0.5);
  margin-bottom: 0.6rem;
}

h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 5.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  text-wrap: balance;
}

.help {
  margin: 0 0 1.75rem;
  color: rgba(33, 28, 26, 0.68);
  font-size: 1rem;
}

.ridge {
  height: 10px;
  width: 120px;
  margin: 1.25rem 0;
  background: no-repeat left center/contain
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 10"><path d="M2 8 L30 3 L52 7 L78 2 L118 6" fill="none" stroke="%23fc8c6b" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.ridge.center { margin-left: auto; margin-right: auto; }

/* ── Inputs ────────────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {
  width: 100%;
  font: inherit;
  color: var(--brown);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}
/* Tall enough that a long answer does not feel unwelcome, short enough that a
   one-line answer does not feel like a homework assignment. Drag to grow. */
textarea { min-height: 9.5rem; resize: vertical; }

input::placeholder,
textarea::placeholder { color: rgba(33, 28, 26, 0.34); }

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
.option:focus-within {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.code-input {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  letter-spacing: 0.5em;
  text-align: center;
  padding-left: 0.5em;
}

/* ── Choice lists, tiles, chips ────────────────────────────────── */
.options { display: grid; gap: 0.7rem; margin: 0 0 1.75rem; }
.options.tiles {
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}
.options.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.option input { position: absolute; opacity: 0; width: 0; height: 0; }

.option {
  position: relative;
  display: block;
  cursor: pointer;
}
.option > span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  box-shadow: var(--shadow);
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
}
.option:hover > span { border-color: var(--peach); transform: translateY(-1px); }
.option input:checked + span {
  border-color: var(--orange);
  background: #fff6f2;
  box-shadow: 0 0 0 2px var(--orange) inset, var(--shadow);
}

.option .sub {
  display: block;
  font-size: 0.9rem;
  color: rgba(33, 28, 26, 0.6);
}

/* Tiles: icon above label, squarer */
.tiles .option > span {
  flex-direction: column;
  text-align: center;
  gap: 0.55rem;
  padding: 1.15rem 0.75rem;
  min-height: 7.25rem;
  justify-content: center;
  font-size: 0.98rem;
}
.tiles svg { width: 30px; height: 30px; color: var(--brown); }

/* Chips: pill shaped, inline */
.chips .option > span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.98rem;
}
.chips .option input:disabled + span { opacity: 0.42; cursor: not-allowed; }

.chipcount {
  font-size: 0.95rem;
  color: rgba(33, 28, 26, 0.62);
  margin: -1.1rem 0 1.6rem;
}

/* ── Style swatches ────────────────────────────────────────────── */
.options.styles { grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 34em) {
  .options.styles { grid-template-columns: 1fr 1fr; }
}
.styles .option > span { padding: 0; display: block; overflow: hidden; }

.swatch {
  display: block;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 12px 12px 0 0;
}
.swatch .sw-eyebrow {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}
.swatch .sw-head {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 0.35rem;
}
.swatch .sw-body { font-size: 0.85rem; line-height: 1.45; margin: 0 0 0.85rem; opacity: 0.85; }
.swatch .sw-btn {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.style-meta {
  display: block;
  padding: 0.75rem 1.05rem 0.9rem;
  border-top: 1.5px solid var(--line);
}
.style-meta strong { font-family: var(--font-head); font-size: 1.02rem; }

/* ── Logo drop ─────────────────────────────────────────────────── */
.drop {
  display: block;
  margin-bottom: 1.75rem;
  border: 2px dashed var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}
.drop:hover, .drop.over { border-color: var(--orange); background: #fff6f2; }
.drop input[type="file"] { display: none; }
.drop .hint { color: rgba(33, 28, 26, 0.6); font-size: 0.95rem; margin-top: 0.35rem; }
.drop img { max-width: 190px; max-height: 130px; margin: 0 auto 0.6rem; display: block; }

/* ── Buttons ───────────────────────────────────────────────────── */
.actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: var(--orange);
  color: var(--brown);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 120ms ease, filter 120ms ease;
  text-decoration: none;
  display: inline-block;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn.dark { background: var(--brown); color: var(--cream); }
.btn.big { font-size: 1.1rem; padding: 1.05rem 2.6rem; }

.linkback {
  color: rgba(33, 28, 26, 0.62);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.linkback:hover { color: var(--brown); border-color: var(--brown); }

.skip {
  background: none;
  border: none;
  font: inherit;
  font-size: 0.95rem;
  color: rgba(33, 28, 26, 0.62);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

/* ── Messages ──────────────────────────────────────────────────── */
.error {
  background: #fff1ec;
  border: 1.5px solid var(--orange);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
}

.note {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  font-size: 0.97rem;
  box-shadow: var(--shadow);
}

/* ── Preview ───────────────────────────────────────────────────── */
/* The reveal needs more room than a quiz question, so this widens `main`
   for this page only. */
main.wide { max-width: 62rem; }

h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

/* The waiting room. The bar is a mood, not a measurement: generation gives us
   no honest progress signal, and a bar that pretends to know would stall at
   90% and read as broken. This one just shows the machine is awake. */
.building { margin: 0 0 1.5rem; }

.building__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(33, 28, 26, 0.09);
  overflow: hidden;
}
.building__bar > span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: var(--orange);
  animation: building-slide 2.1s ease-in-out infinite;
}
@keyframes building-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(320%); }
}
.building__stage {
  margin: 0.7rem 0 0;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(33, 28, 26, 0.55);
}
/* With motion reduced the bar would sit frozen mid-track and look stuck, so
   it becomes a full, still track instead. */
@media (prefers-reduced-motion: reduce) {
  .building__bar > span { width: 100%; }
}

.frame-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 0.75rem;
}
/* ── The waiting-room game ─────────────────────────────────────────
   Lives in the empty half of the building page. Hidden until waiting.js
   reveals it, so with scripting off the page is unchanged. */
.waitgame {
  margin: 2.5rem 0 0;
  border-top: 1.5px solid var(--line);
  padding-top: 1.5rem;
}
.waitgame__head h2 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}
.waitgame__hint {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: rgba(33, 28, 26, 0.68);
}
#waitgame-canvas {
  display: block;
  width: 100%;
  height: 200px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  /* The game reacts to taps; without this a tap also scrolls the page. */
  touch-action: manipulation;
  cursor: pointer;
}
#waitgame-canvas:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.waitgame__score {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.6rem 0 0;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(33, 28, 26, 0.68);
}

.frame-tools__right {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.frame-tools__style {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(33, 28, 26, 0.5);
}
.fullscreen {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 2px;
}
.fullscreen:hover,
.fullscreen:focus-visible { border-bottom-color: var(--orange); }

/* The draft-copy message, said in our own chrome above the frame. The ribbon
   inside the page says the same thing at the bottom; this is the one that
   cannot be scrolled past on the way down. */
.draftnote {
  margin: 0 0 1.1rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(252, 140, 107, 0.14);
  border: 1.5px solid rgba(252, 140, 107, 0.4);
  font-size: 0.92rem;
  color: var(--brown);
}

.segmented {
  display: inline-flex;
  background: rgba(33, 28, 26, 0.06);
  border-radius: 999px;
  padding: 3px;
}
.segmented a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(33, 28, 26, 0.6);
}
.segmented a.on {
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow);
}

.frame {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 0 0 2rem;
}
/* The frame owns the height so preview.js can measure it. The iframe fills it
   absolutely, which also means that with scripting off it simply sits at 100%
   width and behaves exactly as it did before the scaling existed. */
.frame {
  position: relative;
  height: max(30rem, 74vh);
}
.frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Narrower views: the frame shrinks to a real device width so the generated
   page's own breakpoints do the work, rather than us faking them with a
   transform. */
.frame--tablet,
.frame--mobile {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.frame--tablet { max-width: 48rem; }
.frame--mobile { max-width: 24rem; border-radius: 28px; height: max(30rem, 78vh); }

/* The next step, and it should look like it. A white card on a cream page is
   a suggestion; the dark block is an instruction. It is the only dark surface
   on the page, so the eye goes there on the way down from the preview. */
.buy {
  background: var(--brown);
  color: var(--white);
  border-radius: 18px;
  padding: 2.1rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
/* Sized up deliberately: this is the one heading on the page that is asking
   for a decision, so it should not be the same weight as "Want a different
   look?" further down. */
.buy h2 {
  color: var(--white);
  margin-top: 0;
  font-size: clamp(1.6rem, 4.2vw, 2.15rem);
  line-height: 1.14;
}
.buy .help {
  margin: 0 auto 1.5rem;
  max-width: 30rem;
  color: rgba(255, 254, 251, 0.82);
}
.buy .btn { font-size: 1.2rem; padding: 1.15rem 2.9rem; }
.buy__after {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 254, 251, 0.62);
}

/* The styles this customer has already seen. At the re-roll cap this becomes
   the decision point, so it gets a card of its own rather than sitting flat
   among the other sections. */
.seen { margin-top: 2.5rem; }
.seen--decide {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.seenlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.9rem;
}
.seenitem {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
  padding: 0.7rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.seenitem.on { border-color: var(--brown); }
.seenitem strong { font-family: var(--font-head); font-size: 0.98rem; }
.seenitem__swatch {
  width: 100%;
  height: 3.6rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.6rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.seenitem__swatch em { display: block; width: 1.6rem; height: 0.5rem; border-radius: 999px; }
.seenitem__now {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(33, 28, 26, 0.68);
}
.btn.small { font-size: 0.82rem; padding: 0.5rem 1rem; }

.exit { margin: 2rem 0 0; }
.exit .options.chips { margin-bottom: 1.1rem; }
/* The re-roll shows the same swatches as the quiz. Three across on a wide
   screen keeps them big enough to read the type in. */
.exit .options.styles { margin-bottom: 1.25rem; }
@media (min-width: 60rem) {
  .exit .options.styles { grid-template-columns: repeat(3, 1fr); }
}

.callback {
  display: grid;
  gap: 0.4rem;
  max-width: 34rem;
}
.callback label {
  font-size: 0.9rem;
  color: rgba(33, 28, 26, 0.68);
}
.callback label + input,
.callback label + textarea { margin-bottom: 0.6rem; }
.callback textarea { min-height: 7rem; }
.callback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
/* 0.68 rather than the lighter grey used elsewhere on the funnel: at this size
   anything paler drops under the 4.5:1 contrast floor. */
.callback__hint {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: rgba(33, 28, 26, 0.68);
}
/* The quieter of the two doors. Same size and hit area as its sibling so it
   reads as a real alternative, not a decline. */
.btn.ghost {
  background: transparent;
  color: var(--brown);
  box-shadow: none;
  border: 1.5px solid rgba(33, 28, 26, 0.35);
}
.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--white);
  border-color: var(--brown);
}

footer.legal {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: rgba(33, 28, 26, 0.45);
}
/* The footer is deliberately quiet, so the address inherits its grey rather
   than pulling the eye with a link colour. It underlines on hover so it is
   still discoverably clickable. */
footer.legal a { color: inherit; text-decoration: none; }
footer.legal a:hover,
footer.legal a:focus-visible { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ── The Interview ─────────────────────────────────────────────── */
/* Repeated rows: services, questions, hours, ways to reach you. Each row is
   one thing the customer is describing, so the row is the object and the
   fields inside it share its edges. */
.rows { display: grid; gap: 0.7rem; margin-bottom: 1rem; }

.row {
  display: grid;
  gap: 0.6rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: 0 1px 2px rgba(33, 28, 26, 0.05);
}

@media (min-width: 40rem) {
  .row { grid-template-columns: 1fr 1fr; align-items: start; }
  .row > .rowlabel:only-child { grid-column: 1 / -1; }
}

.rowlabel {
  display: block;
  font-size: 0.86rem;
  color: rgba(33, 28, 26, 0.62);
}

.rowlabel input,
.rowlabel textarea,
.rowlabel select {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font: inherit;
  font-size: 1rem;
  color: var(--brown);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
}

.rowlabel textarea { min-height: 4rem; resize: vertical; }

.rowlabel input:focus,
.rowlabel textarea:focus,
.rowlabel select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.addmore {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--brown);
  background: rgba(33, 28, 26, 0.06);
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  cursor: pointer;
  margin-bottom: 1.2rem;
}

.addmore:hover, .addmore:focus-visible { background: var(--peach); }

/* Hours: three ways to answer, because plenty of these businesses do not keep
   fixed hours and should not be made to invent some. */
.optrow { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.1rem; }

.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }

.opt span {
  display: inline-block;
  font-size: 0.92rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.opt input:checked + span { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.opt input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

/* The photo shot list, matching the placeholders already in their draft. */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.shot {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 0.9rem 0.7rem;
  text-align: center;
  background: var(--white);
}

.shot b { display: block; font-size: 0.9rem; }
.shot span { font-size: 0.78rem; color: rgba(33, 28, 26, 0.55); }

.photolist { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.4rem; }

.photolist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
}

/* Consent, and the one warning that is not consent. Both are bordered in the
   accent so they read as something to stop and take in, not fine print. */
.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.consent input { margin-top: 0.25rem; width: 1.1rem; height: 1.1rem; accent-color: #a4522f; }

.warn {
  background: #fff6f2;
  border: 1.5px solid var(--orange);
  border-left-width: 4px;
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.1rem;
  font-size: 0.94rem;
}

.warn b { display: block; margin-bottom: 0.3rem; }

.notice {
  background: var(--white);
  border-left: 3px solid var(--orange);
  padding: 0.6rem 0.9rem;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(33, 28, 26, 0.75);
}

.urlshown {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  overflow-wrap: anywhere;
}

.help.small { font-size: 0.86rem; }
