/* Kontrol onboarding — client-facing design system. Vanilla CSS, no framework, no CDN.
   Warm off-white paper + ink charcoal + one confident green accent. Craft, not chrome.
   Deliberately NOT a purple-gradient AI look. */

:root {
  /* ---- neutrals (warm ramp) ---- */
  --ink:        #10161c;   /* headings / brand */
  --ink-2:      #3a444d;   /* body */
  --muted:      #565c66;   /* hints / secondary — WCAG AA 4.5:1 on paper */
  --faint:      #9aa4ac;   /* placeholder / disabled */
  --line:       #e6e9ec;
  --line-2:     #d5dade;
  --paper:      #f6f8f7;   /* warm off-white app bg */
  --card:       #ffffff;

  /* ---- green ramp ---- */
  --accent-50:  #e9f7f0;
  --accent-wash:#e8f6ef;
  --accent-100: #cdeede;
  --accent-500: #12a06b;
  --accent:     #0e8f5e;   /* Kontrol green (600) */
  --accent-ink: #0a6f49;
  --accent-800: #095f42;

  /* ---- brand / utility ---- */
  --wa:         #25d366;   /* WhatsApp — reserved for the Open-WhatsApp CTA only */
  --wa-ink:     #05330f;
  --danger:     #c0392b;
  --danger-wash:#fdecea;
  --ring-focus: 0 0 0 4px rgba(14,143,94,.16);

  /* ---- type ---- */
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
  --fs-overline: 12px; --fs-caption: 13px; --fs-label: 14px; --fs-sub: 15px;
  --fs-body: 16px; --fs-h2: 18px; --fs-h1: 24px; --fs-display: 30px;
  --lh-tight: 1.15; --lh-snug: 1.3; --lh-body: 1.55;
  --track-display: -.02em; --track-overline: .08em;

  /* ---- spacing (8px grid) ---- */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px; --space-12: 48px;

  /* ---- radii ---- */
  --radius-xs: 8px; --radius-sm: 12px; --radius-md: 14px; --radius-lg: 18px; --radius-pill: 999px;

  /* ---- shadows ---- */
  --shadow-xs: 0 1px 2px rgba(16,24,40,.05);
  --shadow-sm: 0 1px 3px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
  --shadow-md: 0 2px 4px -1px rgba(16,24,40,.05), 0 8px 24px -6px rgba(16,24,40,.10);
  --shadow-lg: 0 4px 8px -2px rgba(16,24,40,.06), 0 16px 40px -8px rgba(16,24,40,.14);
  --shadow-cta: 0 1px 2px rgba(9,95,66,.35), 0 6px 16px -4px rgba(14,143,94,.32);
  --shadow-inset: inset 0 1px 2px rgba(16,24,40,.03);

  /* ---- motion ---- */
  --dur-instant: 100ms; --dur-fast: 160ms; --dur-base: 240ms; --dur-slow: 400ms; --dur-celebrate: 520ms;
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-standard: cubic-bezier(.2,0,0,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --maxw: 560px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  min-height: 100dvh;
  padding-bottom: 112px; /* clears sticky footer + notch */
}
body.no-nav { padding-bottom: 24px; }

/* ---------- Top bar + progress ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246,248,247,.86);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1.5px solid var(--line);
  padding: env(safe-area-inset-top) 0 0;
}
.topbar__row {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 10px;
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand__mark { display: inline-flex; filter: drop-shadow(0 1px 2px rgba(16,24,40,.12)); }
.brand__name { font-weight: 700; letter-spacing: -.01em; font-size: var(--fs-h2); }
.topbar__cue {
  font-size: var(--fs-overline); font-weight: 700; color: var(--accent-ink);
  background: var(--accent-wash); border: 1px solid var(--accent-100);
  border-radius: var(--radius-pill); padding: 5px 11px; white-space: nowrap;
}
.progress {
  height: 5px; background: var(--line); overflow: hidden;
  border-radius: 0;
}
.progress__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-500, #12a06b));
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  transition: width var(--dur-slow) var(--ease-standard);
}
.stepmeta {
  max-width: var(--maxw); margin: 0 auto;
  padding: 8px 18px; font-size: var(--fs-caption); color: var(--muted);
  display: flex; justify-content: space-between;
}
.topbar.is-hidden-meta .stepmeta,
.topbar.is-hidden-meta .progress { opacity: .0; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 20px 18px 0; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: var(--space-6) var(--space-5) var(--space-6);
}
.card.is-entering { animation: cardIn var(--dur-base) var(--ease-out); }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.resumenote {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  text-align: center; font-size: var(--fs-label); font-weight: 600; color: var(--accent-ink);
  background: var(--accent-wash); border: 1px solid var(--accent-100);
  border-radius: var(--radius-pill); padding: 10px 16px; margin: 14px auto 0; max-width: max-content;
}

/* ---------- Step content ---------- */
.step__eyebrow {
  font-size: var(--fs-overline); font-weight: 700; letter-spacing: var(--track-overline);
  text-transform: uppercase; color: var(--accent-ink); margin: 0 0 8px;
}
.step__title {
  font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: var(--track-display);
  font-weight: 700; margin: 0 0 8px;
}
.step__title--display { font-size: var(--fs-display); }
.step__sub { color: var(--ink-2); margin: 0 0 22px; font-size: var(--fs-sub); line-height: var(--lh-body); }
.step__sub:last-child { margin-bottom: 0; }

/* ---------- Fields ---------- */
.field { margin: 0 0 20px; }
.field:last-child { margin-bottom: 0; }
.label { display: block; font-size: var(--fs-label); font-weight: 600; margin: 0 0 7px; }
.label .opt { font-weight: 500; color: var(--muted); }
.hint { font-size: var(--fs-caption); color: var(--muted); margin: 7px 0 0; line-height: 1.45; }
.hint--reassure { display: flex; gap: 6px; align-items: flex-start; }
.hint--reassure svg { flex: none; margin-top: 1px; color: var(--accent); }
.input, .select, textarea.input {
  width: 100%; font: inherit; font-size: var(--fs-body); color: var(--ink);
  background: #fafbfc; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 14px; min-height: 52px; outline: none;
  box-shadow: var(--shadow-inset);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  -webkit-appearance: none; appearance: none;
}
.input::placeholder { color: var(--faint); }
.input:focus, .select:focus, textarea.input:focus {
  border-color: var(--accent); background: #fff; box-shadow: var(--ring-focus);
}
.input--error { border-color: var(--danger); }
.input--error:focus { box-shadow: 0 0 0 4px var(--danger-wash); }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23565c66' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
}
textarea.input { min-height: 80px; resize: vertical; }
.err {
  display: none; color: var(--danger); font-size: var(--fs-caption); margin: 7px 0 0; font-weight: 600;
}
.err.show { display: block; }

/* ---------- Choice cards (radio / multi) ---------- */
.choices { display: grid; gap: 10px; }
.choice {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: var(--space-4); min-height: 48px; cursor: pointer; background: #fff;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-instant);
}
.choice:hover { border-color: var(--line-2); background: #fcfdfc; }
.choice:active { transform: scale(.99); }
.choice:focus-within { outline: none; box-shadow: var(--ring-focus); border-color: var(--accent); }
.choice--on {
  border-color: var(--accent); background: var(--accent-wash);
  box-shadow: 0 0 0 1px var(--accent) inset, var(--shadow-md);
}
.choice input { margin: 2px 0 0; accent-color: var(--accent); width: 20px; height: 20px; flex: none; }
.choice__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.choice__title { display: block; font-weight: 600; font-size: var(--fs-sub); line-height: var(--lh-snug); }
.choice__desc  { display: block; font-size: var(--fs-caption); color: var(--muted); line-height: 1.4; }
.choice__logo { flex: none; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; }
.choice__logo svg { width: 30px; height: 30px; }
.choice__pill {
  font-size: 11px; font-weight: 700; letter-spacing: .03em;
  color: var(--accent-ink); background: var(--accent-wash); border: 1px solid var(--accent-100);
  border-radius: var(--radius-pill); padding: 3px 9px; align-self: center; white-space: nowrap;
}

/* segmented control */
.seg { display: flex; gap: 8px; }
.seg__btn {
  flex: 1; text-align: center; font: inherit; font-size: var(--fs-label); font-weight: 600;
  padding: 14px 8px; min-height: 48px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink-2); cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast), transform var(--dur-instant);
}
.seg__btn:active { transform: scale(.98); }
.seg__btn--on { border-color: var(--accent); background: var(--accent-wash); color: var(--accent-ink); box-shadow: 0 0 0 1px var(--accent) inset; }

/* chips (group labels) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; }
.chip {
  display: inline-flex; align-items: center; gap: 4px; font-size: var(--fs-caption); font-weight: 600;
  background: var(--accent-wash); color: var(--accent-ink);
  border: 1px solid var(--accent-100); border-radius: var(--radius-pill); padding: 6px 6px 6px 14px;
}
.chip button {
  border: none; background: transparent; color: var(--accent-ink); cursor: pointer;
  font-size: 18px; line-height: 1; width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.chip button:hover { background: var(--accent-100); }
.inline-add { display: flex; gap: 8px; }
.inline-add .btn { flex: none; }

/* team member rows (name + mobile + access profile) */
.member {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: #fff; padding: 10px 12px; margin: 0 0 8px;
}
.member--you { background: var(--accent-wash); border-color: var(--accent-100); }
.member__who { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.member__who strong { font-size: var(--fs-label); font-weight: 600; line-height: var(--lh-snug); }
.member__phone { font-size: var(--fs-caption); color: var(--muted); }
.member__level {
  flex: none; font-size: 11px; font-weight: 700; letter-spacing: .03em; white-space: nowrap;
  color: var(--ink-2); background: #f2f4f6; border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); padding: 4px 10px;
}
.member__level--top {
  color: var(--accent-ink); background: var(--accent-wash); border-color: var(--accent-100);
}
.member > button {
  flex: none; border: none; background: transparent; color: var(--muted); cursor: pointer;
  font-size: 18px; line-height: 1; width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.member > button:hover { background: var(--accent-100); color: var(--accent-ink); }
.member-add { margin-top: 4px; }

/* reassurance banner */
.banner {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: var(--fs-caption); color: var(--ink-2); line-height: 1.45;
  background: var(--accent-50); border: 1px solid var(--accent-100);
  border-radius: var(--radius-sm); padding: 12px 14px; margin: 0 0 16px;
}
.banner svg { flex: none; margin-top: 1px; color: var(--accent); }
.banner strong { color: var(--accent-ink); }

/* ---------- OTP boxes ---------- */
.otp { display: flex; gap: 8px; justify-content: space-between; max-width: 320px; }
.otp input {
  width: 46px; height: 56px; text-align: center; font-size: 24px; font-weight: 700;
  color: var(--ink); background: #fafbfc;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); box-shadow: var(--shadow-inset);
}
.otp input:focus { border-color: var(--accent); background: #fff; box-shadow: var(--ring-focus); outline: none; }
.otp.shake { animation: shake var(--dur-slow) var(--ease-standard); }
@keyframes shake {
  10%,90% { transform: translateX(-1px); } 20%,80% { transform: translateX(2px); }
  30%,50%,70% { transform: translateX(-4px); } 40%,60% { transform: translateX(4px); }
}
.otp-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; gap: 12px; }
.linkbtn {
  font: inherit; font-size: var(--fs-caption); font-weight: 600; color: var(--accent-ink);
  background: none; border: none; padding: 6px 4px; cursor: pointer; text-decoration: underline;
}
.linkbtn:disabled { color: var(--muted); cursor: default; text-decoration: none; }
.stubnote {
  font-size: var(--fs-caption); color: var(--muted); background: var(--paper);
  border: 1px dashed var(--line-2); border-radius: var(--radius-sm);
  padding: 10px 12px; margin-top: 14px;
}

/* ---------- Landing (S0) ---------- */
.hero { text-align: left; }
.hero__mark { margin: 0 0 18px; }
.hero__bullets { list-style: none; padding: 0; margin: 20px 0 22px; display: grid; gap: 12px; }
.hero__bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--fs-sub); color: var(--ink-2); }
.hero__bullets .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-wash); color: var(--accent); display: inline-flex; align-items: center; justify-content: center;
}
.quote {
  border-left: 3px solid var(--accent); background: var(--paper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 16px; margin: 6px 0 20px;
}
.quote p { margin: 0 0 6px; font-size: var(--fs-sub); font-style: italic; color: var(--ink-2); line-height: 1.5; }
.quote cite { font-size: var(--fs-caption); color: var(--muted); font-style: normal; font-weight: 600; }
.trust-strip {
  font-size: var(--fs-caption); color: var(--muted); text-align: center;
  margin: 18px 0 14px; line-height: 1.5;
}
.logos {
  display: flex; flex-wrap: wrap; gap: 16px 20px; align-items: center; justify-content: center;
  margin: 4px 0 6px; opacity: .62; filter: grayscale(1);
}
.logos svg { height: 22px; width: auto; }

/* ---------- Review summary ---------- */
.summary {
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-xs); background: #fff;
}
.summary__row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 15px; border-bottom: 1px solid var(--line); font-size: var(--fs-label);
}
.summary__row:last-child { border-bottom: none; }
.summary__k { color: var(--muted); flex: none; }
.summary__v { text-align: right; font-weight: 600; color: var(--ink); word-break: break-word; }

/* safeguard panels */
.panel {
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  padding: 14px 15px; margin: 0 0 12px; box-shadow: var(--shadow-xs);
}
.panel__head { display: flex; gap: 10px; align-items: center; font-weight: 700; font-size: var(--fs-sub); margin: 0 0 6px; }
.panel__head svg { flex: none; color: var(--accent); }
.panel p { margin: 0; font-size: var(--fs-caption); color: var(--ink-2); line-height: 1.5; }
.panel a { color: var(--accent-ink); font-weight: 600; }
.scopes { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; margin: 10px 0 0; }
.scope { border: 1px solid var(--line); border-radius: var(--radius-xs); padding: 10px 12px; background: var(--paper); }
.scope h4 { margin: 0 0 6px; font-size: var(--fs-caption); font-weight: 700; display: flex; gap: 6px; align-items: center; }
.scope--can h4 { color: var(--accent-ink); }
.scope--cant h4 { color: var(--muted); }
.scope ul { margin: 0; padding: 0; list-style: none; }
.scope li { font-size: 12.5px; color: var(--ink-2); padding: 2px 0; line-height: 1.35; }
.consent { margin-top: 18px; }
.consent .choice { align-items: flex-start; }
.lockline {
  display: flex; gap: 7px; align-items: center; justify-content: center;
  font-size: var(--fs-caption); color: var(--muted); margin: 14px 0 0; text-align: center;
}
.lockline svg { flex: none; color: var(--accent); }

/* ---------- Provision animation ---------- */
.provision { text-align: center; padding: 12px 0 8px; }
.spinner {
  width: 56px; height: 56px; margin: 8px auto 22px; border-radius: 50%;
  border: 4px solid var(--accent-wash); border-top-color: var(--accent);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.provlog { list-style: none; padding: 0; margin: 22px auto 0; max-width: 340px; text-align: left; }
.provlog li {
  display: flex; gap: 12px; align-items: center; font-size: var(--fs-label); color: var(--muted);
  padding: 8px 0; opacity: .4; transition: opacity var(--dur-base), color var(--dur-base);
}
.provlog li.done { opacity: 1; color: var(--ink); }
.provlog li .tick {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  border: 2px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center;
  color: transparent; transition: background var(--dur-base), border-color var(--dur-base);
}
.provlog li.done .tick { background: var(--accent); border-color: var(--accent); color: #fff; }
.provlog li.done .tick svg { animation: draw var(--dur-base) var(--ease-out) forwards; }
.provlog li .tick svg { width: 12px; height: 12px; stroke-dasharray: 20; stroke-dashoffset: 20; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Handoff / success ---------- */
.success { text-align: center; }
.success__badge {
  width: 76px; height: 76px; margin: 4px auto 18px; border-radius: 50%;
  background: var(--accent-wash); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  animation: badgePop var(--dur-celebrate) var(--ease-spring);
}
@keyframes badgePop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success__badge svg { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw var(--dur-slow) var(--ease-out) .2s forwards; }
.ticket {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 4px 0; margin: 18px 0; text-align: left; background: #fff; box-shadow: var(--shadow-md);
  overflow: hidden;
}
.ticket__row { padding: 15px 18px; border-bottom: 1px dashed var(--line-2); }
.ticket__row:last-child { border-bottom: none; }
.ticket .k { font-size: var(--fs-overline); color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.ticket .v {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: .06em;
  font-size: 20px; font-weight: 700; color: var(--ink); margin: 4px 0 0;
  display: flex; align-items: center; gap: 10px;
}
.ticket .copybtn {
  margin-left: auto; font: inherit; font-size: var(--fs-caption); font-weight: 600;
  font-family: var(--font-sans); letter-spacing: 0;
  color: var(--accent-ink); background: var(--accent-wash); border: 1px solid var(--accent-100);
  border-radius: var(--radius-pill); padding: 5px 12px; cursor: pointer; min-height: 34px;
}
.ticket .copybtn:active { transform: scale(.96); }
.ticket .helper { font-size: var(--fs-caption); color: var(--muted); margin: 6px 0 0; line-height: 1.4; }
.placeholder-note { font-size: var(--fs-caption); color: var(--muted); margin-top: 6px; }
.closing-trust {
  display: flex; gap: 8px; align-items: flex-start; text-align: left;
  font-size: var(--fs-caption); color: var(--muted); line-height: 1.5;
  background: var(--paper); border-radius: var(--radius-sm); padding: 12px 14px; margin: 18px 0 0;
}
.closing-trust svg { flex: none; margin-top: 1px; color: var(--accent); }
.btn--wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa); color: var(--wa-ink); border-color: var(--wa); box-shadow: var(--shadow-cta);
}
.btn--wa:hover:not(:disabled) { filter: brightness(.97); }

/* ---------- Buttons / footer ---------- */
.navbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  background: rgba(246,248,247,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1.5px solid var(--line);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  display: flex; gap: 12px; align-items: center;
}
.navbar > .navbar__spacer { flex: 1; }
.navbar .btn { max-width: 260px; }
.btn {
  font: inherit; font-size: var(--fs-sub); font-weight: 700; cursor: pointer;
  border-radius: var(--radius-sm); padding: 14px 22px; min-height: 52px; border: 1.5px solid transparent;
  transition: transform var(--dur-instant), background var(--dur-fast), box-shadow var(--dur-fast), opacity var(--dur-fast);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--shadow-cta); }
.btn--primary:hover:not(:disabled) { background: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink-2); border-color: var(--line-2); box-shadow: none; }
.btn--ghost:hover:not(:disabled) { background: var(--paper); }
.btn--block { width: 100%; max-width: none; }
.btn--sm { padding: 11px 16px; min-height: 44px; font-size: var(--fs-label); }

.adminlink {
  display: block; text-align: center; font-size: var(--fs-overline); color: var(--faint);
  text-decoration: none; padding: 20px 0 8px;
}
.adminlink:hover { color: var(--accent-ink); }
.adminlink.is-hidden { display: none; }

/* narrow phones */
@media (max-width: 380px) {
  .step__title { font-size: 22px; }
  .step__title--display { font-size: 26px; }
  .otp input { width: 42px; height: 52px; font-size: 21px; }
  .scopes { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .spinner { animation: spin .9s linear infinite; } /* keep the only essential loader */
}

/* ---- beta-intake additions (WhatsApp verify) ---- */
.pollDot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); margin-right: 2px; flex: none;
  animation: pollpulse 1.6s ease-in-out infinite;
}
@keyframes pollpulse {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
textarea.input { font: inherit; padding-top: 12px; }
