/* AfterVue — brand styles */
:root {
  --plum-deep: #1B0F2E;
  --plum: #2E1A47;
  --plum-soft: #3A2150;
  --plum-line: #4a2f66;
  --gold: #C9A24B;
  --gold-light: #E8CE9A;
  --blush: #E9B8C0;
  --porcelain: #F8F4EF;
  --ink-soft: #CBBFDA;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { height: 100%; }

body {
  font-family: "Inter", -apple-system, sans-serif;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(122, 61, 140, .30), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(201, 162, 75, .13), transparent 55%),
    linear-gradient(160deg, var(--plum-deep), var(--plum) 55%, #241238);
  color: var(--porcelain);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body[data-mode="embed"] { background: linear-gradient(165deg, var(--plum-deep), var(--plum)); }

.serif { font-family: "Cormorant Garamond", Georgia, serif; }

/* ---------- shell ---------- */
.shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 22px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body[data-mode="kiosk"] .shell { max-width: 760px; padding-top: 38px; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(201, 162, 75, .22);
}
.topbar img.logo { height: 58px; display: block; }
body[data-mode="kiosk"] .topbar img.logo { height: 74px; }
body[data-mode="embed"] .topbar img.logo { height: 46px; }
.topbar .clinic {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.step-dots { display: flex; gap: 8px; justify-content: center; align-items: center; margin: 0 0 24px; }
.step-dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(248, 244, 239, .16);
  transition: all .35s;
}
.step-dots i.on { background: var(--gold); box-shadow: 0 0 10px rgba(201, 162, 75, .7); }
.step-dots i.now { transform: scale(1.45); }
.step-dots .step-label {
  white-space: nowrap;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(203, 191, 218, .7); margin-left: 8px;
}

/* ---------- type ---------- */
h1 {
  text-wrap: balance;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(30px, 6vw, 42px);
  line-height: 1.08;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
h1 em { font-style: italic; color: inherit; }
h1 .accent { color: var(--gold-light); font-style: normal; white-space: nowrap; }
.sub { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin-bottom: 24px; max-width: 52ch; text-wrap: pretty; }
.eyebrow {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

/* ---------- controls ---------- */
.btn {
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 18px 26px;
  border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241238;
  font: 600 16px/1 "Inter", sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, opacity .25s, filter .2s;
  box-shadow: 0 10px 30px rgba(201, 162, 75, .35);
}
.btn:hover { filter: brightness(1.05); box-shadow: 0 14px 38px rgba(201, 162, 75, .45); }
.btn:active { transform: scale(.97); }
.btn[disabled] { opacity: .35; pointer-events: none; box-shadow: none; }
.btn.ghost {
  background: transparent;
  color: var(--porcelain);
  border: 1px solid var(--plum-line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--gold); filter: none; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.btn-row .btn { flex: 1 1 auto; min-width: 150px; width: auto; }
.btn-row .btn { margin-top: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--plum-line);
  background: rgba(255, 255, 255, .04);
  color: var(--porcelain);
  font: 500 14px/1 "Inter", sans-serif;
  cursor: pointer;
  transition: all .18s cubic-bezier(.34,1.56,.64,1);
}
.chip:hover { border-color: rgba(201, 162, 75, .6); }
.chip.on {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #241238;
  font-weight: 600;
  transform: scale(1.04);
}

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field label small { text-transform: none; letter-spacing: 0; color: rgba(203, 191, 218, .55); font-size: 11px; }
.field input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--plum-line);
  background: rgba(255, 255, 255, .05);
  color: var(--porcelain);
  font: 400 16px/1.2 "Inter", sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, .18); }
.field input::placeholder { color: rgba(203, 191, 218, .5); }
.field-row { display: flex; gap: 12px; }
.field-row .field { flex: 1; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  padding: 15px 16px;
  margin: 4px 0 20px;
  font-size: 13px; line-height: 1.5; color: var(--ink-soft);
  cursor: pointer;
}
.consent input { width: 19px; height: 19px; margin-top: 1px; accent-color: var(--gold); flex: none; cursor: pointer; }

/* ---------- selfie ---------- */
.tips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tips span {
  font-size: 12px; color: var(--ink-soft);
  border: 1px solid rgba(74, 47, 102, .8);
  border-radius: 999px; padding: 7px 13px;
  background: rgba(255, 255, 255, .03);
}
.tips span::before { content: "✦ "; color: var(--gold); }

.cam-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #120a20;
  border: 1px solid var(--plum-line);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  transition: border-color .3s, box-shadow .3s;
}
.cam-stage.live { border-color: rgba(201, 162, 75, .55); box-shadow: 0 0 0 1px rgba(201,162,75,.25), var(--shadow); }
.cam-stage video, .cam-stage img.preview {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cam-stage video { transform: scaleX(-1); }
.face-guide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.face-guide::before {
  content: "";
  width: 62%; height: 82%;
  border: 2px dashed rgba(232, 206, 154, .55);
  border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
}
.face-guide.locked::before { border: 3px solid var(--gold); box-shadow: 0 0 30px rgba(201, 162, 75, .75); }
.cam-count {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600; font-size: 110px; color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .6);
  pointer-events: none;
}
.shot-strip { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.shot-strip img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; border: 1px solid var(--plum-line); }
.shot-strip span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }

.angle-toggle {
  display: flex; width: max-content;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--plum-line);
  border-radius: 999px; padding: 4px; gap: 4px;
  margin-bottom: 14px;
}
.angle-toggle button {
  font: 600 13px "Inter", sans-serif;
  border: 0; background: none; color: var(--ink-soft);
  padding: 9px 22px; border-radius: 999px; cursor: pointer;
}
.angle-toggle button.on {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241238;
}

.cam-hint {
  position: absolute; left: 0; right: 0; bottom: 12px;
  text-align: center; font-size: 12.5px; color: rgba(248, 244, 239, .88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
  pointer-events: none;
}
.qc-note {
  border: 1px solid rgba(233, 184, 192, .45);
  background: rgba(233, 184, 192, .1);
  color: var(--blush);
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 13.5px; line-height: 1.5;
  margin-bottom: 16px;
}
.privacy-line { text-align: center; font-size: 11.5px; color: rgba(203, 191, 218, .6); margin-top: 14px; }
.privacy-line b { color: rgba(232, 206, 154, .85); font-weight: 600; }

/* ---------- treatments ---------- */
.treat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
body[data-mode="embed"] .treat-grid { grid-template-columns: 1fr; }
.treat-card {
  text-align: left;
  border: 1px solid var(--plum-line);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--porcelain);
  cursor: pointer;
  transition: all .18s;
  font-family: "Inter", sans-serif;
}
.treat-card:hover { border-color: rgba(201, 162, 75, .55); transform: translateY(-1px); }
.treat-card b { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 5px; }
.treat-card span { font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; display: block; }
.treat-card.suggested { border-color: rgba(201, 162, 75, .6); }
.treat-card.suggested::after {
  content: "Suggested for you";
  display: inline-block;
  margin-top: 9px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.treat-card.on {
  background: linear-gradient(150deg, rgba(232, 206, 154, .2), rgba(201, 162, 75, .12));
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 26px rgba(201, 162, 75, .2);
}

/* ---------- generating ---------- */
.gen-stage { text-align: center; padding: 44px 0 26px; }
.gen-orb {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 30px;
  background: radial-gradient(circle at 32% 30%, var(--gold-light), var(--gold) 55%, #7A3D8C);
  animation: orb 2.4s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(201, 162, 75, .55);
  position: relative;
}
.gen-orb::after {
  content: ""; position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(232, 206, 154, .35);
  animation: ring 2.4s ease-in-out infinite;
}
@keyframes orb { 0%, 100% { transform: scale(1); opacity: .92; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes ring { 0%, 100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.25); opacity: 0; } }
.gen-status { font-size: 15px; color: var(--ink-soft); min-height: 22px; transition: opacity .4s; }
.gen-bar {
  height: 3px; border-radius: 3px; overflow: hidden;
  background: rgba(255, 255, 255, .08);
  margin: 26px auto 14px; max-width: 300px;
  position: relative;
}
.gen-bar::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: sweep 1.6s ease-in-out infinite;
}
@keyframes sweep { from { left: -40%; } to { left: 100%; } }
.gen-eta { font-size: 12px; color: rgba(203, 191, 218, .55); }

/* ---------- before / after slider ---------- */
.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--plum-line);
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  margin-bottom: 14px;
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba .after-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold-light), var(--gold));
  box-shadow: 0 0 14px rgba(201, 162, 75, .8);
  pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #241238; font-weight: 700; font-size: 16px;
  letter-spacing: -1px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .5);
  pointer-events: none;
}
.ba-tag {
  position: absolute; top: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  background: rgba(18, 10, 32, .72);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity .3s;
}
.ba-tag.before { left: 14px; color: var(--porcelain); }
.ba-tag.after { right: 14px; color: var(--gold-light); }
.ba.dragging .ba-tag { opacity: .25; }
.ba-sim {
  position: absolute; right: 12px; bottom: 12px;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(248, 244, 239, .85);
  background: rgba(18, 10, 32, .6);
  backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
  pointer-events: none;
}
.ba-hold-hint { text-align: center; font-size: 12px; color: rgba(203, 191, 218, .75); margin-bottom: 16px; }

/* teaser mini slider (auto-sweeping, non-interactive) */
.ba.mini {
  cursor: default;
  touch-action: auto;
  max-width: 360px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .4);
}
.ba.mini .ba-tag { top: 10px; padding: 4px 10px; font-size: 9.5px; }
.ba.mini .ba-sim { font-size: 8.5px; right: 10px; bottom: 10px; }
.attract .ba.mini { width: min(72vw, 340px); margin-bottom: 30px; }

/* intensity blend control */
.intensity {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid var(--plum-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}
.intensity label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.intensity input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--plum-line), var(--gold));
  outline: none;
}
.intensity input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 3px 10px rgba(0, 0, 0, .45);
  cursor: pointer;
}
.intensity input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
}

.sim-note { font-size: 12px; color: rgba(203, 191, 218, .7); margin-top: 5px; }
.cred-line { text-align: center; font-size: 12px; color: rgba(232, 206, 154, .8); margin-top: 12px; }

.result-title { margin: 0 0 14px; }
.result-title .eyebrow { margin-bottom: 6px; }
.result-title h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 600; text-wrap: balance; line-height: 1.15; }

.pick-note {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  min-height: 18px;
  margin: -8px 0 14px;
}
.pick-note.max { color: var(--gold-light); }

.demo-banner {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(232, 206, 154, .5);
  background: rgba(201, 162, 75, .12);
  color: var(--gold-light);
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 13px; line-height: 1.5;
  margin-bottom: 16px;
}
.demo-banner img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(232, 206, 154, .6); flex: none; }

.disclaimer {
  font-size: 11.5px; line-height: 1.55;
  color: rgba(203, 191, 218, .68);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(74, 47, 102, .6);
}

/* ---------- kiosk attract ---------- */
.attract {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 40px 26px;
}
.attract img.mark { width: 96px; margin-bottom: 34px; filter: drop-shadow(0 0 30px rgba(201, 162, 75, .5)); animation: orb 3.2s ease-in-out infinite; }
.attract h1 { font-size: clamp(40px, 7vw, 68px); margin-bottom: 16px; }
.attract .sub { font-size: 18px; max-width: 30ch; margin: 0 auto 40px; }
.attract .pulse {
  font-size: 13px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

/* ---------- pin overlay ---------- */
.pin-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(18, 10, 32, .94);
  display: flex; align-items: center; justify-content: center;
}
.pin-box {
  background: var(--plum);
  border: 1px solid var(--plum-line);
  border-radius: var(--radius);
  padding: 28px;
  width: min(92vw, 380px);
  text-align: center;
}
.pin-box h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; margin-bottom: 16px; }
.pin-box input {
  width: 100%; text-align: center; letter-spacing: .5em;
  font-size: 22px; padding: 13px;
  border-radius: 12px; border: 1px solid var(--plum-line);
  background: rgba(255, 255, 255, .06); color: var(--porcelain); outline: none;
  margin-bottom: 14px;
}

.footnote { text-align: center; font-size: 11px; color: rgba(203, 191, 218, .5); margin-top: 22px; }
.footnote a { color: inherit; }

.fade-in { animation: fadeIn .5s cubic-bezier(.22,.9,.36,1) both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 420px) {
  .treat-grid { grid-template-columns: 1fr; }
  .shell { padding: 18px 16px 30px; }
  .field-row { flex-direction: column; gap: 0; }
  .topbar img.logo { height: 48px; }
  .topbar .clinic { font-size: 10px; letter-spacing: .12em; }
  .btn { padding: 16px 20px; font-size: 15px; }
}

/* ---------- desktop: use the width ---------- */
@media (min-width: 900px) {
  body:not([data-mode="embed"]) .shell { max-width: 1100px; padding: 32px 48px 56px; }
  body:not([data-mode="embed"]) .step-dots { justify-content: flex-start; margin-bottom: 30px; }
  body:not([data-mode="embed"]) .screen {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 56px;
    align-items: start;
  }
  body:not([data-mode="embed"]) .s-result { grid-template-columns: 6fr 5fr; }
  body:not([data-mode="embed"]) .s-treatment { display: block; }
  body:not([data-mode="embed"]) .s-treatment .treat-grid { grid-template-columns: repeat(3, 1fr); }
  body:not([data-mode="embed"]) .s-treatment .btn { max-width: 420px; display: flex; margin: 0 auto; }
  body:not([data-mode="embed"]) .s-intake .ba.mini { margin-left: 0; max-width: 400px; }
  body:not([data-mode="embed"]) h1 { font-size: clamp(38px, 4vw, 52px); }
  body:not([data-mode="embed"]) .col-copy { position: sticky; top: 32px; }
  body:not([data-mode="embed"]) .gen-stage { padding-top: 90px; }
  body[data-mode="kiosk"] .screen { gap: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- trial bar ---------- */
.trial-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 10px 18px;
  background: linear-gradient(90deg, rgba(201, 162, 75, .18), rgba(122, 61, 140, .18));
  border-bottom: 1px solid rgba(201, 162, 75, .35);
  font-size: 13px; color: var(--porcelain);
}
.trial-bar a { color: var(--gold-light); font-weight: 600; text-decoration: none; white-space: nowrap; }
.trial-bar a:hover { text-decoration: underline; }


/* ---- Sept 2026: mini sample gets the same gold handle as the result slider ---- */
.ba.mini .ba-knob { width: 40px; height: 40px; font-size: 14px; left: 50%; }
.ba.mini .ba-divider { left: 50%; }

/* ---- Sept 2026: centered layout on every screen ---- */
.shell, .screen, .attract, .trial-lock { text-align: center; }
.topbar { justify-content: center; }
.topbar .clinic { text-align: center; }
.step-dots { justify-content: center; }
h1, .sub, .eyebrow, .footnote, .field label, .ba-hold-hint, .privacy-line, .credline { text-align: center; }
.chips, .btn-row, #angleT, .angle-toggle, .demo-banner, .selfie-btns, #selfieBtns, .cam-hint { justify-content: center; }
.field input { text-align: left; }
.consent { justify-content: center; text-align: left; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn { margin-left: auto; margin-right: auto; }
.ba.mini, .s-intake .ba.mini, body:not([data-mode="embed"]) .s-intake .ba.mini { margin-left: auto; margin-right: auto; }
.col-copy, .col-act { margin-left: auto; margin-right: auto; }
.treat-card { text-align: left; }

.hint { display: none; font-size: 13px; color: var(--ink-soft); margin: 10px auto 0; max-width: 34ch; }
.btn:disabled + .hint { display: block; }

.hero-frame .topbar { padding-top: 44px; }
