/* NeedNote AI — minimal, soft surfaces, neutral gradient */

:root {
  --bg0: #e8ecf4;
  --bg1: #f4f2f8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --text: #1a1d26;
  --muted: #5c6478;
  --accent: #3d6ee8;
  --accent-soft: rgba(61, 110, 232, 0.12);
  --shadow: 0 8px 32px rgba(26, 29, 38, 0.08);
  --radius: 16px;
  --radius-pill: 999px;
  --font: "DM Sans", system-ui, sans-serif;
  --dock-h: 64px;
  /* Space reserved above bottom so overlays (calculator) sit above the floating dock */
  --dock-float-clearance: calc(48px + 1.85rem + 2 * env(safe-area-inset-bottom, 0px));
  --top-h: 52px;
  --z-bubble: 30;
  /* Dock & toolbars sit above calculator backdrop so bottom buttons stay clickable */
  --z-calc: 110;
  --z-dock: 125;
  --z-pwa: 126;
  --z-voice: 127;
  --z-header-drawer-backdrop: 128;
  --z-header-drawer: 129;
  /* Open calculator must sit above the dock (125) or taps hit the dock instead of keys */
  --z-calc-open: 135;
  --z-modal: 140;
  --z-onboarding: 200;
}

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap");

html.header-drawer-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

.app-body {
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(165deg, var(--bg0) 0%, var(--bg1) 55%, #eef0f7 100%);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

.app-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
}

.top-bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--top-h);
  padding: 0.5rem 1rem;
  padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  position: sticky;
  top: 0;
  z-index: 40;
}

.top-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), #7c5cff);
  box-shadow: 0 2px 8px rgba(61, 110, 232, 0.35);
}

.top-bar__title {
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  min-width: 0;
  min-height: 44px;
  touch-action: manipulation;
}

.top-bar__title:focus {
  outline: 2px solid var(--accent-soft);
  background: rgba(255, 255, 255, 0.5);
}

.save-status {
  font-size: 0.75rem;
  color: var(--muted);
}

.top-bar__actions {
  position: relative;
  z-index: 1;
}

.icon-btn {
  border: none;
  background: rgba(255, 255, 255, 0.6);
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  touch-action: manipulation;
}

.icon-btn:hover {
  background: #fff;
}

/* Header slide-out drawer (export) */
.header-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-header-drawer-backdrop);
  background: rgba(20, 24, 32, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.header-drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header-drawer-backdrop[hidden] {
  display: none !important;
}

.header-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 92vw);
  max-width: 100%;
  z-index: var(--z-header-drawer);
  background: var(--surface-solid);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top, 0px);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.header-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.header-drawer[hidden] {
  display: none !important;
}

.header-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-drawer__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.header-drawer__close {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  touch-action: manipulation;
}

.header-drawer__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.header-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem 1.25rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

.header-drawer__section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.header-drawer__section .menu-item {
  width: 100%;
}

.menu-item {
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.65rem 0.75rem;
  min-height: 44px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  touch-action: manipulation;
}

.menu-item:hover:not(:disabled):not(.menu-item--disabled) {
  background: var(--accent-soft);
}

.menu-item--disabled,
.menu-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.menu-badge {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.layout {
  flex: 1;
  display: flex;
  min-height: 0;
  position: relative;
}

.main {
  flex: 1;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.editor {
  flex: 1;
  width: 100%;
  border: none;
  resize: none;
  padding: 1.25rem 1.25rem 2rem;
  font: 400 max(1rem, 16px) / 1.65 var(--font);
  color: var(--text);
  background: transparent;
  min-height: 50vh;
  touch-action: manipulation;
}

.editor:focus {
  outline: none;
}

.editor::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.bubble-anchor {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.context-bubble {
  position: absolute;
  z-index: var(--z-bubble);
  min-width: 200px;
  max-width: min(92vw, 320px);
  padding: 0.65rem 0.85rem;
  background: var(--surface-solid);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.context-bubble__inner {
  font-size: 0.88rem;
  line-height: 1.45;
}

.context-bubble__actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
  justify-content: flex-end;
}

.pill-btn {
  border: none;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  touch-action: manipulation;
}

.pill-btn--block {
  width: 100%;
  justify-content: center;
}

.pill-btn--primary {
  background: var(--accent);
  color: #fff;
}

.bottom-dock {
  position: fixed;
  left: 50%;
  bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  padding-bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  z-index: var(--z-dock);
  transition: opacity 0.28s ease, transform 0.32s ease, visibility 0.32s;
  will-change: transform, opacity;
}

.dock-btn {
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s;
}

.dock-btn:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-1px);
}

.dock-btn.is-disabled,
.dock-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.dock-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text);
}

.dock-btn--mic.is-listening .dock-icon-svg {
  color: var(--accent);
}

.dock-btn--mic.is-listening {
  background: var(--accent-soft);
  box-shadow: 0 0 0 2px var(--accent);
}

/* Calculator opens above the dock; dock stays visible and tappable */
.calc-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--dock-float-clearance);
  z-index: var(--z-calc);
  background: rgba(26, 29, 38, 0.25);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.calc-panel[hidden] {
  display: none !important;
  pointer-events: none;
}

html.calc-active .calc-panel {
  z-index: var(--z-calc-open);
}

.calc-panel__sheet {
  width: 100%;
  max-width: 440px;
  max-height: min(85vh, 680px);
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  border-radius: var(--radius);
  margin-bottom: 0.45rem;
  padding: 0.35rem 1rem 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 1;
}

.calc-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0 0.35rem;
}

.calc-panel__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.calc-panel__close {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  touch-action: manipulation;
}

.calc-panel__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.calc-panel__grab {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.12);
  margin: 0.15rem auto 0.5rem;
}

.calc-panel__screen {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.calc-panel__history-wrap {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 0 1 auto;
  max-height: 42%;
}

.calc-panel__history-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.calc-panel__history {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 72px;
  max-height: 160px;
}

.calc-history__empty {
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.calc-history__item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
}

.calc-history__item:last-child {
  border-bottom: none;
}

.calc-history__item:hover {
  background: rgba(61, 110, 232, 0.06);
}

.calc-history__item--flash {
  background: rgba(61, 110, 232, 0.12) !important;
}

.calc-panel__expr {
  text-align: right;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  min-height: 1.35rem;
  padding: 0.15rem 0.25rem 0;
  word-break: break-all;
}

.calc-panel__total-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0.15rem 0.25rem 0.5rem;
}

.calc-panel__total-row:has(.calc-panel__total--placeholder) .calc-panel__equals {
  opacity: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.calc-panel__equals {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.calc-panel__total {
  flex: 1;
  text-align: right;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-height: 2.25rem;
  line-height: 1.2;
  word-break: break-all;
}

.calc-panel__total--placeholder {
  color: var(--muted);
  font-weight: 500;
  font-size: 1.5rem;
}

.calc-panel__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.35rem 0 0.65rem;
}

.calc-toolbar-btn {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  touch-action: manipulation;
}

.calc-toolbar-btn:hover {
  background: var(--accent-soft);
  border-color: transparent;
}

.calc-toolbar-btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.calc-toolbar-btn--primary:hover {
  filter: brightness(1.05);
}

.calc-toolbar-btn--flash {
  animation: calc-flash 0.35s ease;
}

@keyframes calc-flash {
  from {
    box-shadow: 0 0 0 2px var(--accent);
  }
  to {
    box-shadow: none;
  }
}

.calc-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  flex-shrink: 0;
}

.calc-keys button {
  border: none;
  padding: 0.85rem 0.5rem;
  min-height: 48px;
  border-radius: 14px;
  font: inherit;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
  touch-action: manipulation;
}

.calc-keys button:active {
  transform: scale(0.97);
}

.calc-keys .calc-key--wide {
  grid-column: span 2;
}

.calc-keys .op {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.calc-keys .eq {
  background: var(--accent);
  color: #fff;
}

.voice-hud {
  position: fixed;
  bottom: calc(var(--dock-h) + 2.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.9rem;
  background: var(--surface-solid);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--muted);
  box-shadow: var(--shadow);
  z-index: var(--z-voice);
}

html.calc-active .voice-hud {
  bottom: calc(var(--dock-float-clearance) + 0.5rem);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 32, 0.35);
}

.modal__card {
  position: relative;
  max-width: 400px;
  width: 100%;
  background: var(--surface-solid);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.modal__card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.settings-plan-lead {
  margin: 0 0 0.25rem;
  line-height: 1.45;
}

.settings-flags {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.settings-flag {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(26, 29, 38, 0.08);
}

.settings-flag:last-child {
  border-bottom: none;
}

.settings-flag__name {
  font-weight: 600;
}

.settings-flag__status {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.settings-flag--on .settings-flag__status {
  color: #1f6b3a;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .editor {
    padding: 1.5rem 2rem 2.5rem;
    font-size: max(1.08rem, 16px);
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
  }
}

/* PWA + mobile shell */
html.nn-mobile {
  -webkit-tap-highlight-color: transparent;
  --dock-float-clearance: calc(52px + 1.85rem + 2 * env(safe-area-inset-bottom, 0px));
}

/* Reduce iOS input zoom (16px+): keep editor comfortable */
html.nn-mobile .editor {
  font-size: max(1.05rem, 16px);
}

html.nn-mobile .pill-btn,
html.nn-mobile .icon-btn,
html.nn-mobile .dock-btn {
  touch-action: manipulation;
}

html.nn-mobile .dock-btn {
  min-width: 52px;
  min-height: 52px;
}

html.nn-mobile .icon-btn {
  min-width: 44px;
  min-height: 44px;
}

html.nn-pwa .app-body,
html.nn-standalone .app-body {
  /* Extra space when not in browser chrome */
  min-height: 100dvh;
}

.pwa-install {
  position: fixed;
  left: 50%;
  bottom: calc(var(--dock-h) + 0.85rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: var(--z-pwa);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  max-width: min(92vw, 400px);
  padding: 0.85rem 1rem;
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--surface-solid);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.pwa-install[hidden] {
  display: none !important;
}

.pwa-install__text {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
}

.pwa-install__actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.dock-btn.is-hidden {
  display: none !important;
}

.pwa-ios-hint {
  margin-top: 0.5rem;
}

html.nn-standalone #pwa-install {
  display: none !important;
}

/* Onboarding — above calculator & dock */
.onboarding {
  position: fixed;
  inset: 0;
  z-index: var(--z-onboarding);
  display: grid;
  place-items: center;
  padding: env(safe-area-inset-top, 0px) 1rem env(safe-area-inset-bottom, 0px);
}

.onboarding[hidden] {
  display: none !important;
}

.onboarding__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 22, 0.55);
  backdrop-filter: blur(4px);
}

.onboarding__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: min(90dvh, 640px);
  background: var(--surface-solid);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  animation: onboarding-in 0.35s ease;
}

@keyframes onboarding-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.onboarding__skip {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 44px;
  padding: 0 0.5rem;
  touch-action: manipulation;
  z-index: 2;
}

.onboarding__slides {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}

.onboarding__step {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  animation: step-in 0.3s ease;
}

.onboarding__step.is-active {
  display: flex;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.onboarding__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.onboarding__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.onboarding__demo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 0.95rem;
}

.onboarding__demo-expr {
  font-weight: 600;
}

.onboarding__demo-eq {
  color: var(--muted);
}

.onboarding__demo-insert {
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
}

.onboarding__hint {
  margin: 0;
  font-size: 0.88rem;
}

.onboarding__cta {
  margin-top: 0.5rem;
}

.onboarding__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.onboarding__dots {
  display: flex;
  gap: 6px;
}

.onboarding__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
}

.onboarding__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

#onboarding-next {
  min-width: 120px;
}

